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.
90 lines
2.3 KiB
90 lines
2.3 KiB
{ |
|
"dockerImages": { |
|
"grpc_stress_csharp" : { |
|
"buildScript": "tools/run_tests/dockerize/build_interop_stress_image.sh", |
|
"dockerFileDir": "grpc_interop_stress_csharp" |
|
} |
|
}, |
|
|
|
"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", |
|
"total_only": "true" |
|
} |
|
} |
|
}, |
|
"templates": { |
|
"csharp_client": { |
|
"baseTemplate": "default", |
|
"stressClientCmd": [ |
|
"mono", |
|
"/var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.StressClient/bin/Debug/Grpc.IntegrationTesting.StressClient.exe" |
|
], |
|
"metricsClientCmd": ["/var/local/git/grpc/bins/opt/metrics_client"] |
|
} |
|
} |
|
}, |
|
|
|
"serverTemplates": { |
|
"baseTemplates":{ |
|
"default": { |
|
"wrapperScriptPath": "/var/local/git/grpc/tools/gcp/stress_test/run_server.py", |
|
"serverPort": 8080, |
|
"serverArgs": { |
|
"port": 8080 |
|
} |
|
} |
|
}, |
|
"templates": { |
|
"csharp_server": { |
|
"baseTemplate": "default", |
|
"stressServerCmd": [ |
|
"mono", |
|
"/var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Server/bin/Debug/Grpc.IntegrationTesting.Server.exe" |
|
] |
|
} |
|
} |
|
}, |
|
|
|
"testMatrix": { |
|
"serverPodSpecs": { |
|
"stress-server-csharp": { |
|
"serverTemplate": "csharp_server", |
|
"dockerImage": "grpc_stress_csharp", |
|
"numInstances": 1 |
|
} |
|
}, |
|
|
|
"clientPodSpecs": { |
|
"stress-client-csharp": { |
|
"clientTemplate": "csharp_client", |
|
"dockerImage": "grpc_stress_csharp", |
|
"numInstances": 10, |
|
"serverPodSpec": "stress-server-csharp" |
|
} |
|
} |
|
}, |
|
|
|
"globalSettings": { |
|
"buildDockerImages": true, |
|
"pollIntervalSecs": 60, |
|
"testDurationSecs": 7200, |
|
"kubernetesProxyPort": 8009, |
|
"datasetIdNamePrefix": "stress_test_csharp", |
|
"summaryTableId": "summary", |
|
"qpsTableId": "qps", |
|
"podWarmupSecs": 60 |
|
} |
|
} |
|
|
|
|