mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Merge pull request #11971 from ClickHouse/perf-test-questdb
Added performance test to resemble "questionable" benchmark
This commit is contained in:
commit
b87e9f6e1d
@ -1,5 +1,3 @@
|
||||
<test>
|
||||
|
||||
<query>SELECT sum(number) FROM (select number from system.numbers_mt limit 1000000000)</query>
|
||||
|
||||
</test>
|
||||
|
@ -1,7 +1,4 @@
|
||||
<test>
|
||||
|
||||
|
||||
|
||||
<preconditions>
|
||||
<table_exists>hits_10m_single</table_exists>
|
||||
</preconditions>
|
||||
|
33
tests/performance/questdb_sum_float32.xml
Normal file
33
tests/performance/questdb_sum_float32.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<test>
|
||||
<settings>
|
||||
<max_threads>4</max_threads>
|
||||
<max_memory_usage>20G</max_memory_usage>
|
||||
<use_uncompressed_cache>1</use_uncompressed_cache>
|
||||
<merge_tree_max_rows_to_use_cache>2000000000</merge_tree_max_rows_to_use_cache>
|
||||
<merge_tree_max_bytes_to_use_cache>10G</merge_tree_max_bytes_to_use_cache>
|
||||
</settings>
|
||||
|
||||
<substitutions>
|
||||
<substitution>
|
||||
<name>engine</name>
|
||||
<values>
|
||||
<value>Memory</value>
|
||||
<value>MergeTree ORDER BY tuple()</value>
|
||||
</values>
|
||||
</substitution>
|
||||
<substitution>
|
||||
<name>type</name>
|
||||
<values>
|
||||
<value>Float32</value>
|
||||
<value>Float32 NULL</value>
|
||||
</values>
|
||||
</substitution>
|
||||
</substitutions>
|
||||
|
||||
<create_query>CREATE TABLE `zz_{type}_{engine}` (x {type}) ENGINE {engine}</create_query>
|
||||
<fill_query>INSERT INTO `zz_{type}_{engine}` SELECT rand() FROM numbers(1000000000)</fill_query>
|
||||
|
||||
<query>SELECT sum(x) FROM `zz_{type}_{engine}`</query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS `zz_{type}_{engine}`</drop_query>
|
||||
</test>
|
33
tests/performance/questdb_sum_float64.xml
Normal file
33
tests/performance/questdb_sum_float64.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<test>
|
||||
<settings>
|
||||
<max_threads>4</max_threads>
|
||||
<max_memory_usage>20G</max_memory_usage>
|
||||
<use_uncompressed_cache>1</use_uncompressed_cache>
|
||||
<merge_tree_max_rows_to_use_cache>2000000000</merge_tree_max_rows_to_use_cache>
|
||||
<merge_tree_max_bytes_to_use_cache>10G</merge_tree_max_bytes_to_use_cache>
|
||||
</settings>
|
||||
|
||||
<substitutions>
|
||||
<substitution>
|
||||
<name>engine</name>
|
||||
<values>
|
||||
<value>Memory</value>
|
||||
<value>MergeTree ORDER BY tuple()</value>
|
||||
</values>
|
||||
</substitution>
|
||||
<substitution>
|
||||
<name>type</name>
|
||||
<values>
|
||||
<value>Float64</value>
|
||||
<value>Float64 NULL</value>
|
||||
</values>
|
||||
</substitution>
|
||||
</substitutions>
|
||||
|
||||
<create_query>CREATE TABLE `zz_{type}_{engine}` (x {type}) ENGINE {engine}</create_query>
|
||||
<fill_query>INSERT INTO `zz_{type}_{engine}` SELECT rand() FROM numbers(500000000)</fill_query>
|
||||
|
||||
<query>SELECT sum(x) FROM `zz_{type}_{engine}`</query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS `zz_{type}_{engine}`</drop_query>
|
||||
</test>
|
33
tests/performance/questdb_sum_int32.xml
Normal file
33
tests/performance/questdb_sum_int32.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<test>
|
||||
<settings>
|
||||
<max_threads>4</max_threads>
|
||||
<max_memory_usage>20G</max_memory_usage>
|
||||
<use_uncompressed_cache>1</use_uncompressed_cache>
|
||||
<merge_tree_max_rows_to_use_cache>2000000000</merge_tree_max_rows_to_use_cache>
|
||||
<merge_tree_max_bytes_to_use_cache>10G</merge_tree_max_bytes_to_use_cache>
|
||||
</settings>
|
||||
|
||||
<substitutions>
|
||||
<substitution>
|
||||
<name>engine</name>
|
||||
<values>
|
||||
<value>Memory</value>
|
||||
<value>MergeTree ORDER BY tuple()</value>
|
||||
</values>
|
||||
</substitution>
|
||||
<substitution>
|
||||
<name>type</name>
|
||||
<values>
|
||||
<value>Int32</value>
|
||||
<value>Int32 NULL</value>
|
||||
</values>
|
||||
</substitution>
|
||||
</substitutions>
|
||||
|
||||
<create_query>CREATE TABLE `zz_{type}_{engine}` (x {type}) ENGINE {engine}</create_query>
|
||||
<fill_query>INSERT INTO `zz_{type}_{engine}` SELECT rand() FROM numbers(1000000000)</fill_query>
|
||||
|
||||
<query>SELECT sum(x) FROM `zz_{type}_{engine}`</query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS `zz_{type}_{engine}`</drop_query>
|
||||
</test>
|
@ -1,8 +1,4 @@
|
||||
<test>
|
||||
|
||||
|
||||
|
||||
|
||||
<settings>
|
||||
<max_threads>1</max_threads>
|
||||
</settings>
|
||||
|
Loading…
Reference in New Issue
Block a user