2019-12-26 17:35:41 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2020-01-21 18:15:25 +00:00
|
|
|
import os
|
2020-01-16 14:29:30 +00:00
|
|
|
import sys
|
2019-12-26 17:35:41 +00:00
|
|
|
import itertools
|
|
|
|
import clickhouse_driver
|
|
|
|
import xml.etree.ElementTree as et
|
|
|
|
import argparse
|
|
|
|
import pprint
|
2020-01-16 19:39:07 +00:00
|
|
|
import time
|
|
|
|
import traceback
|
2019-12-26 17:35:41 +00:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='Run performance test.')
|
2020-01-10 14:06:07 +00:00
|
|
|
# Explicitly decode files as UTF-8 because sometimes we have Russian characters in queries, and LANG=C is set.
|
|
|
|
parser.add_argument('file', metavar='FILE', type=argparse.FileType('r', encoding='utf-8'), nargs=1, help='test description file')
|
2020-01-21 18:15:25 +00:00
|
|
|
parser.add_argument('--host', nargs='*', default=['127.0.0.1', '127.0.0.1'])
|
|
|
|
parser.add_argument('--port', nargs='*', default=[9001, 9002])
|
|
|
|
parser.add_argument('--runs', type=int, default=int(os.environ.get('CHPC_RUNS', 7)))
|
2019-12-26 17:35:41 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
tree = et.parse(args.file[0])
|
|
|
|
root = tree.getroot()
|
|
|
|
|
|
|
|
# Check main metric
|
2019-12-26 19:16:36 +00:00
|
|
|
main_metric_element = root.find('main_metric/*')
|
2019-12-26 21:33:10 +00:00
|
|
|
if main_metric_element is not None and main_metric_element.tag != 'min_time':
|
|
|
|
raise Exception('Only the min_time main metric is supported. This test uses \'{}\''.format(main_metric_element.tag))
|
|
|
|
|
|
|
|
# FIXME another way to detect infinite tests. They should have an appropriate main_metric but sometimes they don't.
|
|
|
|
infinite_sign = root.find('.//average_speed_not_changing_for_ms')
|
|
|
|
if infinite_sign is not None:
|
|
|
|
raise Exception('Looks like the test is infinite (sign 1)')
|
2019-12-26 17:35:41 +00:00
|
|
|
|
|
|
|
# Open connections
|
2020-01-21 18:15:25 +00:00
|
|
|
servers = [{'host': host, 'port': port} for (host, port) in zip(args.host, args.port)]
|
2019-12-26 17:35:41 +00:00
|
|
|
connections = [clickhouse_driver.Client(**server) for server in servers]
|
|
|
|
|
|
|
|
# Check tables that should exist
|
|
|
|
tables = [e.text for e in root.findall('preconditions/table_exists')]
|
2019-12-26 21:33:10 +00:00
|
|
|
for t in tables:
|
2019-12-26 17:35:41 +00:00
|
|
|
for c in connections:
|
2020-01-14 19:05:58 +00:00
|
|
|
res = c.execute("show create table {}".format(t))
|
2019-12-26 17:35:41 +00:00
|
|
|
|
2019-12-26 19:16:36 +00:00
|
|
|
# Apply settings
|
|
|
|
settings = root.findall('settings/*')
|
|
|
|
for c in connections:
|
|
|
|
for s in settings:
|
|
|
|
c.execute("set {} = '{}'".format(s.tag, s.text))
|
|
|
|
|
2019-12-26 17:35:41 +00:00
|
|
|
# Process substitutions
|
|
|
|
subst_elems = root.findall('substitutions/substitution')
|
|
|
|
|
|
|
|
parameter_keys = [] # ['table', 'limit' ]
|
|
|
|
parameter_value_arrays = [] # [['hits_100m', 'hits_10m'], ['1', '10']]
|
|
|
|
parameter_combinations = [] # [{table: hits_100m, limit: 1}, ...]
|
|
|
|
for se in subst_elems:
|
|
|
|
parameter_keys.append(se.find('name').text)
|
|
|
|
parameter_value_arrays.append([v.text for v in se.findall('values/value')])
|
|
|
|
parameter_combinations = [dict(zip(parameter_keys, parameter_combination)) for parameter_combination in itertools.product(*parameter_value_arrays)]
|
|
|
|
|
|
|
|
def substitute_parameters(query_templates, parameter_combinations):
|
|
|
|
return list(set([template.format(**parameters) for template, parameters in itertools.product(query_templates, parameter_combinations)]))
|
|
|
|
|
|
|
|
# Run drop queries, ignoring errors
|
|
|
|
drop_query_templates = [q.text for q in root.findall('drop_query')]
|
|
|
|
drop_queries = substitute_parameters(drop_query_templates, parameter_combinations)
|
|
|
|
for c in connections:
|
|
|
|
for q in drop_queries:
|
|
|
|
try:
|
|
|
|
c.execute(q)
|
|
|
|
except:
|
2020-01-16 19:39:07 +00:00
|
|
|
traceback.print_exc()
|
|
|
|
pass
|
2019-12-26 17:35:41 +00:00
|
|
|
|
|
|
|
# Run create queries
|
|
|
|
create_query_templates = [q.text for q in root.findall('create_query')]
|
|
|
|
create_queries = substitute_parameters(create_query_templates, parameter_combinations)
|
|
|
|
for c in connections:
|
|
|
|
for q in create_queries:
|
|
|
|
c.execute(q)
|
|
|
|
|
|
|
|
# Run fill queries
|
|
|
|
fill_query_templates = [q.text for q in root.findall('fill_query')]
|
|
|
|
fill_queries = substitute_parameters(fill_query_templates, parameter_combinations)
|
|
|
|
for c in connections:
|
|
|
|
for q in fill_queries:
|
|
|
|
c.execute(q)
|
|
|
|
|
|
|
|
# Run test queries
|
2019-12-26 21:33:10 +00:00
|
|
|
def tsv_escape(s):
|
|
|
|
return s.replace('\\', '\\\\').replace('\t', '\\t').replace('\n', '\\n').replace('\r','')
|
|
|
|
|
2019-12-26 17:35:41 +00:00
|
|
|
test_query_templates = [q.text for q in root.findall('query')]
|
|
|
|
test_queries = substitute_parameters(test_query_templates, parameter_combinations)
|
|
|
|
|
|
|
|
for q in test_queries:
|
2020-02-11 15:01:16 +00:00
|
|
|
# Warmup: run once on both servers. Helps to bring the data into memory,
|
|
|
|
# precompile the queries, etc.
|
|
|
|
for c in connections:
|
|
|
|
c.execute(q)
|
|
|
|
|
|
|
|
# Now, perform measured runs.
|
2020-01-16 19:39:07 +00:00
|
|
|
# Track the time spent by the client to process this query, so that we can notice
|
|
|
|
# out the queries that take long to process on the client side, e.g. by sending
|
|
|
|
# excessive data.
|
|
|
|
start_seconds = time.perf_counter()
|
|
|
|
server_seconds = 0
|
2020-01-21 18:15:25 +00:00
|
|
|
for run in range(0, args.runs):
|
2019-12-26 17:35:41 +00:00
|
|
|
for conn_index, c in enumerate(connections):
|
|
|
|
res = c.execute(q)
|
2020-01-16 19:39:07 +00:00
|
|
|
print('query\t' + tsv_escape(q) + '\t' + str(run) + '\t' + str(conn_index) + '\t' + str(c.last_query.elapsed))
|
|
|
|
server_seconds += c.last_query.elapsed
|
|
|
|
|
|
|
|
client_seconds = time.perf_counter() - start_seconds
|
|
|
|
print('client-time\t{}\t{}\t{}'.format(tsv_escape(q), client_seconds, server_seconds))
|
2019-12-26 17:35:41 +00:00
|
|
|
|
|
|
|
# Run drop queries
|
|
|
|
drop_query_templates = [q.text for q in root.findall('drop_query')]
|
|
|
|
drop_queries = substitute_parameters(drop_query_templates, parameter_combinations)
|
|
|
|
for c in connections:
|
|
|
|
for q in drop_queries:
|
|
|
|
c.execute(q)
|