mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
63 lines
1.3 KiB
Python
63 lines
1.3 KiB
Python
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster, CLICKHOUSE_CI_MIN_TESTED_VERSION
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
node1 = cluster.add_instance("node1", with_zookeeper=False, use_old_analyzer=True)
|
|
node2 = cluster.add_instance(
|
|
"node2",
|
|
with_zookeeper=False,
|
|
image="clickhouse/clickhouse-server",
|
|
tag=CLICKHOUSE_CI_MIN_TESTED_VERSION,
|
|
stay_alive=True,
|
|
with_installed_binary=True,
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def start_cluster():
|
|
try:
|
|
cluster.start()
|
|
yield cluster
|
|
|
|
finally:
|
|
cluster.shutdown()
|
|
|
|
|
|
def test_cte_distributed(start_cluster):
|
|
node2.query(
|
|
"""
|
|
WITH
|
|
quantile(0.05)(cnt) as p05,
|
|
quantile(0.95)(cnt) as p95,
|
|
p95 - p05 as inter_percentile_range
|
|
SELECT
|
|
sum(cnt) as total_requests,
|
|
count() as data_points,
|
|
inter_percentile_range
|
|
FROM (
|
|
SELECT
|
|
count() as cnt
|
|
FROM remote('node{1,2}', numbers(10))
|
|
GROUP BY number
|
|
)"""
|
|
)
|
|
|
|
node1.query(
|
|
"""
|
|
WITH
|
|
quantile(0.05)(cnt) as p05,
|
|
quantile(0.95)(cnt) as p95,
|
|
p95 - p05 as inter_percentile_range
|
|
SELECT
|
|
sum(cnt) as total_requests,
|
|
count() as data_points,
|
|
inter_percentile_range
|
|
FROM (
|
|
SELECT
|
|
count() as cnt
|
|
FROM remote('node{1,2}', numbers(10))
|
|
GROUP BY number
|
|
)"""
|
|
)
|