diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2017-07-25 12:23:28 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2017-07-26 14:18:06 +0200 |
commit | 75e9eaed4410b54226d113bcb27aff7ba396f2fa (patch) | |
tree | c88c7d83b4346d1f4735aa39e00ad4c1288c6f3e | |
parent | 7dbd72497ceee212a33db09c51e0ad3c50a90b7e (diff) |
reduce threadpool size for qps benchmarks
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting/QpsWorker.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/QpsWorker.cs b/src/csharp/Grpc.IntegrationTesting/QpsWorker.cs index 7009a93b18..a579fb8040 100644 --- a/src/csharp/Grpc.IntegrationTesting/QpsWorker.cs +++ b/src/csharp/Grpc.IntegrationTesting/QpsWorker.cs @@ -63,11 +63,6 @@ namespace Grpc.IntegrationTesting private async Task RunAsync() { - // (ThreadPoolSize == ProcessorCount) gives best throughput in benchmarks - // and doesn't seem to harm performance even when server and client - // are running on the same machine. - GrpcEnvironment.SetThreadPoolSize(Environment.ProcessorCount); - string host = "0.0.0.0"; int port = options.DriverPort; |