mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
153 lines
5.1 KiB
Python
Executable File
153 lines
5.1 KiB
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import collections
|
|
import csv
|
|
import os
|
|
import sys
|
|
|
|
doc_template = """
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
@font-face {{
|
|
font-family:'Yandex Sans Display Web';
|
|
src:url(https://yastatic.net/adv-www/_/H63jN0veW07XQUIA2317lr9UIm8.eot);
|
|
src:url(https://yastatic.net/adv-www/_/H63jN0veW07XQUIA2317lr9UIm8.eot?#iefix) format('embedded-opentype'),
|
|
url(https://yastatic.net/adv-www/_/sUYVCPUAQE7ExrvMS7FoISoO83s.woff2) format('woff2'),
|
|
url(https://yastatic.net/adv-www/_/v2Sve_obH3rKm6rKrtSQpf-eB7U.woff) format('woff'),
|
|
url(https://yastatic.net/adv-www/_/PzD8hWLMunow5i3RfJ6WQJAL7aI.ttf) format('truetype'),
|
|
url(https://yastatic.net/adv-www/_/lF_KG5g4tpQNlYIgA0e77fBSZ5s.svg#YandexSansDisplayWeb-Regular) format('svg');
|
|
font-weight:400;
|
|
font-style:normal;
|
|
font-stretch:normal
|
|
}}
|
|
|
|
body {{ font-family: "Yandex Sans Display Web", Arial, sans-serif; background: #EEE; }}
|
|
h1 {{ margin-left: 10px; }}
|
|
th, td {{ border: 0; padding: 5px 10px 5px 10px; text-align: left; vertical-align: top; line-height: 1.5; background-color: #FFF;
|
|
td {{ white-space: pre; font-family: Monospace, Courier New; }}
|
|
border: 0; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 25px -5px rgba(0, 0, 0, 0.1); }}
|
|
a {{ color: #06F; text-decoration: none; }}
|
|
a:hover, a:active {{ color: #F40; text-decoration: underline; }}
|
|
table {{ border: 0; }}
|
|
.main {{ margin-left: 10%; }}
|
|
p.links a {{ padding: 5px; margin: 3px; background: #FFF; line-height: 2; white-space: nowrap; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 25px -5px rgba(0, 0, 0, 0.1); }}
|
|
.cancela,.cancela:link,.cancela:visited,.cancela:hover,.cancela:focus,.cancela:active{{
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}}
|
|
tr:nth-child(odd) td {{filter: brightness(95%);}}
|
|
</style>
|
|
<title>{header}</title>
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
|
|
<h1>{header}</h1>
|
|
{test_part}
|
|
<p class="links">
|
|
<a href="{raw_log_url}">{raw_log_name}</a>
|
|
<a href="{branch_url}">{branch_name}</a>
|
|
<a href="{commit_url}">Commit</a>
|
|
{additional_urls}
|
|
<a href="output.7z">Test output</a>
|
|
<a href="{task_url}">Task (private network)</a>
|
|
</p>
|
|
</body>
|
|
</html>
|
|
"""
|
|
|
|
table_template = """
|
|
<h2 id="{anchor}"><a class="cancela" href="#{anchor}">{caption}</a></h2>
|
|
<table>
|
|
{header}
|
|
{rows}
|
|
</table>
|
|
"""
|
|
|
|
table_anchor = 0
|
|
row_anchor = 0
|
|
|
|
def nextTableAnchor():
|
|
global table_anchor
|
|
table_anchor += 1
|
|
return str(table_anchor)
|
|
|
|
def nextRowAnchor():
|
|
global row_anchor
|
|
global table_anchor
|
|
row_anchor += 1
|
|
return str(table_anchor) + "." + str(row_anchor)
|
|
|
|
def tr(x):
|
|
a = nextRowAnchor()
|
|
return '<tr onclick="location.href=\'#{a}\'" id={a}>{x}</tr>'.format(a=a, x=str(x))
|
|
|
|
def td(x):
|
|
return '<td>' + str(x) + '</td>'
|
|
|
|
def th(x):
|
|
return '<th>' + str(x) + '</th>'
|
|
|
|
def table_row(r):
|
|
return tr(''.join([td(f) for f in r]))
|
|
|
|
def table_header(r):
|
|
return tr(''.join([th(f) for f in r]))
|
|
|
|
def tsv_rows(n):
|
|
result = ''
|
|
with open(n, encoding='utf-8') as fd:
|
|
for row in csv.reader(fd, delimiter="\t", quotechar='"'):
|
|
result += table_row(row)
|
|
return result
|
|
|
|
params = collections.defaultdict(str)
|
|
params['header'] = "ClickHouse Performance Comparison"
|
|
params['test_part'] = (
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Tested commits',
|
|
header = table_header(['Old', 'New']),
|
|
rows = table_row([open('left-commit.txt').read(), open('right-commit.txt').read()])
|
|
) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Changes in performance',
|
|
header = table_header(['Old, s', 'New, s',
|
|
'Relative difference (new - old)/old',
|
|
'Randomization distribution quantiles [5%, 50%, 95%]',
|
|
'Test', 'Query']),
|
|
rows = tsv_rows('changed-perf.tsv')) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Slow on client',
|
|
header = table_header(['Client time, s', 'Server time, s', 'Ratio', 'Query']),
|
|
rows = tsv_rows('slow-on-client.tsv')) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Unstable queries',
|
|
header = table_header(['Old, s', 'New, s',
|
|
'Relative difference (new - old)/old',
|
|
'Randomization distribution quantiles [5%, 50%, 95%]',
|
|
'Test', 'Query']),
|
|
rows = tsv_rows('unstable-queries.tsv')) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Run errors',
|
|
header = table_header(['A', 'B']),
|
|
rows = tsv_rows('run-errors.log')) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Tests with most unstable queries',
|
|
header = table_header(['Test', 'Unstable', 'Changed perf', 'Total']),
|
|
rows = tsv_rows('bad-tests.tsv')) +
|
|
table_template.format(
|
|
anchor = nextTableAnchor(),
|
|
caption = 'Tests with most unstable queries',
|
|
header = table_header(['Test', 'Wall clock time, s', 'Client time, s',
|
|
'Number of queries', 'Wall clock time per all runs of a query, s']),
|
|
rows = tsv_rows('test-times.tsv'))
|
|
)
|
|
print(doc_template.format_map(params))
|