July 1, 2019 at 9:56 pm
I have a server with 128 logical processors, 64 bits server, and with a Standard edition of SQL Server 2014, and my question is this:
Considering that SQL Server connects an ERP with a high number of simultaneous connections (approximately 1,000), and the characteristic "Maximum calculation capacity" for each of the editions of SQL Server, the standard edition indicates 16 logical processors as the maximum supported, I understand that this has an impact on the "Workers Threads", that is, instead of supporting "4480", it is using only "704". Is what I'm saying about Workers Threads correct?
I leave the links with the features of SQL Server, and the configuration on the "Work Threads":
Thanks in advance.
July 2, 2019 at 10:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
July 5, 2019 at 1:42 pm
Why not just ask it?
SELECT max_workers_count
FROM sys.dm_os_sys_info;
July 5, 2019 at 10:11 pm
Hi!
The numbers 4480 and 704 are the default number of worker threads that SQL Server will create if you leave the configuration "Max worker threads" at 0 (4480 for 128 processors and 704 for 16 processors).
That being said, you can override this default behavior by specifying the number of worker threads you need. For instance, you can set the number at 1024 by running these commands:
exec sp_configure 'max worker threads', 1024;
reconfigure with override
Basically, you can set this number as high as 32767. BUT, you will probably run into troubles if you set it this high. On some of our SQL Server 2014 servers (Standard Edition), we have set it as high as 3072 (we have a lot of concurrent connections) without problems. You just need to make sure you have enough RAM to handle the worker threads.
Hope this helps.
July 6, 2019 at 1:24 am
Enquiring minds want to know... with a monster system like what you have, why are you "cheaping out" with Standard Edition especially when you expect so many simultaneous connections?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 9, 2019 at 2:56 pm
Hello,
Thanks for your answers to all, but as you say Jeff Moden, to the conclusion that I need to get, is if I should recommend that we change to the Enterprise Edition, but I need to be certain to be able to give the indication of the change of SQL edition Server.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply