2022-04-29 13:57:16 +00:00
import pytest
from helpers . cluster import ClickHouseCluster
2022-05-20 12:52:50 +00:00
import threading
import time
2022-05-25 16:26:56 +00:00
from helpers . client import QueryRuntimeException
2022-05-20 12:52:50 +00:00
2022-04-29 13:57:16 +00:00
cluster = ClickHouseCluster ( __file__ )
2022-05-17 16:35:40 +00:00
node1 = cluster . add_instance (
" node1 " ,
main_configs = [ " configs/config_default.xml " ] ,
user_configs = [ " configs/users.xml " ] ,
)
node2 = cluster . add_instance (
" node2 " ,
2022-05-20 12:52:50 +00:00
main_configs = [ " configs/config_defined_50.xml " ] ,
user_configs = [ " configs/users.xml " ] ,
)
node3 = cluster . add_instance (
" node3 " ,
main_configs = [ " configs/config_defined_1.xml " ] ,
user_configs = [ " configs/users.xml " ] ,
)
node4 = cluster . add_instance (
" node4 " ,
main_configs = [ " configs/config_limit_reached.xml " ] ,
2022-05-17 16:35:40 +00:00
user_configs = [ " configs/users.xml " ] ,
)
2022-04-29 13:57:16 +00:00
@pytest.fixture ( scope = " module " )
def started_cluster ( ) :
try :
cluster . start ( )
yield cluster
finally :
cluster . shutdown ( )
2022-07-28 07:46:20 +00:00
def test_concurrent_threads_soft_limit_default ( started_cluster ) :
2022-05-17 16:35:40 +00:00
node1 . query (
2022-07-28 07:46:20 +00:00
" SELECT count(*) FROM numbers_mt(10000000) " , query_id = " test_concurrent_threads_soft_limit_1 "
2022-05-17 16:35:40 +00:00
)
node1 . query ( " SYSTEM FLUSH LOGS " )
assert (
node1 . query (
2022-07-28 07:46:20 +00:00
" select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = ' QueryFinish ' and query_id = ' test_concurrent_threads_soft_limit_1 ' "
2022-05-17 16:35:40 +00:00
)
== " 102 \n "
)
2022-04-29 13:57:16 +00:00
2022-07-28 07:46:20 +00:00
def test_concurrent_threads_soft_limit_defined_50 ( started_cluster ) :
2022-05-17 16:35:40 +00:00
node2 . query (
2022-07-28 07:46:20 +00:00
" SELECT count(*) FROM numbers_mt(10000000) " , query_id = " test_concurrent_threads_soft_limit_2 "
2022-05-17 16:35:40 +00:00
)
node2 . query ( " SYSTEM FLUSH LOGS " )
assert (
node2 . query (
2022-07-28 07:46:20 +00:00
" select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = ' QueryFinish ' and query_id = ' test_concurrent_threads_soft_limit_2 ' "
2022-05-17 16:35:40 +00:00
)
2022-07-27 14:34:10 +00:00
== " 52 \n "
2022-05-17 16:35:40 +00:00
)
2022-05-20 12:52:50 +00:00
2022-07-28 07:46:20 +00:00
def test_concurrent_threads_soft_limit_defined_1 ( started_cluster ) :
2022-05-20 12:52:50 +00:00
node3 . query (
2022-07-28 07:46:20 +00:00
" SELECT count(*) FROM numbers_mt(10000000) " , query_id = " test_concurrent_threads_soft_limit_3 "
2022-05-20 12:52:50 +00:00
)
node3 . query ( " SYSTEM FLUSH LOGS " )
assert (
node3 . query (
2022-07-28 07:46:20 +00:00
" select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = ' QueryFinish ' and query_id = ' test_concurrent_threads_soft_limit_3 ' "
2022-05-20 12:52:50 +00:00
)
2022-07-27 14:34:10 +00:00
== " 3 \n "
2022-05-20 12:52:50 +00:00
)
2022-07-28 07:46:20 +00:00
# In config_limit_reached.xml there is concurrent_threads_soft_limit=10
2022-05-25 16:26:56 +00:00
# Background query starts in a separate thread to reach this limit.
# When this limit is reached the foreground query gets less than 5 queries despite the fact that it has settings max_threads=5
2022-07-28 07:46:20 +00:00
def test_concurrent_threads_soft_limit_limit_reached ( started_cluster ) :
2022-05-25 16:26:56 +00:00
def background_query ( ) :
try :
node4 . query (
" SELECT count(*) FROM numbers_mt(1e11) settings max_threads=100 " ,
query_id = " background_query " ,
)
except QueryRuntimeException :
pass
2022-05-20 12:52:50 +00:00
2022-05-25 16:26:56 +00:00
background_thread = threading . Thread ( target = background_query )
background_thread . start ( )
2022-05-20 12:52:50 +00:00
2022-05-25 16:26:56 +00:00
def limit_reached ( ) :
s_count = node4 . query (
" SELECT sum(length(thread_ids)) FROM system.processes "
) . strip ( )
if s_count :
count = int ( s_count )
else :
count = 0
return count > = 10
while not limit_reached ( ) :
2022-05-23 12:15:09 +00:00
time . sleep ( 0.1 )
2022-05-20 12:52:50 +00:00
node4 . query (
" SELECT count(*) FROM numbers_mt(10000000) settings max_threads=5 " ,
2022-07-28 07:46:20 +00:00
query_id = " test_concurrent_threads_soft_limit_4 " ,
2022-05-20 12:52:50 +00:00
)
2022-05-25 16:26:56 +00:00
2022-05-20 12:52:50 +00:00
node4 . query ( " SYSTEM FLUSH LOGS " )
2022-05-25 16:26:56 +00:00
s_count = node4 . query (
2022-07-28 07:46:20 +00:00
" select length(thread_ids) from system.query_log where current_database = currentDatabase() and type = ' QueryFinish ' and query_id = ' test_concurrent_threads_soft_limit_4 ' "
2022-05-25 16:26:56 +00:00
) . strip ( )
if s_count :
count = int ( s_count )
else :
count = 0
assert count < 5
node4 . query ( " KILL QUERY WHERE query_id = ' background_query ' SYNC " )
background_thread . join ( )