aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-05-23 14:17:17 -0700
committerGravatar Vijay Pai <vpai@google.com>2017-05-23 14:17:17 -0700
commitfba000c8ec8eef9146b3aa8e012ce4b8e3e06674 (patch)
tree8e01b0038aebaa3e429978f0e5ac304f87139f57 /tools/run_tests/performance
parent4b07aab51363243d3c3a04876a91dd4c68581a89 (diff)
Reduce outstanding RPCs for 1cq tests
Diffstat (limited to 'tools/run_tests/performance')
-rw-r--r--tools/run_tests/performance/scenario_config.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py
index d58731cb6f..3869c51bf9 100644
--- a/tools/run_tests/performance/scenario_config.py
+++ b/tools/run_tests/performance/scenario_config.py
@@ -53,7 +53,7 @@ HISTOGRAM_PARAMS = {
# actual target will be slightly higher)
OUTSTANDING_REQUESTS={
'async': 6400,
- 'async-1core': 800,
+ 'async-limited': 800,
'sync': 1000
}
@@ -289,7 +289,7 @@ class CXXLanguage:
rpc_type='STREAMING',
client_type='ASYNC_CLIENT',
server_type='ASYNC_GENERIC_SERVER',
- unconstrained_client='async', use_generic_payload=True,
+ unconstrained_client='async-limited', use_generic_payload=True,
secure=secure,
client_threads_per_cq=1000000, server_threads_per_cq=1000000,
categories=smoketest_categories+[SCALABLE])
@@ -309,7 +309,7 @@ class CXXLanguage:
rpc_type='STREAMING',
client_type='ASYNC_CLIENT',
server_type='ASYNC_SERVER',
- unconstrained_client='async',
+ unconstrained_client='async-limited',
secure=secure,
client_threads_per_cq=1000000, server_threads_per_cq=1000000,
categories=smoketest_categories+[SCALABLE])
@@ -329,7 +329,7 @@ class CXXLanguage:
rpc_type='UNARY',
client_type='ASYNC_CLIENT',
server_type='ASYNC_SERVER',
- unconstrained_client='async',
+ unconstrained_client='async-limited',
secure=secure,
client_threads_per_cq=1000000, server_threads_per_cq=1000000,
categories=smoketest_categories+[SCALABLE])
@@ -349,7 +349,7 @@ class CXXLanguage:
rpc_type='STREAMING',
client_type='ASYNC_CLIENT',
server_type='ASYNC_GENERIC_SERVER',
- unconstrained_client='async-1core', use_generic_payload=True,
+ unconstrained_client='async-limited', use_generic_payload=True,
async_server_threads=1,
secure=secure)
@@ -836,7 +836,7 @@ class JavaLanguage:
yield _ping_pong_scenario(
'java_generic_async_streaming_qps_one_server_core_%s' % secstr, rpc_type='STREAMING',
client_type='ASYNC_CLIENT', server_type='ASYNC_GENERIC_SERVER',
- unconstrained_client='async-1core', use_generic_payload=True,
+ unconstrained_client='async-limited', use_generic_payload=True,
async_server_threads=1,
secure=secure, warmup_seconds=JAVA_WARMUP_SECONDS)