mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.4 KiB
94 lines
2.4 KiB
9 years ago
|
{
|
||
|
"dockerImages": {
|
||
|
"grpc_stress_cxx_opt" : {
|
||
|
"buildScript": "tools/run_tests/dockerize/build_interop_stress_image.sh",
|
||
|
"dockerFileDir": "grpc_interop_stress_cxx",
|
||
|
"buildType": "opt"
|
||
|
},
|
||
|
"grpc_stress_php": {
|
||
|
"buildScript": "tools/run_tests/dockerize/build_interop_stress_image.sh",
|
||
|
"dockerFileDir": "grpc_interop_stress_php"
|
||
|
}
|
||
|
},
|
||
|
|
||
|
"clientTemplates": {
|
||
|
"baseTemplates": {
|
||
|
"default": {
|
||
|
"wrapperScriptPath": "/var/local/git/grpc/tools/gcp/stress_test/run_client.py",
|
||
|
"pollIntervalSecs": 60,
|
||
|
"clientArgs": {
|
||
|
"num_channels_per_server":5,
|
||
|
"num_stubs_per_channel":10,
|
||
|
"test_cases": "empty_unary:1,large_unary:1,client_streaming:1,server_streaming:1,empty_stream:1",
|
||
|
"metrics_port": 8081
|
||
|
},
|
||
|
"metricsPort": 8081,
|
||
|
"metricsArgs": {
|
||
|
"metrics_server_address": "localhost:8081"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"templates": {
|
||
|
"php_client": {
|
||
|
"baseTemplate": "default",
|
||
|
"stressClientCmd": [
|
||
|
"/var/local/git/grpc/src/php/bin/stress_client.sh"
|
||
|
],
|
||
|
"metricsClientCmd": [
|
||
|
"php",
|
||
|
"/var/local/git/grpc/src/php/tests/interop/metrics_client.php"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
"serverTemplates": {
|
||
|
"baseTemplates":{
|
||
|
"default": {
|
||
|
"wrapperScriptPath": "/var/local/git/grpc/tools/gcp/stress_test/run_server.py",
|
||
|
"serverPort": 8080,
|
||
|
"serverArgs": {
|
||
|
"port": 8080
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"templates": {
|
||
|
"cxx_server_opt": {
|
||
|
"baseTemplate": "default",
|
||
|
"stressServerCmd": ["/var/local/git/grpc/bins/opt/interop_server"]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
"testMatrix": {
|
||
|
"serverPodSpecs": {
|
||
|
"stress-server-cxx-php": {
|
||
|
"serverTemplate": "cxx_server_opt",
|
||
|
"dockerImage": "grpc_stress_cxx_opt",
|
||
|
"numInstances": 1
|
||
|
}
|
||
|
},
|
||
|
|
||
|
"clientPodSpecs": {
|
||
|
"stress-client-php": {
|
||
|
"clientTemplate": "php_client",
|
||
|
"dockerImage": "grpc_stress_php",
|
||
|
"numInstances": 20,
|
||
|
"serverPodSpec": "stress-server-cxx-php"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
"globalSettings": {
|
||
|
"buildDockerImages": true,
|
||
|
"pollIntervalSecs": 60,
|
||
|
"testDurationSecs": 7200,
|
||
|
"kubernetesProxyPort": 8010,
|
||
|
"datasetIdNamePrefix": "stress_test_php_cxx_opt",
|
||
|
"summaryTableId": "summary",
|
||
|
"qpsTableId": "qps",
|
||
|
"podWarmupSecs": 60
|
||
|
}
|
||
|
}
|
||
|
|