asp.net - difference between Idle worker thread count and MinThread count in a dump -
can explain "idle" , "minlimit" values. "idle" , "minlimit" means? how related?
0:000> !threadpool work request in queue: 4 -------------------------------------- number of timers: 25 -------------------------------------- cpu utilization 0% -------------------------------------- worker thread: total: 4 running: 0 idle: 4 maxlimit: 400 minlimit: 200 completion port thread:total: 1 free: 1 maxfree: 8 currentlimit: 0 maxlimit: 400 minlimit: 200
having not debugged managed application did find posts explain question on tess ferrandez's excellent blog , another.
so thread pool setup min , max number of threads, maxlimit , minlimit. has decided in case have 4 threads , turns out 4 idle , not running state. minlimit hint , not mean use @ least many threads in thread pool.
Comments
Post a Comment