mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
Add retries to rests test_async_query_sending/test_async_connect
This commit is contained in:
parent
bb0375d970
commit
4fb12f8703
@ -133,7 +133,7 @@ def check_if_query_sending_was_suspended():
|
||||
"SELECT value FROM system.events WHERE event='SuspendSendingQueryToShard'"
|
||||
)
|
||||
|
||||
assert int(result) >= 1
|
||||
return len(result) != 0 and int(result) >= 1
|
||||
|
||||
|
||||
def check_if_query_sending_was_not_suspended():
|
||||
@ -380,11 +380,19 @@ def test_async_connect(started_cluster):
|
||||
# Restart server to reset connection pool state
|
||||
NODES["node"].restart_clickhouse()
|
||||
|
||||
NODES["node"].query(
|
||||
"SELECT hostName(), id FROM distributed_connect ORDER BY id LIMIT 1 SETTINGS prefer_localhost_replica = 0, connect_timeout_with_failover_ms=5000, async_query_sending_for_remote=1, max_threads=1, max_distributed_connections=1"
|
||||
)
|
||||
check_changing_replica_events(2)
|
||||
check_if_query_sending_was_suspended()
|
||||
attempt = 0
|
||||
while attempt < 1000:
|
||||
NODES["node"].query(
|
||||
"SELECT hostName(), id FROM distributed_connect ORDER BY id LIMIT 1 SETTINGS prefer_localhost_replica = 0, connect_timeout_with_failover_ms=5000, async_query_sending_for_remote=1, max_threads=1, max_distributed_connections=1"
|
||||
)
|
||||
|
||||
check_changing_replica_events(2)
|
||||
if check_if_query_sending_was_suspended():
|
||||
break
|
||||
|
||||
attempt += 1
|
||||
|
||||
assert attempt < 1000
|
||||
|
||||
NODES["node"].query("DROP TABLE distributed_connect")
|
||||
|
||||
@ -418,10 +426,17 @@ def test_async_query_sending(started_cluster):
|
||||
)
|
||||
check_if_query_sending_was_not_suspended()
|
||||
|
||||
NODES["node"].query(
|
||||
"SELECT hostName(), id FROM distributed_query_sending ORDER BY id LIMIT 1 SETTINGS"
|
||||
" prefer_localhost_replica = 0, async_query_sending_for_remote=1, max_threads = 1, max_distributed_connections=1"
|
||||
)
|
||||
check_if_query_sending_was_suspended()
|
||||
attempt = 0
|
||||
while attempt < 1000:
|
||||
NODES["node"].query(
|
||||
"SELECT hostName(), id FROM distributed_query_sending ORDER BY id LIMIT 1 SETTINGS"
|
||||
" prefer_localhost_replica = 0, async_query_sending_for_remote=1, max_threads = 1, max_distributed_connections=1"
|
||||
)
|
||||
|
||||
if check_if_query_sending_was_suspended():
|
||||
break
|
||||
|
||||
attempt += 1
|
||||
|
||||
assert attempt < 1000
|
||||
NODES["node"].query("DROP TABLE distributed_query_sending")
|
||||
|
Loading…
Reference in New Issue
Block a user