aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gke/run_stress_tests_on_gke.py
blob: d0c3887a422cc5b789e9e5c51d20f67b14a4277f (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#!/usr/bin/env python2.7
# Copyright 2015-2016, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import datetime
import os
import subprocess
import sys
import time

import kubernetes_api

GRPC_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
os.chdir(GRPC_ROOT)

class BigQuerySettings:

  def __init__(self, run_id, dataset_id, summary_table_id, qps_table_id):
    self.run_id = run_id
    self.dataset_id = dataset_id
    self.summary_table_id = summary_table_id
    self.qps_table_id = qps_table_id


class KubernetesProxy:
  """ Class to start a proxy on localhost to the Kubernetes API server """

  def __init__(self, api_port):
    self.port = api_port
    self.p = None
    self.started = False

  def start(self):
    cmd = ['kubectl', 'proxy', '--port=%d' % self.port]
    self.p = subprocess.Popen(args=cmd)
    self.started = True
    time.sleep(2)
    print '..Started'

  def get_port(self):
    return self.port

  def is_started(self):
    return self.started

  def __del__(self):
    if self.p is not None:
      self.p.kill()


def _build_docker_image(image_name, tag_name):
  """ Build the docker image and add a tag """
  os.environ['INTEROP_IMAGE'] = image_name
  # Note that 'BASE_NAME' HAS to be 'grpc_interop_stress_cxx' since the script
  # build_interop_stress_image.sh invokes the following script:
  #   tools/dockerfile/$BASE_NAME/build_interop_stress.sh
  os.environ['BASE_NAME'] = 'grpc_interop_stress_cxx'
  cmd = ['tools/jenkins/build_interop_stress_image.sh']
  p = subprocess.Popen(args=cmd)
  retcode = p.wait()
  if retcode != 0:
    print 'Error in building docker image'
    return False

  cmd = ['docker', 'tag', '-f', image_name, tag_name]
  p = subprocess.Popen(args=cmd)
  retcode = p.wait()
  if retcode != 0:
    print 'Error in creating the tag %s for %s' % (tag_name, image_name)
    return False

  return True


def _push_docker_image_to_gke_registry(docker_tag_name):
  """Executes 'gcloud docker push <docker_tag_name>' to push the image to GKE registry"""
  cmd = ['gcloud', 'docker', 'push', docker_tag_name]
  print 'Pushing %s to GKE registry..' % docker_tag_name
  p = subprocess.Popen(args=cmd)
  retcode = p.wait()
  if retcode != 0:
    print 'Error in pushing docker image %s to the GKE registry' % docker_tag_name
    return False
  return True


def _launch_image_on_gke(kubernetes_api_server, kubernetes_api_port, namespace,
                         pod_name, image_name, port_list, cmd_list, arg_list,
                         env_dict, is_headless_service):
  """Creates a GKE Pod and a Service object for a given image by calling Kubernetes API"""
  is_success = kubernetes_api.create_pod(
      kubernetes_api_server,
      kubernetes_api_port,
      namespace,
      pod_name,
      image_name,
      port_list,  # The ports to be exposed on this container/pod
      cmd_list,  # The command that launches the stress server
      arg_list,
      env_dict  # Environment variables to be passed to the pod
  )
  if not is_success:
    print 'Error in creating Pod'
    return False

  is_success = kubernetes_api.create_service(
      kubernetes_api_server,
      kubernetes_api_port,
      namespace,
      pod_name,  # Use the pod name for service name as well
      pod_name,
      port_list,  # Service port list
      port_list,  # Container port list (same as service port list)
      is_headless_service)
  if not is_success:
    print 'Error in creating Service'
    return False

  print 'Successfully created the pod/service %s' % pod_name
  return True


def _delete_image_on_gke(kubernetes_proxy, pod_name_list):
  """Deletes a GKE Pod and Service object for given list of Pods by calling Kubernetes API"""
  if not kubernetes_proxy.is_started:
    print 'Kubernetes proxy must be started before calling this function'
    return False

  is_success = True
  for pod_name in pod_name_list:
    is_success = kubernetes_api.delete_pod(
        'localhost', kubernetes_proxy.get_port(), 'default', pod_name)
    if not is_success:
      print 'Error in deleting pod %s' % pod_name
      break

    is_success = kubernetes_api.delete_service(
        'localhost', kubernetes_proxy.get_port(), 'default',
        pod_name)  # service name same as pod name
    if not is_success:
      print 'Error in deleting service %s' % pod_name
      break

  if is_success:
    print 'Successfully deleted the Pods/Services: %s' % ','.join(pod_name_list)

  return is_success


def _launch_server(gcp_project_id, docker_image_name, bq_settings,
                   kubernetes_proxy, server_pod_name, server_port):
  """ Launches a stress test server instance in GKE cluster """
  if not kubernetes_proxy.is_started:
    print 'Kubernetes proxy must be started before calling this function'
    return False

  server_cmd_list = [
      '/var/local/git/grpc/tools/run_tests/stress_test/run_server.py'
  ]  # Process that is launched
  server_arg_list = []  # run_server.py does not take any args (for now)

  # == Parameters to the server process launched in GKE ==
  server_env = {
      'STRESS_TEST_IMAGE_TYPE': 'SERVER',
      'STRESS_TEST_IMAGE': '/var/local/git/grpc/bins/opt/interop_server',
      'STRESS_TEST_ARGS_STR': '--port=%s' % server_port,
      'RUN_ID': bq_settings.run_id,
      'POD_NAME': server_pod_name,
      'GCP_PROJECT_ID': gcp_project_id,
      'DATASET_ID': bq_settings.dataset_id,
      'SUMMARY_TABLE_ID': bq_settings.summary_table_id,
      'QPS_TABLE_ID': bq_settings.qps_table_id
  }

  # Launch Server
  is_success = _launch_image_on_gke(
      'localhost',
      kubernetes_proxy.get_port(),
      'default',
      server_pod_name,
      docker_image_name,
      [server_port],  # Port that should be exposed on the container
      server_cmd_list,
      server_arg_list,
      server_env,
      True  # Headless = True for server. Since we want DNS records to be greated by GKE
  )

  return is_success


def _launch_client(gcp_project_id, docker_image_name, bq_settings,
                   kubernetes_proxy, num_instances, client_pod_name_prefix,
                   server_pod_name, server_port):
  """ Launches a configurable number of stress test clients on GKE cluster """
  if not kubernetes_proxy.is_started:
    print 'Kubernetes proxy must be started before calling this function'
    return False

  server_address = '%s.default.svc.cluster.local:%d' % (server_pod_name,
                                                        server_port)
  #TODO(sree) Make the whole client args configurable
  test_cases_str = 'empty_unary:1,large_unary:1'
  stress_client_arg_list = [
      '--server_addresses=%s' % server_address,
      '--test_cases=%s' % test_cases_str, '--num_stubs_per_channel=10'
  ]

  client_cmd_list = [
      '/var/local/git/grpc/tools/run_tests/stress_test/run_client.py'
  ]
  # run_client.py takes no args. All args are passed as env variables
  client_arg_list = []

  # TODO(sree) Make this configurable (and also less frequent)
  poll_interval_secs = 5

  metrics_port = 8081
  metrics_server_address = 'localhost:%d' % metrics_port
  metrics_client_arg_list = [
      '--metrics_server_address=%s' % metrics_server_address,
      '--total_only=true'
  ]

  client_env = {
      'STRESS_TEST_IMAGE_TYPE': 'CLIENT',
      'STRESS_TEST_IMAGE': '/var/local/git/grpc/bins/opt/stress_test',
      'STRESS_TEST_ARGS_STR': ' '.join(stress_client_arg_list),
      'METRICS_CLIENT_IMAGE': '/var/local/git/grpc/bins/opt/metrics_client',
      'METRICS_CLIENT_ARGS_STR': ' '.join(metrics_client_arg_list),
      'RUN_ID': bq_settings.run_id,
      'POLL_INTERVAL_SECS': str(poll_interval_secs),
      'GCP_PROJECT_ID': gcp_project_id,
      'DATASET_ID': bq_settings.dataset_id,
      'SUMMARY_TABLE_ID': bq_settings.summary_table_id,
      'QPS_TABLE_ID': bq_settings.qps_table_id
  }

  for i in range(1, num_instances + 1):
    pod_name = '%s-%d' % (client_pod_name_prefix, i)
    client_env['POD_NAME'] = pod_name
    is_success = _launch_image_on_gke(
        'localhost',
        kubernetes_proxy.get_port(),
        'default',
        pod_name,
        docker_image_name,
        [metrics_port],  # Client pods expose metrics port
        client_cmd_list,
        client_arg_list,
        client_env,
        False  # Client is not a headless service.
    )
    if not is_success:
      print 'Error in launching client %s' % pod_name
      return False

  return True


def _launch_server_and_client(gcp_project_id, docker_image_name,
                              num_client_instances):
  # == Big Query tables related settings (Common for both server and client) ==

  # Create a unique id for this run (Note: Using timestamp instead of UUID to
  # make it easier to deduce the date/time of the run just by looking at the run
  # run id. This is useful in debugging when looking at records in Biq query)
  run_id = datetime.datetime.now().strftime('%Y_%m_%d_%H_%M_%S')

  dataset_id = 'stress_test_%s' % run_id
  summary_table_id = 'summary'
  qps_table_id = 'qps'

  bq_settings = BigQuerySettings(run_id, dataset_id, summary_table_id,
                                 qps_table_id)

  # Start kubernetes proxy
  kubernetes_api_port = 9001
  kubernetes_proxy = KubernetesProxy(kubernetes_api_port)
  kubernetes_proxy.start()

  server_pod_name = 'stress-server'
  server_port = 8080
  is_success = _launch_server(gcp_project_id, docker_image_name, bq_settings,
                              kubernetes_proxy, server_pod_name, server_port)
  if not is_success:
    print 'Error in launching server'
    return False

  # Server takes a while to start.
  # TODO(sree) Use Kubernetes API to query the status of the server instead of
  # sleeping
  time.sleep(60)

  # Launch client
  server_address = '%s.default.svc.cluster.local:%d' % (server_pod_name,
                                                        server_port)
  client_pod_name_prefix = 'stress-client'
  is_success = _launch_client(gcp_project_id, docker_image_name, bq_settings,
                              kubernetes_proxy, num_client_instances,
                              client_pod_name_prefix, server_pod_name,
                              server_port)
  if not is_success:
    print 'Error in launching client(s)'
    return False

  return True


def _delete_server_and_client(num_client_instances):
  kubernetes_api_port = 9001
  kubernetes_proxy = KubernetesProxy(kubernetes_api_port)
  kubernetes_proxy.start()

  # Delete clients first
  client_pod_names = ['stress-client-%d' % i
                      for i in range(1, num_client_instances + 1)]

  is_success = _delete_image_on_gke(kubernetes_proxy, client_pod_names)
  if not is_success:
    return False

  # Delete server
  server_pod_name = 'stress-server'
  return _delete_image_on_gke(kubernetes_proxy, [server_pod_name])


def _build_and_push_docker_image(gcp_project_id, docker_image_name, tag_name):
  is_success = _build_docker_image(docker_image_name, tag_name)
  if not is_success:
    return False
  return _push_docker_image_to_gke_registry(tag_name)


# TODO(sree): This is just to test the above APIs. Rewrite this to make
# everything configurable (like image names / number of instances etc)
def test_run():
  image_name = 'grpc_stress_test'
  gcp_project_id = 'sree-gce'
  tag_name = 'gcr.io/%s/%s' % (gcp_project_id, image_name)
  num_client_instances = 3

  is_success = _build_docker_image(image_name, tag_name)
  if not is_success:
    return

  is_success = _push_docker_image_to_gke_registry(tag_name)
  if not is_success:
    return

  is_success = _launch_server_and_client(gcp_project_id, tag_name,
                                         num_client_instances)

  # Run the test for 2 mins
  time.sleep(120)

  is_success = _delete_server_and_client(num_client_instances)

  if not is_success:
    return


if __name__ == '__main__':
  test_run()