How to increase the size of the Stas object thread pool in COM +

Source: Internet
Author: User

According to Microsoft's design, the stathread model component is in COM + and each CPU supports up to 10 instances.

 

First, all these definitions are described in

Http://support.microsoft.com/default.aspx? Scid = kb; EN-US; 282490

Medium,

Excerpt:

Thread Pool in COM +

In COM +, each server application maintains two separate thread pools. one thread pool services STA objects, and another thread pool services free threaded components. the latter thread pool has no upper limit on the number of threads.

The COM + thread pool size follows these rules:

  • The thread pool size is initialized to 7 plus the number of processors.

  • The thread pool size increases with the number of queued requests.

  • The maximum size that the thread pool can reach is10Multiplied by the number of processors .(That is to say,STAComponent inCOM +Up10Instance activities)

  • The thread pool decreases in size when the traffic is low.

 

 

In

Http://support.microsoft.com/default.aspx? Scid = kb; EN-US; 303071

Indicates that a registry key can enable COM + to simulate MTS, and the thread pool is extended to 100 threads:

However, under certain scenarios, slow middle-tier servers may experience low performance due to the lack of threads and concurrency in COM + run time. beginning with Post Microsoft Windows 2000 Service Pack 2 COM + Rollup Hotfix 10 (which allows COM + to simulate MTS behavior), the following registry key can be added:

HKEY_LOCAL_MACHINE/Software/Microsoft/COM3/STAThreadPool
Value name:EmulateMTSBehaviorData type: REG_DWORD Value data: default is 0

 Any value other than zero forEmulateMTSBehaviorValue causes the thread pool to emulate MTS behavior, that is, one activity for each thread and 100 maximum threads for each package. if you experience performance problems while CPU utilization is low, you can set this key to increase the chance of assigning a thread to your request.

NOTE:The COM + default settings are optimized and tested for most situations. You shoshould consult Microsoft support extensionals before you modify these settings.

 

For more information, see:

Http://www.dev-purgatory.org/COMplus_threadpool.htm

 

How to tune the COM + threadpool for STA objects

MTS had one activity per STA thread and a limit of 100 STA threads by default which cocould be changed since NT SP4 by an entry in the registry. COM + has now 5 activities maximum per STA thread and a fixed limit of 10 * number of processors, e.g. 10 threads on a 1cpu box.

COM + creates 7 + number of processors STA threads when the application starts. when COM + receives a client requests, it searches the least busy thread and inserts in its queue the created activity. when all threads have 5 activities "In-call" COM + creates a new thread for the next incoming call. so for a 1cpu box you will see more than 8 threads only when more than 40 activities are in call.
So COM + differs much in threadpooling from MTS and you can nearly nothing do to avoid blocking activities-nearly

Hm, you certainly remember that you can still configure the threadpool for an IIS-application under IIS5-so under COM +.

Well here is the hack-not supported ented, not supported:

The DWORD entry MaxThreadsPerCPU inHKLM/SOFTWARE/MICROSOFT/COM3Can be used to increase the thread limit.

But there's still the problem with the 5 activities per thread and so still the blocking problem!

The value of 5 activities per Thread is hardcoded in source code and can be changed only by a com MethodIComSTAThreadSTAPoolKnobs. SetActivityPerThread ()And this function is not supported ented so not public. This method is called for example by iis5.

Update:

Since MS has recognized that the new sta pool behaviour can let perform old MTS apps quite bad, MS has introduced a new registry value in with post Microsoft Windows 2000 Service Pack 2 COM + rollup hotfix 10:

HKEY_LOCAL_MACHINE/software/Microsoft/com3/stathreadpool
Value Name: emulatemtsbehavior data type: REG_DWORD value data: default is 0

"Any value other than zero for the emulatemtsbehavior value causes the thread pool to emulate MTS behavior, that is, one activity for each thread and 100 maximum threads for each package. if you experience performance problems while CPU utilization is low, you can set this key to increase the chance of assigning a thread to your request."

 

 

Thanks to Steffen Ramlow.

Zhengyun (at) tomosoft.com.

Trackback: http://tb.blog.csdn.net/TrackBack.aspx? PostId = 12729

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.