update perf tests
sed -i s'/^<test.*$/<test>/g' tests/performance/*.xml
WITH ceil(max(q[3]), 1) AS h
SELECT concat('sed -i s\'/^<test.*$/<test max_ignored_relative_change="', toString(h), '">/g\' tests/performance/', test, '.xml') AS s
FROM
(
SELECT
test,
query_index,
count(*),
min(event_time),
max(event_time) AS t,
arrayMap(x -> floor(x, 3), quantiles(0, 0.5, 0.95, 1)(stat_threshold)) AS q,
median(stat_threshold) AS m
FROM perftest.query_metrics_v2
WHERE ((pr_number != 0) AND (event_date > '2021-01-01')) AND (metric = 'client_time') AND (abs(diff) < 0.05) AND (old_value > 0.1)
GROUP BY
test,
query_index,
query_display_name
HAVING (t > '2021-01-01 00:00:00') AND ((q[3]) > 0.1)
ORDER BY test DESC
)
GROUP BY test
ORDER BY h DESC
FORMAT PrettySpace
2021-02-02 14:21:43 +00:00
|
|
|
<test>
|
2018-11-22 23:45:16 +00:00
|
|
|
|
|
|
|
<preconditions>
|
|
|
|
<table_exists>hits_100m_single</table_exists>
|
|
|
|
<ram_size>30000000000</ram_size>
|
|
|
|
</preconditions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<settings>
|
2019-02-12 09:13:31 +00:00
|
|
|
<max_memory_usage>30000000000</max_memory_usage>
|
2018-11-22 23:45:16 +00:00
|
|
|
</settings>
|
|
|
|
|
|
|
|
<substitutions>
|
|
|
|
<substitution>
|
2019-07-27 21:17:44 +00:00
|
|
|
<name>key</name>
|
2018-11-22 23:45:16 +00:00
|
|
|
<values>
|
2020-04-23 20:18:46 +00:00
|
|
|
<!--
|
|
|
|
1 as a key doesn't make much sense - the queries are either
|
|
|
|
too long in case of uniqExact or too short in case of limited
|
|
|
|
uniq, so the result is drowned by the noise.
|
|
|
|
<value>1</value>
|
|
|
|
-->
|
2018-11-22 23:45:16 +00:00
|
|
|
<value>SearchEngineID</value>
|
|
|
|
<value>RegionID</value>
|
|
|
|
<value>SearchPhrase</value>
|
|
|
|
<value>ClientIP</value>
|
|
|
|
</values>
|
|
|
|
</substitution>
|
|
|
|
<substitution>
|
2019-07-27 21:17:44 +00:00
|
|
|
<name>func</name>
|
2018-11-22 23:45:16 +00:00
|
|
|
<values>
|
|
|
|
<value>sum</value>
|
|
|
|
<value>uniq</value>
|
|
|
|
<value>uniqExact</value>
|
|
|
|
<value>uniqHLL12</value>
|
|
|
|
<value>uniqCombined(12)</value>
|
|
|
|
<value>uniqCombined(13)</value>
|
|
|
|
<value>uniqCombined(14)</value>
|
|
|
|
<value>uniqCombined(15)</value>
|
|
|
|
<value>uniqCombined(16)</value>
|
|
|
|
<value>uniqCombined(17)</value>
|
|
|
|
<value>uniqCombined(18)</value>
|
|
|
|
<value>uniqUpTo(3)</value>
|
|
|
|
<value>uniqUpTo(5)</value>
|
|
|
|
<value>uniqUpTo(10)</value>
|
|
|
|
<value>uniqUpTo(25)</value>
|
|
|
|
<value>uniqUpTo(100)</value>
|
|
|
|
</values>
|
|
|
|
</substitution>
|
|
|
|
</substitutions>
|
|
|
|
|
2020-01-16 19:39:07 +00:00
|
|
|
<query>SELECT {key} AS k, {func}(UserID) FROM hits_100m_single GROUP BY k FORMAT Null</query>
|
2018-11-22 23:45:16 +00:00
|
|
|
</test>
|