Can anyone advise if there is a way to disable or limit parallel execution of SSIS packages at the server level?
I have an SSIS project with a large number of packages drawing from multiple data sources. My development and production environments are of a high enough hardware spec that executing all packages at once and letting them run to completion works fine. However, my test server has a much lower spec, and running all packages causes the CPU to max out and some packages to terminate unexpectedly.
I'm developing a Data Warehouse and currently building the staging tier. I have 50+ tables (and growing), and 50+ dtsx packages with each package populating a single table. Data sources include MSSQL, MySQL, text files and MDBs across multiple local servers.
The packages are deployed from a VS2015 project to SQL server, and all packages are queued for execution simultaneously via a script. After queuing the packages, SQL server pegs the CPU at 100% continuously causing connection timeouts to data sources, and sometimes unexpected package terminations.
Adding more hardware to the test server isn't an option, nor is combining tasks in fewer packages to leverage package-level maximum concurrency.
I want to restrict the number of packages SQL server is trying to run in parallel, at the server level.