cancel
Showing results for 
Search instead for 
Did you mean: 

No of parallelism if we set to 2 what happens

Former Member
0 Kudos

what is teh advantage of no of paralellism and if we set it to 2 what happens.

thank you very muchf or the helpful info.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi cplusplus1 ,

the parallelism is a performance activity , the advantage of paralellism is it improve performace like instead of scheduling the data in a single sequence it will split the process into 2 or more depending upon the settings which you have given.it will process parallelly and it will reduce the total time of job execution

Thanks

Fasi

Former Member
0 Kudos

Hi ,

The basic point is that when the no of process increases , jobs will run more efficiently becoz the processes to support these jobs have been increased now.

Complete mechanism is available here ::

http://wiki.sdn.sap.com/wiki/display/BOBJ/DegreeofParallelism

Regards,

Arpit

Former Member
0 Kudos

Each Data Flow will initiate threads depending on the number of objects used inside. DOP helps each thread to process on a different CPU in the computer. If you set DOP = 2, a query transform used inside the Data Flow will be split into two logically while running and will be processed parallely. This makes the transformation / data flow faster. You have to take care of other parameters like source/target table partitioning and parallelism of functions to make use of this feature effectively.