c# - Wcf 并行和异步调用?

标签 c# wcf asynchronous call parallel-processing

我有一个 wcf 服务(解析器服务,byte[]=>string)

[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerSession, ConcurrencyMode = ConcurrencyMode.Multiple)]

托管在 iis 上(nettcpbinding) 在我的客户端,我有 100 万多个 byte[] 像这个 List(1000000) 并且我应该调用 wcf 服务的方法作为并行来解析这个列表。

我是这样使用的,但在解析 500000-700000 条消息后出现瓶颈(wcf 服务未响应我)。我在哪里做错了实现?如果我实现此 http://blogs.msdn.com/b/rjacobs/archive/2011/06/30/how-to-implement-a-wcf-asynchronous-service-operation-with-task-lt-t-gt.aspx,它是否解决了我的问题?方法(Parallel.Foreach 中的客户端同下一行)

Service1 client =new Service1();
Parallel.Foeach(list,byteArray=>{
  var result = client.Parse(byteArray);
  string keyHash = string.combine(byteArray[0],byteArray[1],byteArray[3])
  WriteDiffFile(keyHash,result); // maybe call in different task 
  WriteSameFile(result); // need lock for write to same file
});

我的 wcf 主机配置:

<system.serviceModel>
    <diagnostics etwProviderId="9a712944-02ea-425a-bbd3-567a943b85df">
      <endToEndTracing propagateActivity="false" messageFlowTracing="false" />
    </diagnostics>
    <services>
      <service name="Pln3G.Services.EventParserService" behaviorConfiguration="Pln3G.WebServices.EventParserServiceBehavior">
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8001/pln3g/EventParserService/" />
          </baseAddresses>
        </host>
        <endpoint address="" binding="netTcpBinding" bindingConfiguration="tcp_Unsecured" contract="Pln3G.Domain.Contracts.Service.IEventParserService" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
    </services>
    <bindings>
      <netTcpBinding>
        <binding name="tcp_Unsecured" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="2147483647" maxReceivedMessageSize="2147483647" portSharingEnabled="false" transactionFlow="false" listenBacklog="2147483647" closeTimeout="00:01:00" openTimeout="00:10:00" receiveTimeout="00:20:00" sendTimeout="00:10:00">
          <readerQuotas maxDepth="64" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <security mode="None"></security>
        </binding>
      </netTcpBinding>
    </bindings>

    <behaviors>
      <serviceBehaviors>
        <behavior name="Pln3G.WebServices.EventParserServiceBehavior">
          <etwTracking profileName="ErrorsOnly Tracking Profile" />
          <dataContractSerializer maxItemsInObjectGraph="2147483647" />
          <!--1. MaxConcurrentSessions: default is 100 * ProcessorCount
                2. MaxConcurrentCalls: default is 16 * ProcessorCount
                3. MaxConcurrentInstances: default is the total of MaxConcurrentSessions and MaxConcurrentCalls -->
          <serviceThrottling maxConcurrentCalls="32" maxConcurrentSessions="200" maxConcurrentInstances="232" />
          <serviceMetadata httpGetEnabled="True" />
          <serviceDebug includeExceptionDetailInFaults="True" />
        </behavior>
        <behavior name="">
          <etwTracking profileName="HealthMonitoring Tracking Profile" />
          <serviceThrottling maxConcurrentCalls="32" maxConcurrentSessions="200" maxConcurrentInstances="232" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

我的 wcf 客户端配置:

<system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="NetTcpBinding_IEventParserService" closeTimeout="00:01:00" openTimeout="00:10:00" receiveTimeout="00:20:00" sendTimeout="00:10:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="64" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <!--<reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />-->
          <security mode="None">
            <transport clientCredentialType="None" protectionLevel="None" />
            <message clientCredentialType="None" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>
    <client>
      <endpoint address="net.tcp://192.168.1.66:8001/pln3g/EventParserService.svc" behaviorConfiguration="ServiceViewEventBehavior"
          binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IEventParserService"
          contract="EventParserServiceReference.IEventParserService" name="NetTcpBinding_IEventParserService" />
    </client>
    <behaviors>
      <endpointBehaviors>
        <behavior name="ServiceViewEventBehavior">
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
  </system.serviceModel>

最佳答案

我建议你使用PerCall InstanceContextMode,在这种模式下,它为不同的调用创建不同的实例,并且它们在不同的线程中被调用;如果您使用 PerSession,它只会为您的 session 创建一个实例,根据您的客户端代码,它只会创建实例并为您的请求提供服务。

关于c# - Wcf 并行和异步调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6912459/

相关文章:

wcf - 将 WCF 基于角色的安全性传递到 UI

java - Android多个Loader用于http请求

javascript - 对于在 NodeJS 中遍历数组但 console.log 不会打印到终端的循环?

c# - 对 Ands : System. Guid 进行级联相等性检查

c# - 在 Xamarin for iOS 中为 Imagebutton 设置图像

c# - 如何在 linq-to-sql 中返回匿名类型

c# - 将动态 JSON 发布到 MVC4 操作

c# - Windows Azure 负载均衡器的自定义探针

asp.net - silverlight 不支持 wsHttpBinding

node.js - 提供数据处理进展