mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
4e6a2b38d3
+ skip_unavailable_shards
72 lines
1.9 KiB
Python
72 lines
1.9 KiB
Python
import pytest
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
from helpers.client import QueryRuntimeException
|
|
|
|
cluster = ClickHouseCluster(__file__)
|
|
|
|
node1 = cluster.add_instance("node1", main_configs=["configs/remote_servers.xml"])
|
|
node2 = cluster.add_instance("node2", main_configs=["configs/remote_servers.xml"])
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def start_cluster():
|
|
try:
|
|
cluster.start()
|
|
yield cluster
|
|
finally:
|
|
cluster.shutdown()
|
|
|
|
|
|
def test_cluster(start_cluster):
|
|
assert (
|
|
node1.query(
|
|
"SELECT hostName() FROM clusterAllReplicas('one_shard_two_nodes', system.one)"
|
|
)
|
|
== "node1\nnode2\n"
|
|
)
|
|
assert (
|
|
node1.query(
|
|
"SELECT hostName() FROM cluster('one_shard_two_nodes', system.one)"
|
|
)
|
|
== "node1\n"
|
|
)
|
|
assert (
|
|
node2.query(
|
|
"SELECT hostName() FROM cluster('one_shard_two_nodes', system.one)"
|
|
)
|
|
== "node2\n"
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cluster",
|
|
[
|
|
pytest.param("one_shard_three_nodes"),
|
|
pytest.param("two_shards_three_nodes"),
|
|
]
|
|
)
|
|
def test_skip_unavailable_replica(start_cluster, cluster):
|
|
assert (
|
|
node1.query(
|
|
f"SELECT hostName() FROM clusterAllReplicas('{cluster}', system.one) settings skip_unavailable_shards=1"
|
|
)
|
|
== "node1\nnode2\n"
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cluster",
|
|
[
|
|
pytest.param("one_shard_three_nodes"),
|
|
pytest.param("two_shards_three_nodes"),
|
|
]
|
|
)
|
|
def test_error_on_unavailable_replica(start_cluster, cluster):
|
|
# clusterAllReplicas() consider each replica as shard
|
|
# so when skip_unavailable_shards=0 - any unavailable replica should lead to an error
|
|
with pytest.raises(QueryRuntimeException):
|
|
node1.query(
|
|
f"SELECT hostName() FROM clusterAllReplicas('{cluster}', system.one) settings skip_unavailable_shards=0"
|
|
)
|