gpt4 book ai didi

c# - WCF 是否使用 ThreadPool 为 PerCall 服务创建新实例?

转载 作者:可可西里 更新时间:2023-11-01 07:56:00 27 4
gpt4 key购买 nike

对于节流设置为高的 PerCall WCF 服务(例如,最多 200 个并发调用),WCF 会启动一个新实例并在线程池线程上调用请求吗?

如果是,那么这对允许的并发调用总数有影响吗?

我问是因为我似乎从来没有达到我在服务节流配置中设置的最大并发调用数,而是该数字的一小部分 - 在 100 MaxConcurrentCalls 设置上最多 50 个,在 200 个上最多 160 个MaxConcurrentCalls 设置。

谢谢,

最佳答案

WCF 似乎使用 CLR 线程池中的托管 I/O 线程来为请求提供服务,但需要注意的是使用其自己的线程调度程序。

来自 Wenlong Dong's Blog - Why Are WCF Responses Slow and SetMinThreads Does Not Work?

First of all, WCF uses managed I/O threads to handle requests. The CLR ThreadPool keeps a certain number of idle I/O threads from being destroyed. When more I/O threads are needed, they are created by the ThreadPool, which is kind of expensive.

来自 Wenlong Dong's Blog : WCF Request Throttling and Server Scalability

In .NET 3.0 and 3.5, there is a special behavior that you would observe for IIS-hosted WCF services. Whenever a request comes in, the system would use two threads to process the request: One thread is the CLR ThreadPool thread which is the worker thread that comes from ASP.NET. Another thread is an I/O thread that is managed by the WCF IOThreadScheduler (actually created by ThreadPool.UnsafeQueueNativeOverlapped).

影响 WCF 吞吐量的设置过多。因为 WCF 使用托管 ThreadPool,ThreadPool 的 MinIOThreads 和 MaxIOThreads 设置将影响结果。从 ThreadPool 中取出所有空闲 I/O 线程(或工作线程,如果您正在使用这些线程)后,ThreadPool 将延迟一段时间,然后启动一个新线程来为排队的请求提供服务。通过增加 MinIOThreads,您可以防止这种延迟。如果您达到 MaxIOThread 限制,那肯定会限制您看到的并发请求数;但是,在您的 50/100 测试中情况似乎并非如此,因为您的下一个测试设法让 160 个并发请求运行。如果我没记错的话,我相信您使用的托管环境(IIS、WAS、自身)可以决定一些 ThreadPool 设置。此外,如果您从第二个链接阅读博客文章,您将看到当 WCF 在其单独的 I/O 线程上处理请求时,IIS 工作线程如何被阻塞。因此在这种情况下,工作线程设置和 IIS 设置会对 WCF 并发产生影响。您如何托管此服务?

您的标题提到了 PerCall InstanceContextMode,这将使 ConcurrencyMode 变得无关紧要。但是,对于 PerCall,您需要了解 MaxConcurrentInstances 设置以及 MaxConcurrentCalls。根据您的绑定(bind),您可能还需要关注 MaxConcurrentSessions 属性。您使用什么绑定(bind)来托管此服务?

不管以上所有情况,令人困惑的是 50/100 测试之后的 160/200 测试。

关于c# - WCF 是否使用 ThreadPool 为 PerCall 服务创建新实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2835595/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com