February 1, 2012 at 6:56 am
My Sql Server Agent can only run two powershell jobsteps at one time which apparently is caused by the max_worker_threads setting:
[font="Courier New"]SELECT subsystem, max_worker_threads FROM msdb.dbo.syssubsystems
subsystemmax_worker_threads
TSQL240
ActiveScripting120
CmdExec120
Snapshot1200
LogReader300
Distribution1200
Merge1200
QueueReader1200
ANALYSISQUERY1200
ANALYSISCOMMAND1200
SSIS1200
PowerShell2[/font]
Why are so little PowerShell threads allowed compared to other subsystems? Is it save to set the value to say 10?
February 1, 2012 at 8:09 am
No reason why you cant increase it.
I've got it increased to 1/4 of my available cores on all servers. I dont expect to ever use that many but it allows more flexibility.
November 7, 2012 at 4:56 pm
I have been trying to change this in SQL 2012. Every time I change the value for PowerShell in the syssubsystems table when I restart the SQL agent it is set back to 2. SQL 2008R2 persisted this change. Anyone been able to change it in 2012?
November 19, 2012 at 3:01 pm
I just noticed this 2008-2012 difference myself when looking at the max_worker_threads for the TSQL subsystem.
I think sp_verify_subsystems must run whenever SQL agent starts. In 2008, it only inserts into the syssubsystems table if there are entries missing, so your modifications persist across restarts. In 2012, it truncates the table and re-inserts every time!
All of the subsystems except Powershell are set to be multiples of the server's CPU count. The Powershell subsystem is hardcoded to 2, go figure. :hehe:
May 3, 2014 at 4:46 am
Hi Thanks for your feedback. On this i am having similar issue and i am trying change the CmdExec Worker thread value , but after restarting the SQL Agent the value is rolling back. As you said this CmdExec is multiplies of CPU. Can you please let me know what is digit we need multiply for this subsystem? do we have any documentation on this from MS?
Thanks for your reply in advance.
Regards,
Thulasi.
April 7, 2015 at 7:27 am
edit sp_verify_subsystems in msdb. This inserts the value to subsystems table by multiplying an arbitrary number to the no.of processors. you can manipulate this number to get the desired worker threads
For powershell, just change 2 to the number you want
INSERT syssubsystems
VALUES
(
12, N'PowerShell', 14698, @InstRootPath + N'SQLPOWERSHELLSS.DLL', @SQLPSPath, N'PowerShellStart',N'PowerShellEvent',N'PowerShellStop',2
)
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply