Skip to content

Commit

Permalink
Added performance test #3406
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-milovidov committed Nov 22, 2018
1 parent 89e3c5c commit 2a22517
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions dbms/tests/performance/uniq/uniq.xml
@@ -0,0 +1,65 @@
<test>
<name>uniq</name>
<type>once</type>

<preconditions>
<table_exists>hits_100m_single</table_exists>
<ram_size>30000000000</ram_size>
</preconditions>

<stop_conditions>
<all_of>
<total_time_ms>10000</total_time_ms>
</all_of>
<any_of>
<average_speed_not_changing_for_ms>5000</average_speed_not_changing_for_ms>
<total_time_ms>20000</total_time_ms>
</any_of>
</stop_conditions>

<main_metric>
<max_rows_per_second/>
</main_metric>

<settings>
<max_memory_usage>20000000000</max_memory_usage>
</settings>

<substitutions>
<substitution>
<name>key</name>
<values>
<value>1</value>
<value>SearchEngineID</value>
<value>RegionID</value>
<value>SearchPhrase</value>
<value>ClientIP</value>
</values>
</substitution>
<substitution>
<name>func</name>
<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>uniqCombined(19)</value>
<value>uniqCombined(20)</value>
<value>uniqUpTo(3)</value>
<value>uniqUpTo(5)</value>
<value>uniqUpTo(10)</value>
<value>uniqUpTo(25)</value>
<value>uniqUpTo(100)</value>
</values>
</substitution>
</substitutions>

<query>SELECT {key} AS k, {func}(UserID) FROM hits_100m_single GROUP BY k</query>
</test>

0 comments on commit 2a22517

Please sign in to comment.