blob: d6eed3f5bddcd2c0f8911aed69e4a58fc0b69629 [file] [log] [blame]
Jan Tattermuschb2758442016-03-28 09:32:20 -07001#!/usr/bin/env python2.7
2# Copyright 2016, Google Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31"""Run performance tests locally or remotely."""
32
siddharthshukla0589e532016-07-07 16:08:01 +020033from __future__ import print_function
34
Jan Tattermuschb2758442016-03-28 09:32:20 -070035import argparse
Craig Tilleraccf16b2016-09-15 09:08:32 -070036import collections
Jan Tattermuschbb1a4532016-03-30 18:04:01 -070037import itertools
Craig Tiller0bda0b32016-03-03 12:51:53 -080038import json
Jan Tattermuschb2758442016-03-28 09:32:20 -070039import multiprocessing
40import os
Craig Tiller0bda0b32016-03-03 12:51:53 -080041import pipes
Jan Tattermusch38becc22016-04-14 08:00:35 -070042import re
Jan Tattermuschb2758442016-03-28 09:32:20 -070043import subprocess
44import sys
45import tempfile
46import time
Jan Tattermuschee9032c2016-04-14 08:35:51 -070047import traceback
Jan Tattermuschb2758442016-03-28 09:32:20 -070048import uuid
Jan Tattermusch5c79a312016-12-20 11:02:50 +010049
50import performance.scenario_config as scenario_config
51import python_utils.jobset as jobset
52import python_utils.report_utils as report_utils
Jan Tattermuschb2758442016-03-28 09:32:20 -070053
54
55_ROOT = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
56os.chdir(_ROOT)
57
58
59_REMOTE_HOST_USERNAME = 'jenkins'
60
Alexander Polcyn9f08d112016-10-24 12:25:02 -070061_PERF_REPORT_OUTPUT_DIR = 'perf_reports'
62
Jan Tattermuschb2758442016-03-28 09:32:20 -070063
Jan Tattermuschb2758442016-03-28 09:32:20 -070064class QpsWorkerJob:
65 """Encapsulates a qps worker server job."""
66
Alexander Polcyn9f08d112016-10-24 12:25:02 -070067 def __init__(self, spec, language, host_and_port, perf_file_base_name=None):
Jan Tattermuschb2758442016-03-28 09:32:20 -070068 self._spec = spec
Jan Tattermuschbb1a4532016-03-30 18:04:01 -070069 self.language = language
Jan Tattermuschb2758442016-03-28 09:32:20 -070070 self.host_and_port = host_and_port
Craig Tillerc1b54f22016-09-15 08:57:14 -070071 self._job = None
Alexander Polcyn9f08d112016-10-24 12:25:02 -070072 self.perf_file_base_name = perf_file_base_name
Craig Tillerc1b54f22016-09-15 08:57:14 -070073
74 def start(self):
Craig Tillerc197ec12016-09-15 09:19:33 -070075 self._job = jobset.Job(self._spec, newline_on_success=True, travis=True, add_env={})
Jan Tattermuschb2758442016-03-28 09:32:20 -070076
77 def is_running(self):
78 """Polls a job and returns True if given job is still running."""
Craig Tillerc1b54f22016-09-15 08:57:14 -070079 return self._job and self._job.state() == jobset._RUNNING
Jan Tattermuschb2758442016-03-28 09:32:20 -070080
81 def kill(self):
Craig Tillerc1b54f22016-09-15 08:57:14 -070082 if self._job:
83 self._job.kill()
84 self._job = None
Jan Tattermuschb2758442016-03-28 09:32:20 -070085
86
Alexander Polcyn9f08d112016-10-24 12:25:02 -070087def create_qpsworker_job(language, shortname=None, port=10000, remote_host=None, perf_cmd=None):
88 cmdline = (language.worker_cmdline() + ['--driver_port=%s' % port])
89
Jan Tattermuschb2758442016-03-28 09:32:20 -070090 if remote_host:
Jan Tattermuschb2758442016-03-28 09:32:20 -070091 host_and_port='%s:%s' % (remote_host, port)
92 else:
93 host_and_port='localhost:%s' % port
94
Alexander Polcyn9f08d112016-10-24 12:25:02 -070095 perf_file_base_name = None
96 if perf_cmd:
97 perf_file_base_name = '%s-%s' % (host_and_port, shortname)
98 # specify -o output file so perf.data gets collected when worker stopped
99 cmdline = perf_cmd + ['-o', '%s-perf.data' % perf_file_base_name] + cmdline
100
101 if remote_host:
102 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, remote_host)
103 ssh_cmd = ['ssh']
104 ssh_cmd.extend([str(user_at_host), 'cd ~/performance_workspace/grpc/ && %s' % ' '.join(cmdline)])
105 cmdline = ssh_cmd
106
Jan Tattermuschb2758442016-03-28 09:32:20 -0700107 jobspec = jobset.JobSpec(
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700108 cmdline=cmdline,
109 shortname=shortname,
Jan Tattermusch447548b2016-10-17 12:04:56 +0200110 timeout_seconds=5*60, # workers get restarted after each scenario
111 verbose_success=True)
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700112 return QpsWorkerJob(jobspec, language, host_and_port, perf_file_base_name)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700113
114
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700115def create_scenario_jobspec(scenario_json, workers, remote_host=None,
Yuxuan Liac87a462016-11-11 12:05:11 -0800116 bq_result_table=None, server_cpu_load=0):
Jan Tattermuschb2758442016-03-28 09:32:20 -0700117 """Runs one scenario using QPS driver."""
118 # setting QPS_WORKERS env variable here makes sure it works with SSH too.
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700119 cmd = 'QPS_WORKERS="%s" ' % ','.join(workers)
120 if bq_result_table:
121 cmd += 'BQ_RESULT_TABLE="%s" ' % bq_result_table
122 cmd += 'tools/run_tests/performance/run_qps_driver.sh '
123 cmd += '--scenarios_json=%s ' % pipes.quote(json.dumps({'scenarios': [scenario_json]}))
Yuxuan Liac87a462016-11-11 12:05:11 -0800124 cmd += '--scenario_result_file=scenario_result.json '
125 if server_cpu_load != 0:
126 cmd += '--search_param=offered_load --initial_search_value=1000 --targeted_cpu_load=%d --stride=500 --error_tolerance=0.01' % server_cpu_load
Jan Tattermuschb2758442016-03-28 09:32:20 -0700127 if remote_host:
128 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, remote_host)
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700129 cmd = 'ssh %s "cd ~/performance_workspace/grpc/ && "%s' % (user_at_host, pipes.quote(cmd))
Jan Tattermuschb2758442016-03-28 09:32:20 -0700130
131 return jobset.JobSpec(
132 cmdline=[cmd],
Craig Tiller0bda0b32016-03-03 12:51:53 -0800133 shortname='qps_json_driver.%s' % scenario_json['name'],
Yuxuan Liac87a462016-11-11 12:05:11 -0800134 timeout_seconds=12*60,
Craig Tiller0bda0b32016-03-03 12:51:53 -0800135 shell=True,
136 verbose_success=True)
137
138
139def create_quit_jobspec(workers, remote_host=None):
140 """Runs quit using QPS driver."""
141 # setting QPS_WORKERS env variable here makes sure it works with SSH too.
Craig Tiller025972d2016-09-15 09:26:50 -0700142 cmd = 'QPS_WORKERS="%s" bins/opt/qps_json_driver --quit' % ','.join(w.host_and_port for w in workers)
Craig Tiller0bda0b32016-03-03 12:51:53 -0800143 if remote_host:
144 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, remote_host)
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700145 cmd = 'ssh %s "cd ~/performance_workspace/grpc/ && "%s' % (user_at_host, pipes.quote(cmd))
Craig Tiller0bda0b32016-03-03 12:51:53 -0800146
147 return jobset.JobSpec(
148 cmdline=[cmd],
vjpai29089c72016-04-20 12:38:16 -0700149 shortname='qps_json_driver.quit',
Jan Tattermuschb2758442016-03-28 09:32:20 -0700150 timeout_seconds=3*60,
151 shell=True,
152 verbose_success=True)
153
154
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700155def create_netperf_jobspec(server_host='localhost', client_host=None,
156 bq_result_table=None):
157 """Runs netperf benchmark."""
158 cmd = 'NETPERF_SERVER_HOST="%s" ' % server_host
159 if bq_result_table:
160 cmd += 'BQ_RESULT_TABLE="%s" ' % bq_result_table
Jan Tattermuschad17bf72016-05-11 12:41:37 -0700161 if client_host:
162 # If netperf is running remotely, the env variables populated by Jenkins
163 # won't be available on the client, but we need them for uploading results
164 # to BigQuery.
165 jenkins_job_name = os.getenv('JOB_NAME')
166 if jenkins_job_name:
167 cmd += 'JOB_NAME="%s" ' % jenkins_job_name
168 jenkins_build_number = os.getenv('BUILD_NUMBER')
169 if jenkins_build_number:
170 cmd += 'BUILD_NUMBER="%s" ' % jenkins_build_number
171
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700172 cmd += 'tools/run_tests/performance/run_netperf.sh'
173 if client_host:
174 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, client_host)
175 cmd = 'ssh %s "cd ~/performance_workspace/grpc/ && "%s' % (user_at_host, pipes.quote(cmd))
176
177 return jobset.JobSpec(
178 cmdline=[cmd],
179 shortname='netperf',
180 timeout_seconds=60,
181 shell=True,
182 verbose_success=True)
183
184
Jan Tattermuschde874a12016-04-18 09:21:37 -0700185def archive_repo(languages):
Jan Tattermuschb2758442016-03-28 09:32:20 -0700186 """Archives local version of repo including submodules."""
Jan Tattermuschde874a12016-04-18 09:21:37 -0700187 cmdline=['tar', '-cf', '../grpc.tar', '../grpc/']
188 if 'java' in languages:
189 cmdline.append('../grpc-java')
190 if 'go' in languages:
191 cmdline.append('../grpc-go')
192
Jan Tattermuschb2758442016-03-28 09:32:20 -0700193 archive_job = jobset.JobSpec(
Jan Tattermuschde874a12016-04-18 09:21:37 -0700194 cmdline=cmdline,
Jan Tattermuschb2758442016-03-28 09:32:20 -0700195 shortname='archive_repo',
196 timeout_seconds=3*60)
197
198 jobset.message('START', 'Archiving local repository.', do_newline=True)
199 num_failures, _ = jobset.run(
200 [archive_job], newline_on_success=True, maxjobs=1)
201 if num_failures == 0:
202 jobset.message('SUCCESS',
Jan Tattermuschde874a12016-04-18 09:21:37 -0700203 'Archive with local repository created successfully.',
Jan Tattermuschb2758442016-03-28 09:32:20 -0700204 do_newline=True)
205 else:
206 jobset.message('FAILED', 'Failed to archive local repository.',
207 do_newline=True)
208 sys.exit(1)
209
210
Jan Tattermusch14089202016-04-27 17:55:27 -0700211def prepare_remote_hosts(hosts, prepare_local=False):
212 """Prepares remote hosts (and maybe prepare localhost as well)."""
213 prepare_timeout = 5*60
Jan Tattermuschb2758442016-03-28 09:32:20 -0700214 prepare_jobs = []
215 for host in hosts:
216 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, host)
217 prepare_jobs.append(
218 jobset.JobSpec(
219 cmdline=['tools/run_tests/performance/remote_host_prepare.sh'],
220 shortname='remote_host_prepare.%s' % host,
221 environ = {'USER_AT_HOST': user_at_host},
Jan Tattermusch14089202016-04-27 17:55:27 -0700222 timeout_seconds=prepare_timeout))
223 if prepare_local:
224 # Prepare localhost as well
225 prepare_jobs.append(
226 jobset.JobSpec(
227 cmdline=['tools/run_tests/performance/kill_workers.sh'],
228 shortname='local_prepare',
229 timeout_seconds=prepare_timeout))
230 jobset.message('START', 'Preparing hosts.', do_newline=True)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700231 num_failures, _ = jobset.run(
232 prepare_jobs, newline_on_success=True, maxjobs=10)
233 if num_failures == 0:
234 jobset.message('SUCCESS',
Jan Tattermusch14089202016-04-27 17:55:27 -0700235 'Prepare step completed successfully.',
Jan Tattermuschb2758442016-03-28 09:32:20 -0700236 do_newline=True)
237 else:
238 jobset.message('FAILED', 'Failed to prepare remote hosts.',
239 do_newline=True)
240 sys.exit(1)
241
242
Craig Tillerd92d5c52016-04-04 13:49:29 -0700243def build_on_remote_hosts(hosts, languages=scenario_config.LANGUAGES.keys(), build_local=False):
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700244 """Builds performance worker on remote hosts (and maybe also locally)."""
Jan Tattermuschb2758442016-03-28 09:32:20 -0700245 build_timeout = 15*60
246 build_jobs = []
247 for host in hosts:
248 user_at_host = '%s@%s' % (_REMOTE_HOST_USERNAME, host)
249 build_jobs.append(
250 jobset.JobSpec(
Craig Tiller7797e3f2016-04-01 07:41:05 -0700251 cmdline=['tools/run_tests/performance/remote_host_build.sh'] + languages,
Jan Tattermuschb2758442016-03-28 09:32:20 -0700252 shortname='remote_host_build.%s' % host,
253 environ = {'USER_AT_HOST': user_at_host, 'CONFIG': 'opt'},
254 timeout_seconds=build_timeout))
255 if build_local:
256 # Build locally as well
257 build_jobs.append(
258 jobset.JobSpec(
Craig Tiller7797e3f2016-04-01 07:41:05 -0700259 cmdline=['tools/run_tests/performance/build_performance.sh'] + languages,
Jan Tattermuschb2758442016-03-28 09:32:20 -0700260 shortname='local_build',
261 environ = {'CONFIG': 'opt'},
262 timeout_seconds=build_timeout))
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700263 jobset.message('START', 'Building.', do_newline=True)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700264 num_failures, _ = jobset.run(
265 build_jobs, newline_on_success=True, maxjobs=10)
266 if num_failures == 0:
267 jobset.message('SUCCESS',
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700268 'Built successfully.',
Jan Tattermuschb2758442016-03-28 09:32:20 -0700269 do_newline=True)
270 else:
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700271 jobset.message('FAILED', 'Build failed.',
Jan Tattermuschb2758442016-03-28 09:32:20 -0700272 do_newline=True)
273 sys.exit(1)
274
275
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700276def create_qpsworkers(languages, worker_hosts, perf_cmd=None):
Craig Tillerc1b54f22016-09-15 08:57:14 -0700277 """Creates QPS workers (but does not start them)."""
Jan Tattermuschb2758442016-03-28 09:32:20 -0700278 if not worker_hosts:
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700279 # run two workers locally (for each language)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700280 workers=[(None, 10000), (None, 10010)]
281 elif len(worker_hosts) == 1:
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700282 # run two workers on the remote host (for each language)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700283 workers=[(worker_hosts[0], 10000), (worker_hosts[0], 10010)]
284 else:
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700285 # run one worker per each remote host (for each language)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700286 workers=[(worker_host, 10000) for worker_host in worker_hosts]
287
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700288 return [create_qpsworker_job(language,
289 shortname= 'qps_worker_%s_%s' % (language,
290 worker_idx),
291 port=worker[1] + language.worker_port_offset(),
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700292 remote_host=worker[0],
293 perf_cmd=perf_cmd)
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700294 for language in languages
295 for worker_idx, worker in enumerate(workers)]
Jan Tattermuschb2758442016-03-28 09:32:20 -0700296
297
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700298def perf_report_processor_job(worker_host, perf_base_name, output_filename):
299 print('Creating perf report collection job for %s' % worker_host)
300 cmd = ''
301 if worker_host != 'localhost':
302 user_at_host = "%s@%s" % (_REMOTE_HOST_USERNAME, worker_host)
303 cmd = "USER_AT_HOST=%s OUTPUT_FILENAME=%s OUTPUT_DIR=%s PERF_BASE_NAME=%s\
304 tools/run_tests/performance/process_remote_perf_flamegraphs.sh" \
305 % (user_at_host, output_filename, _PERF_REPORT_OUTPUT_DIR, perf_base_name)
306 else:
307 cmd = "OUTPUT_FILENAME=%s OUTPUT_DIR=%s PERF_BASE_NAME=%s\
308 tools/run_tests/performance/process_local_perf_flamegraphs.sh" \
309 % (output_filename, _PERF_REPORT_OUTPUT_DIR, perf_base_name)
310
311 return jobset.JobSpec(cmdline=cmd,
312 timeout_seconds=3*60,
313 shell=True,
314 verbose_success=True,
315 shortname='process perf report')
316
317
Craig Tiller677966a2016-09-26 07:37:28 -0700318Scenario = collections.namedtuple('Scenario', 'jobspec workers name')
Craig Tillerc1b54f22016-09-15 08:57:14 -0700319
320
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700321def create_scenarios(languages, workers_by_lang, remote_host=None, regex='.*',
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700322 category='all', bq_result_table=None,
Yuxuan Liac87a462016-11-11 12:05:11 -0800323 netperf=False, netperf_hosts=[], server_cpu_load=0):
Jan Tattermuschb2758442016-03-28 09:32:20 -0700324 """Create jobspecs for scenarios to run."""
Ken Payson0482c102016-04-19 12:08:34 -0700325 all_workers = [worker
326 for workers in workers_by_lang.values()
327 for worker in workers]
Jan Tattermuschb2758442016-03-28 09:32:20 -0700328 scenarios = []
Craig Tillerc1b54f22016-09-15 08:57:14 -0700329 _NO_WORKERS = []
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700330
331 if netperf:
332 if not netperf_hosts:
333 netperf_server='localhost'
334 netperf_client=None
335 elif len(netperf_hosts) == 1:
336 netperf_server=netperf_hosts[0]
337 netperf_client=netperf_hosts[0]
338 else:
339 netperf_server=netperf_hosts[0]
340 netperf_client=netperf_hosts[1]
Craig Tillerc1b54f22016-09-15 08:57:14 -0700341 scenarios.append(Scenario(
342 create_netperf_jobspec(server_host=netperf_server,
343 client_host=netperf_client,
344 bq_result_table=bq_result_table),
Craig Tiller677966a2016-09-26 07:37:28 -0700345 _NO_WORKERS, 'netperf'))
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700346
Jan Tattermuschb2758442016-03-28 09:32:20 -0700347 for language in languages:
Craig Tiller0bda0b32016-03-03 12:51:53 -0800348 for scenario_json in language.scenarios():
Jan Tattermusch38becc22016-04-14 08:00:35 -0700349 if re.search(args.regex, scenario_json['name']):
Craig Tillerb6df2472016-09-13 09:41:26 -0700350 categories = scenario_json.get('CATEGORIES', ['scalable', 'smoketest'])
351 if category in categories or category == 'all':
Craig Tillerc1b54f22016-09-15 08:57:14 -0700352 workers = workers_by_lang[str(language)][:]
Jan Tattermusch427699b2016-05-05 18:10:14 -0700353 # 'SERVER_LANGUAGE' is an indicator for this script to pick
354 # a server in different language.
355 custom_server_lang = scenario_json.get('SERVER_LANGUAGE', None)
Jan Tattermusch37a907e2016-05-13 13:49:43 -0700356 custom_client_lang = scenario_json.get('CLIENT_LANGUAGE', None)
Jan Tattermusch427699b2016-05-05 18:10:14 -0700357 scenario_json = scenario_config.remove_nonproto_fields(scenario_json)
Jan Tattermusch37a907e2016-05-13 13:49:43 -0700358 if custom_server_lang and custom_client_lang:
359 raise Exception('Cannot set both custom CLIENT_LANGUAGE and SERVER_LANGUAGE'
360 'in the same scenario')
Jan Tattermusch427699b2016-05-05 18:10:14 -0700361 if custom_server_lang:
362 if not workers_by_lang.get(custom_server_lang, []):
siddharthshukla0589e532016-07-07 16:08:01 +0200363 print('Warning: Skipping scenario %s as' % scenario_json['name'])
Jan Tattermusch427699b2016-05-05 18:10:14 -0700364 print('SERVER_LANGUAGE is set to %s yet the language has '
365 'not been selected with -l' % custom_server_lang)
366 continue
367 for idx in range(0, scenario_json['num_servers']):
368 # replace first X workers by workers of a different language
369 workers[idx] = workers_by_lang[custom_server_lang][idx]
Jan Tattermusch37a907e2016-05-13 13:49:43 -0700370 if custom_client_lang:
371 if not workers_by_lang.get(custom_client_lang, []):
siddharthshukla0589e532016-07-07 16:08:01 +0200372 print('Warning: Skipping scenario %s as' % scenario_json['name'])
Jan Tattermusch37a907e2016-05-13 13:49:43 -0700373 print('CLIENT_LANGUAGE is set to %s yet the language has '
374 'not been selected with -l' % custom_client_lang)
375 continue
376 for idx in range(scenario_json['num_servers'], len(workers)):
377 # replace all client workers by workers of a different language,
378 # leave num_server workers as they are server workers.
379 workers[idx] = workers_by_lang[custom_client_lang][idx]
Craig Tillerc1b54f22016-09-15 08:57:14 -0700380 scenario = Scenario(
381 create_scenario_jobspec(scenario_json,
382 [w.host_and_port for w in workers],
383 remote_host=remote_host,
Yuxuan Liac87a462016-11-11 12:05:11 -0800384 bq_result_table=bq_result_table,
385 server_cpu_load=server_cpu_load),
Craig Tiller677966a2016-09-26 07:37:28 -0700386 workers,
387 scenario_json['name'])
Jan Tattermusch427699b2016-05-05 18:10:14 -0700388 scenarios.append(scenario)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700389
Jan Tattermuschb2758442016-03-28 09:32:20 -0700390 return scenarios
391
392
393def finish_qps_workers(jobs):
394 """Waits for given jobs to finish and eventually kills them."""
395 retries = 0
Alexander Polcyn49796672016-10-17 10:01:37 -0700396 num_killed = 0
Jan Tattermuschb2758442016-03-28 09:32:20 -0700397 while any(job.is_running() for job in jobs):
398 for job in qpsworker_jobs:
399 if job.is_running():
siddharthshukla0589e532016-07-07 16:08:01 +0200400 print('QPS worker "%s" is still running.' % job.host_and_port)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700401 if retries > 10:
siddharthshukla0589e532016-07-07 16:08:01 +0200402 print('Killing all QPS workers.')
Jan Tattermuschb2758442016-03-28 09:32:20 -0700403 for job in jobs:
404 job.kill()
Alexander Polcyn49796672016-10-17 10:01:37 -0700405 num_killed += 1
Jan Tattermuschb2758442016-03-28 09:32:20 -0700406 retries += 1
407 time.sleep(3)
siddharthshukla0589e532016-07-07 16:08:01 +0200408 print('All QPS workers finished.')
Alexander Polcyn49796672016-10-17 10:01:37 -0700409 return num_killed
Jan Tattermuschb2758442016-03-28 09:32:20 -0700410
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700411profile_output_files = []
412
413# Collect perf text reports and flamegraphs if perf_cmd was used
414# Note the base names of perf text reports are used when creating and processing
415# perf data. The scenario name uniqifies the output name in the final
416# perf reports directory.
417# Alos, the perf profiles need to be fetched and processed after each scenario
418# in order to avoid clobbering the output files.
419def run_collect_perf_profile_jobs(hosts_and_base_names, scenario_name):
420 perf_report_jobs = []
421 global profile_output_files
422 for host_and_port in hosts_and_base_names:
423 perf_base_name = hosts_and_base_names[host_and_port]
424 output_filename = '%s-%s' % (scenario_name, perf_base_name)
425 # from the base filename, create .svg output filename
426 host = host_and_port.split(':')[0]
427 profile_output_files.append('%s.svg' % output_filename)
428 perf_report_jobs.append(perf_report_processor_job(host, perf_base_name, output_filename))
429
430 jobset.message('START', 'Collecting perf reports from qps workers', do_newline=True)
431 failures, _ = jobset.run(perf_report_jobs, newline_on_success=True, maxjobs=1)
432 jobset.message('END', 'Collecting perf reports from qps workers', do_newline=True)
433 return failures
434
435
Jan Tattermuschb2758442016-03-28 09:32:20 -0700436argp = argparse.ArgumentParser(description='Run performance tests.')
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700437argp.add_argument('-l', '--language',
Craig Tillerd92d5c52016-04-04 13:49:29 -0700438 choices=['all'] + sorted(scenario_config.LANGUAGES.keys()),
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700439 nargs='+',
Jan Tattermusch427699b2016-05-05 18:10:14 -0700440 required=True,
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700441 help='Languages to benchmark.')
Jan Tattermuschb2758442016-03-28 09:32:20 -0700442argp.add_argument('--remote_driver_host',
443 default=None,
444 help='Run QPS driver on given host. By default, QPS driver is run locally.')
445argp.add_argument('--remote_worker_host',
446 nargs='+',
447 default=[],
448 help='Worker hosts where to start QPS workers.')
Craig Tiller677966a2016-09-26 07:37:28 -0700449argp.add_argument('--dry_run',
450 default=False,
451 action='store_const',
452 const=True,
453 help='Just list scenarios to be run, but don\'t run them.')
Jan Tattermusch38becc22016-04-14 08:00:35 -0700454argp.add_argument('-r', '--regex', default='.*', type=str,
455 help='Regex to select scenarios to run.')
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700456argp.add_argument('--bq_result_table', default=None, type=str,
457 help='Bigquery "dataset.table" to upload results to.')
Jan Tattermusch427699b2016-05-05 18:10:14 -0700458argp.add_argument('--category',
Craig Tiller6388da52016-09-07 17:06:29 -0700459 choices=['smoketest','all','scalable','sweep'],
Jan Tattermusch37a907e2016-05-13 13:49:43 -0700460 default='all',
461 help='Select a category of tests to run.')
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700462argp.add_argument('--netperf',
463 default=False,
464 action='store_const',
465 const=True,
466 help='Run netperf benchmark as one of the scenarios.')
Yuxuan Liac87a462016-11-11 12:05:11 -0800467argp.add_argument('--server_cpu_load',
468 default=0, type=int,
469 help='Select a targeted server cpu load to run. 0 means ignore this flag')
Jan Tattermusch88818ae2016-11-18 14:21:33 +0100470argp.add_argument('-x', '--xml_report', default='report.xml', type=str,
471 help='Name of XML report file to generate.')
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700472argp.add_argument('--perf_args',
473 help=('Example usage: "--perf_args=record -F 99 -g". '
474 'Wrap QPS workers in a perf command '
475 'with the arguments to perf specified here. '
476 '".svg" flame graph profiles will be '
477 'created for each Qps Worker on each scenario. '
478 'Files will output to "<repo_root>/perf_reports" '
479 'directory. Output files from running the worker '
480 'under perf are saved in the repo root where its ran. '
481 'Note that the perf "-g" flag is necessary for '
482 'flame graphs generation to work (assuming the binary '
483 'being profiled uses frame pointers, check out '
484 '"--call-graph dwarf" option using libunwind otherwise.) '
485 'Also note that the entire "--perf_args=<arg(s)>" must '
486 'be wrapped in quotes as in the example usage. '
487 'If the "--perg_args" is unspecified, "perf" will '
488 'not be used at all. '
489 'See http://www.brendangregg.com/perf.html '
490 'for more general perf examples.'))
491argp.add_argument('--skip_generate_flamegraphs',
492 default=False,
493 action='store_const',
494 const=True,
495 help=('Turn flame graph generation off. '
496 'May be useful if "perf_args" arguments do not make sense for '
497 'generating flamegraphs (e.g., "--perf_args=stat ...")'))
498
Jan Tattermuschb2758442016-03-28 09:32:20 -0700499args = argp.parse_args()
500
Craig Tillerd92d5c52016-04-04 13:49:29 -0700501languages = set(scenario_config.LANGUAGES[l]
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700502 for l in itertools.chain.from_iterable(
Craig Tillerd92d5c52016-04-04 13:49:29 -0700503 scenario_config.LANGUAGES.iterkeys() if x == 'all' else [x]
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700504 for x in args.language))
505
Jan Tattermusch6d7fa552016-04-14 17:42:54 -0700506
Jan Tattermuschb2758442016-03-28 09:32:20 -0700507# Put together set of remote hosts where to run and build
508remote_hosts = set()
509if args.remote_worker_host:
510 for host in args.remote_worker_host:
511 remote_hosts.add(host)
512if args.remote_driver_host:
513 remote_hosts.add(args.remote_driver_host)
514
Craig Tiller677966a2016-09-26 07:37:28 -0700515if not args.dry_run:
516 if remote_hosts:
517 archive_repo(languages=[str(l) for l in languages])
518 prepare_remote_hosts(remote_hosts, prepare_local=True)
519 else:
520 prepare_remote_hosts([], prepare_local=True)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700521
522build_local = False
523if not args.remote_driver_host:
524 build_local = True
Craig Tiller677966a2016-09-26 07:37:28 -0700525if not args.dry_run:
526 build_on_remote_hosts(remote_hosts, languages=[str(l) for l in languages], build_local=build_local)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700527
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700528perf_cmd = None
529if args.perf_args:
530 # Expect /usr/bin/perf to be installed here, as is usual
531 perf_cmd = ['/usr/bin/perf']
532 perf_cmd.extend(re.split('\s+', args.perf_args))
533
534qpsworker_jobs = create_qpsworkers(languages, args.remote_worker_host, perf_cmd=perf_cmd)
Jan Tattermusch38becc22016-04-14 08:00:35 -0700535
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700536# get list of worker addresses for each language.
Craig Tillerc1b54f22016-09-15 08:57:14 -0700537workers_by_lang = dict([(str(language), []) for language in languages])
Jan Tattermuschbb1a4532016-03-30 18:04:01 -0700538for job in qpsworker_jobs:
Craig Tillerc1b54f22016-09-15 08:57:14 -0700539 workers_by_lang[str(job.language)].append(job)
Jan Tattermuschb2758442016-03-28 09:32:20 -0700540
Craig Tillerc1b54f22016-09-15 08:57:14 -0700541scenarios = create_scenarios(languages,
Craig Tillerd82fccc2016-09-15 09:15:23 -0700542 workers_by_lang=workers_by_lang,
Craig Tillerc1b54f22016-09-15 08:57:14 -0700543 remote_host=args.remote_driver_host,
544 regex=args.regex,
545 category=args.category,
546 bq_result_table=args.bq_result_table,
547 netperf=args.netperf,
Yuxuan Liac87a462016-11-11 12:05:11 -0800548 netperf_hosts=args.remote_worker_host,
549 server_cpu_load=args.server_cpu_load)
Jan Tattermusch4de2c322016-05-10 14:33:07 -0700550
Craig Tillerc1b54f22016-09-15 08:57:14 -0700551if not scenarios:
552 raise Exception('No scenarios to run')
Jan Tattermuschb2758442016-03-28 09:32:20 -0700553
Alex Polcyncac93f62016-10-19 09:27:57 -0700554total_scenario_failures = 0
Alexander Polcyn898a2e92016-10-22 17:41:23 -0700555qps_workers_killed = 0
Jan Tattermusch94d40cb2016-10-24 21:06:40 +0200556merged_resultset = {}
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700557perf_report_failures = 0
558
Craig Tillerc1b54f22016-09-15 08:57:14 -0700559for scenario in scenarios:
Craig Tiller677966a2016-09-26 07:37:28 -0700560 if args.dry_run:
561 print(scenario.name)
562 else:
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700563 scenario_failures = 0
Craig Tiller677966a2016-09-26 07:37:28 -0700564 try:
565 for worker in scenario.workers:
566 worker.start()
Alex Polcynfcf09ea2016-12-06 04:00:05 +0000567 jobs = [scenario.jobspec]
Alex Polcynca5e9242016-12-06 04:21:37 +0000568 if scenario.workers:
Alex Polcynfcf09ea2016-12-06 04:00:05 +0000569 jobs.append(create_quit_jobspec(scenario.workers, remote_host=args.remote_driver_host))
570 scenario_failures, resultset = jobset.run(jobs, newline_on_success=True, maxjobs=1)
Alex Polcyncac93f62016-10-19 09:27:57 -0700571 total_scenario_failures += scenario_failures
Jan Tattermusch94d40cb2016-10-24 21:06:40 +0200572 merged_resultset = dict(itertools.chain(merged_resultset.iteritems(),
573 resultset.iteritems()))
Craig Tiller677966a2016-09-26 07:37:28 -0700574 finally:
Alexander Polcyn898a2e92016-10-22 17:41:23 -0700575 # Consider qps workers that need to be killed as failures
576 qps_workers_killed += finish_qps_workers(scenario.workers)
Alexander Polcyn49796672016-10-17 10:01:37 -0700577
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700578 if perf_cmd and scenario_failures == 0 and not args.skip_generate_flamegraphs:
579 workers_and_base_names = {}
580 for worker in scenario.workers:
581 if not worker.perf_file_base_name:
582 raise Exception('using perf buf perf report filename is unspecified')
583 workers_and_base_names[worker.host_and_port] = worker.perf_file_base_name
584 perf_report_failures += run_collect_perf_profile_jobs(workers_and_base_names, scenario.name)
585
586
587# Still write the index.html even if some scenarios failed.
588# 'profile_output_files' will only have names for scenarios that passed
589if perf_cmd and not args.skip_generate_flamegraphs:
590 # write the index fil to the output dir, with all profiles from all scenarios/workers
591 report_utils.render_perf_profiling_results('%s/index.html' % _PERF_REPORT_OUTPUT_DIR, profile_output_files)
592
593if total_scenario_failures > 0 or qps_workers_killed > 0:
594 print('%s scenarios failed and %s qps worker jobs killed' % (total_scenario_failures, qps_workers_killed))
595 sys.exit(1)
Jan Tattermusch94d40cb2016-10-24 21:06:40 +0200596
Jan Tattermusch88818ae2016-11-18 14:21:33 +0100597report_utils.render_junit_xml_report(merged_resultset, args.xml_report,
Jan Tattermusch94d40cb2016-10-24 21:06:40 +0200598 suite_name='benchmarks')
Alexander Polcyn9f08d112016-10-24 12:25:02 -0700599if perf_report_failures > 0:
600 print('%s perf profile collection jobs failed' % perf_report_failures)
Alex Polcyncac93f62016-10-19 09:27:57 -0700601 sys.exit(1)