Parallel OR Sequential in Control Flow

  • Hi

    I have 10 SSIS packages pulling data from 10 tables of remote database server and loading the data in 10 tables with one to one mapping.

    I am going to call all 10 packages from single package (by creating Master package).

    Which is best way to arrange them in Master package from Perfromance point of view.

    Parallel OR Sequential

    So that we can reduce the overall execution time.

    Thanks

  • Why not try both and see for yourself?

    I would, however, expect parallel to win...

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • yes, I am trying for both option.

    Is it depend on Source/Target Database configuration.

  • It kind of depends on how much processors you have.

    But normally, I would expect parallellism to win. Just make sure no locks are introduced.

    Also, be aware that high parallellism can introduce a lot of I/O contention.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Koen (da-zero) (1/20/2011)


    It kind of depends on how much processors you have.

    But normally, I would expect parallellism to win. Just make sure no locks are introduced.

    Also, be aware that high parallellism can introduce a lot of I/O contention.

    I have single processor, I tried both the option and I observed that Sequential takes less time than Parallel.

    I want to know that what are things we need to consider before deciding Sequential Or Parallel.

  • saurabh.deshpande (1/20/2011)


    --

    I want to know that what are things we need to consider before deciding Sequential Or Parallel.

    If you are talking purely about performance, there are many possible factors.

    If you are talking about something apart from performance, please elaborate.

    Even if you are armed with 100,000 words of series-vs-parallel deep theoretical analyses, nothing beats running a test. Unless you have insomnia, that is.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • saurabh.deshpande (1/20/2011)


    Koen (da-zero) (1/20/2011)


    It kind of depends on how much processors you have.

    But normally, I would expect parallellism to win. Just make sure no locks are introduced.

    Also, be aware that high parallellism can introduce a lot of I/O contention.

    I have single processor, I tried both the option and I observed that Sequential takes less time than Parallel.

    I want to know that what are things we need to consider before deciding Sequential Or Parallel.

    There are so many factors to be considered.

    For example: if the source system has only one harddrive, it will probably better to use sequential task, to minimize the head of the disk spinning everywhere (or in other words, minimize I/O). With sequential processing, the different CPUs can work together to process that one task very fast.

    On the other hand, if the source system has multiple disks and everything is nicely partitioned, parallel processing will probably be faster, as there is no I/O contention.

    As Phil said: experiment experiment experiment

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Along with what everyone else has said, I suspect that since you are pulling the data from a remote db server the network will have a bigger impact in the performance of your SSIS packages. Also have read of the SQL CAT teams best practices if you are looking at getting max performance out of your SSIS packages.

    http://sqlcat.com/top10lists/archive/2008/10/01/top-10-sql-server-integration-services-best-practices.aspx

Viewing 8 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic. Login to reply