diff options
author | Vijay Pai <vpai@google.com> | 2015-07-30 11:05:48 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2015-07-30 11:05:48 -0700 |
commit | fdd0c923d15a0a0691a34e325c9d0fc7e431ea3e (patch) | |
tree | 40c69232e3ef9b9d638cafb1cd994e3d6559e9e1 /test | |
parent | 2a21434cc5c50baec31e94e8fc613cfad331c690 (diff) | |
parent | 94fad8119eb93dd4116eabc0e446e20f4feaee7a (diff) |
Merge pull request #2721 from ctiller/insolvent-trees
Tune down number of channels for qps_test
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/qps/qps_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/qps/qps_test.cc b/test/cpp/qps/qps_test.cc index 7b93443f7c..ba980a6664 100644 --- a/test/cpp/qps/qps_test.cc +++ b/test/cpp/qps/qps_test.cc @@ -53,8 +53,8 @@ static void RunQPS() { ClientConfig client_config; client_config.set_client_type(ASYNC_CLIENT); client_config.set_enable_ssl(false); - client_config.set_outstanding_rpcs_per_channel(10); - client_config.set_client_channels(800); + client_config.set_outstanding_rpcs_per_channel(1000); + client_config.set_client_channels(8); client_config.set_payload_size(1); client_config.set_async_client_threads(8); client_config.set_rpc_type(UNARY); |