aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/stress_test/configs/php-cxx.json
blob: 03254b368c86c1ca87850e9b0bb66260be40184d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
  "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
  }
}