2019-09-02 14:50:57 +00:00
|
|
|
import os
|
|
|
|
import time
|
2020-09-16 04:26:10 +00:00
|
|
|
|
|
|
|
import pytest
|
2019-12-16 00:29:21 +00:00
|
|
|
from helpers.client import QueryTimeoutExceedException
|
2020-09-16 04:26:10 +00:00
|
|
|
from helpers.cluster import ClickHouseCluster
|
2019-09-02 14:50:57 +00:00
|
|
|
from helpers.test_tools import assert_eq_with_retry
|
|
|
|
|
|
|
|
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
|
2020-09-16 04:26:10 +00:00
|
|
|
DICTIONARY_FILES = [
|
|
|
|
"configs/dictionaries/cache_xypairs.xml",
|
|
|
|
"configs/dictionaries/executable.xml",
|
|
|
|
"configs/dictionaries/file.xml",
|
|
|
|
"configs/dictionaries/file.txt",
|
|
|
|
"configs/dictionaries/slow.xml",
|
|
|
|
]
|
2019-09-02 14:50:57 +00:00
|
|
|
|
2020-08-12 08:55:04 +00:00
|
|
|
cluster = ClickHouseCluster(__file__)
|
2021-05-28 15:45:56 +00:00
|
|
|
instance = cluster.add_instance("instance", dictionaries=DICTIONARY_FILES)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
instance.query("CREATE DATABASE IF NOT EXISTS test")
|
|
|
|
|
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def get_status(dictionary_name):
|
|
|
|
return instance.query(
|
|
|
|
"SELECT status FROM system.dictionaries WHERE name='" + dictionary_name + "'"
|
|
|
|
).rstrip("\n")
|
|
|
|
|
|
|
|
|
|
|
|
def get_last_exception(dictionary_name):
|
2020-09-16 04:26:10 +00:00
|
|
|
return (
|
|
|
|
instance.query(
|
|
|
|
"SELECT last_exception FROM system.dictionaries WHERE name='"
|
|
|
|
+ dictionary_name
|
|
|
|
+ "'"
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
2020-09-16 04:26:10 +00:00
|
|
|
.rstrip("\n")
|
|
|
|
.replace("\\'", "'")
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_loading_start_time(dictionary_name):
|
2020-09-16 04:26:10 +00:00
|
|
|
s = instance.query(
|
|
|
|
"SELECT toTimeZone(loading_start_time, 'UTC') FROM system.dictionaries WHERE name='"
|
|
|
|
+ dictionary_name
|
|
|
|
+ "'"
|
|
|
|
).rstrip("\n")
|
2020-07-16 01:48:50 +00:00
|
|
|
if s == "1970-01-01 00:00:00":
|
2019-09-02 14:50:57 +00:00
|
|
|
return None
|
|
|
|
return time.strptime(s, "%Y-%m-%d %H:%M:%S")
|
|
|
|
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2020-02-27 10:07:50 +00:00
|
|
|
def get_last_successful_update_time(dictionary_name):
|
2020-09-16 04:26:10 +00:00
|
|
|
s = instance.query(
|
|
|
|
"SELECT toTimeZone(last_successful_update_time, 'UTC') FROM system.dictionaries WHERE name='"
|
|
|
|
+ dictionary_name
|
|
|
|
+ "'"
|
|
|
|
).rstrip("\n")
|
2020-07-16 01:48:50 +00:00
|
|
|
if s == "1970-01-01 00:00:00":
|
2020-02-27 10:07:50 +00:00
|
|
|
return None
|
|
|
|
return time.strptime(s, "%Y-%m-%d %H:%M:%S")
|
|
|
|
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
def get_loading_duration(dictionary_name):
|
2020-09-16 04:26:10 +00:00
|
|
|
return float(
|
|
|
|
instance.query(
|
|
|
|
"SELECT loading_duration FROM system.dictionaries WHERE name='"
|
|
|
|
+ dictionary_name
|
|
|
|
+ "'"
|
|
|
|
)
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def replace_in_file_in_container(file_name, what, replace_with):
|
2021-06-02 15:08:16 +00:00
|
|
|
instance.exec_in_container(["sed", "-i", f"s/{what}/{replace_with}/g", file_name])
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_reload_while_loading(started_cluster):
|
|
|
|
query = instance.query
|
|
|
|
|
|
|
|
# dictionaries_lazy_load == false, so this dictionary is not loaded.
|
|
|
|
assert get_status("slow") == "NOT_LOADED"
|
|
|
|
assert get_loading_duration("slow") == 0
|
|
|
|
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
# It's not possible to get a value from the dictionary within 1 second, so the following query fails by timeout.
|
2019-12-16 00:29:21 +00:00
|
|
|
with pytest.raises(QueryTimeoutExceedException):
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
query("SELECT dictGetInt32('slow', 'a', toUInt64(5))", timeout=1)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# The dictionary is now loading.
|
|
|
|
assert get_status("slow") == "LOADING"
|
|
|
|
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
|
|
|
|
assert duration > 0
|
|
|
|
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
time.sleep(1) # Still loading.
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_status("slow") == "LOADING"
|
|
|
|
prev_start_time, prev_duration = start_time, duration
|
|
|
|
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
|
|
|
|
assert start_time == prev_start_time
|
|
|
|
assert duration >= prev_duration
|
|
|
|
|
|
|
|
# SYSTEM RELOAD DICTIONARY should restart loading.
|
2019-12-16 00:29:21 +00:00
|
|
|
with pytest.raises(QueryTimeoutExceedException):
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
query("SYSTEM RELOAD DICTIONARY 'slow'", timeout=1)
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_status("slow") == "LOADING"
|
|
|
|
prev_start_time, prev_duration = start_time, duration
|
|
|
|
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
|
|
|
|
assert start_time > prev_start_time
|
|
|
|
assert duration < prev_duration
|
|
|
|
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
time.sleep(1) # Still loading.
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_status("slow") == "LOADING"
|
|
|
|
prev_start_time, prev_duration = start_time, duration
|
|
|
|
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
|
|
|
|
assert start_time == prev_start_time
|
|
|
|
assert duration >= prev_duration
|
|
|
|
|
2019-12-16 00:29:21 +00:00
|
|
|
# Changing the configuration file should restart loading again.
|
2021-06-09 15:49:18 +00:00
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/slow.xml", "sleep 100", "sleep 0"
|
|
|
|
)
|
Fix test_dictionaries_update_and_reload/test.py::test_reload_while_loading flakiness
On CI this test fails due to start_time == prev_start_time:
start_time, duration = get_loading_start_time("slow"), get_loading_duration("slow")
> assert start_time > prev_start_time
E assert time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1) > time.struct_time(tm_year=2023, tm_mon=12, tm_mday=9, tm_hour=23, tm_min=42, tm_sec=2, tm_wday=5, tm_yday=343, tm_isdst=-1)
The reason I guess is that there is sleep(0.5), while the
loading_start_time is DateTime not DateTime64, so you cannot distinguish
values if the difference is less then one second
CI: https://s3.amazonaws.com/clickhouse-test-reports/57710/7af1c0885daaf1e41470c5fdd92abfc7b6b2befc/integration_tests__asan__[3_4].html
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2023-12-10 07:33:07 +00:00
|
|
|
query("SYSTEM RELOAD CONFIG")
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# This time loading should finish quickly.
|
|
|
|
assert get_status("slow") == "LOADED"
|
2020-02-27 10:07:50 +00:00
|
|
|
|
|
|
|
last_successful_update_time = get_last_successful_update_time("slow")
|
|
|
|
assert last_successful_update_time > start_time
|
2019-09-02 14:50:57 +00:00
|
|
|
assert query("SELECT dictGetInt32('slow', 'a', toUInt64(5))") == "6\n"
|
|
|
|
|
|
|
|
|
|
|
|
def test_reload_after_loading(started_cluster):
|
|
|
|
query = instance.query
|
|
|
|
|
|
|
|
assert query("SELECT dictGetInt32('executable', 'a', toUInt64(7))") == "8\n"
|
|
|
|
assert query("SELECT dictGetInt32('file', 'a', toUInt64(9))") == "10\n"
|
|
|
|
|
|
|
|
# Change the dictionaries' data.
|
2020-03-19 02:17:30 +00:00
|
|
|
# FIXME we sleep before this, because Poco 1.x has one-second granularity
|
|
|
|
# for mtime, and clickhouse will miss the update if we change the file too
|
|
|
|
# soon. Should probably be fixed by switching to use std::filesystem.
|
|
|
|
time.sleep(1)
|
2021-06-09 15:49:18 +00:00
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/executable.xml", "8", "81"
|
|
|
|
)
|
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/file.txt", "10", "101"
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# SYSTEM RELOAD 'name' reloads only the specified dictionary.
|
|
|
|
query("SYSTEM RELOAD DICTIONARY 'executable'")
|
|
|
|
assert query("SELECT dictGetInt32('executable', 'a', toUInt64(7))") == "81\n"
|
|
|
|
assert query("SELECT dictGetInt32('file', 'a', toUInt64(9))") == "10\n"
|
|
|
|
|
|
|
|
query("SYSTEM RELOAD DICTIONARY 'file'")
|
|
|
|
assert query("SELECT dictGetInt32('executable', 'a', toUInt64(7))") == "81\n"
|
|
|
|
assert query("SELECT dictGetInt32('file', 'a', toUInt64(9))") == "101\n"
|
|
|
|
|
|
|
|
# SYSTEM RELOAD DICTIONARIES reloads all loaded dictionaries.
|
2020-09-16 04:26:10 +00:00
|
|
|
time.sleep(1) # see the comment above
|
2021-06-09 15:49:18 +00:00
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/executable.xml", "81", "82"
|
|
|
|
)
|
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/file.txt", "101", "102"
|
|
|
|
)
|
2021-03-26 15:14:42 +00:00
|
|
|
query("SYSTEM RELOAD DICTIONARY 'file'")
|
|
|
|
query("SYSTEM RELOAD DICTIONARY 'executable'")
|
2019-09-02 14:50:57 +00:00
|
|
|
assert query("SELECT dictGetInt32('executable', 'a', toUInt64(7))") == "82\n"
|
|
|
|
assert query("SELECT dictGetInt32('file', 'a', toUInt64(9))") == "102\n"
|
|
|
|
|
|
|
|
# Configuration files are reloaded and lifetimes are checked automatically once in 5 seconds.
|
2019-09-25 14:06:38 +00:00
|
|
|
# Wait slightly more, to be sure it did reload.
|
2020-09-16 04:26:10 +00:00
|
|
|
time.sleep(1) # see the comment above
|
2021-06-09 15:49:18 +00:00
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/executable.xml", "82", "83"
|
|
|
|
)
|
|
|
|
replace_in_file_in_container(
|
|
|
|
"/etc/clickhouse-server/dictionaries/file.txt", "102", "103"
|
|
|
|
)
|
2021-06-16 12:31:19 +00:00
|
|
|
time.sleep(10)
|
2019-09-02 14:50:57 +00:00
|
|
|
assert query("SELECT dictGetInt32('file', 'a', toUInt64(9))") == "103\n"
|
|
|
|
assert query("SELECT dictGetInt32('executable', 'a', toUInt64(7))") == "83\n"
|
|
|
|
|
|
|
|
|
|
|
|
def test_reload_after_fail_by_system_reload(started_cluster):
|
|
|
|
query = instance.query
|
|
|
|
|
|
|
|
# dictionaries_lazy_load == false, so this dictionary is not loaded.
|
|
|
|
assert get_status("no_file") == "NOT_LOADED"
|
|
|
|
|
|
|
|
# We expect an error because the file source doesn't exist.
|
2019-12-16 00:29:21 +00:00
|
|
|
no_such_file_error = "No such file"
|
|
|
|
assert no_such_file_error in instance.query_and_get_error(
|
|
|
|
"SELECT dictGetInt32('no_file', 'a', toUInt64(9))"
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_status("no_file") == "FAILED"
|
|
|
|
|
|
|
|
# SYSTEM RELOAD should not change anything now, the status is still FAILED.
|
2019-12-16 00:29:21 +00:00
|
|
|
assert no_such_file_error in instance.query_and_get_error(
|
|
|
|
"SYSTEM RELOAD DICTIONARY 'no_file'"
|
|
|
|
)
|
|
|
|
assert no_such_file_error in instance.query_and_get_error(
|
|
|
|
"SELECT dictGetInt32('no_file', 'a', toUInt64(9))"
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_status("no_file") == "FAILED"
|
|
|
|
|
|
|
|
# Creating the file source makes the dictionary able to load.
|
2020-09-16 04:26:10 +00:00
|
|
|
instance.copy_file_to_container(
|
|
|
|
os.path.join(SCRIPT_DIR, "configs/dictionaries/file.txt"),
|
2021-06-09 15:49:18 +00:00
|
|
|
"/etc/clickhouse-server/dictionaries/no_file.txt",
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
query("SYSTEM RELOAD DICTIONARY 'no_file'")
|
|
|
|
query("SELECT dictGetInt32('no_file', 'a', toUInt64(9))") == "10\n"
|
|
|
|
assert get_status("no_file") == "LOADED"
|
|
|
|
|
|
|
|
# Removing the file source should not spoil the loaded dictionary.
|
2021-06-09 15:49:18 +00:00
|
|
|
instance.exec_in_container(
|
|
|
|
["rm", "/etc/clickhouse-server/dictionaries/no_file.txt"]
|
|
|
|
)
|
2019-12-16 00:29:21 +00:00
|
|
|
assert no_such_file_error in instance.query_and_get_error(
|
|
|
|
"SYSTEM RELOAD DICTIONARY 'no_file'"
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
query("SELECT dictGetInt32('no_file', 'a', toUInt64(9))") == "10\n"
|
|
|
|
assert get_status("no_file") == "LOADED"
|
|
|
|
|
|
|
|
|
|
|
|
def test_reload_after_fail_by_timer(started_cluster):
|
|
|
|
# dictionaries_lazy_load == false, so this dictionary is not loaded.
|
|
|
|
assert get_status("no_file_2") == "NOT_LOADED"
|
|
|
|
|
|
|
|
# We expect an error because the file source doesn't exist.
|
|
|
|
expected_error = "No such file"
|
|
|
|
assert expected_error in instance.query_and_get_error(
|
|
|
|
"SELECT dictGetInt32('no_file_2', 'a', toUInt64(9))"
|
|
|
|
)
|
|
|
|
assert get_status("no_file_2") == "FAILED"
|
|
|
|
|
|
|
|
# Passed time should not change anything now, the status is still FAILED.
|
|
|
|
time.sleep(6)
|
|
|
|
assert expected_error in instance.query_and_get_error(
|
|
|
|
"SELECT dictGetInt32('no_file_2', 'a', toUInt64(9))"
|
|
|
|
)
|
2024-03-25 10:13:37 +00:00
|
|
|
|
|
|
|
# on sanitizers builds it can return 'FAILED_AND_RELOADING' which is not quite right
|
|
|
|
# add retry for these builds
|
2024-08-05 09:45:49 +00:00
|
|
|
assert get_status("no_file_2") in ["FAILED", "FAILED_AND_RELOADING"]
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# Creating the file source makes the dictionary able to load.
|
2020-09-16 04:26:10 +00:00
|
|
|
instance.copy_file_to_container(
|
|
|
|
os.path.join(SCRIPT_DIR, "configs/dictionaries/file.txt"),
|
2021-06-09 15:49:18 +00:00
|
|
|
"/etc/clickhouse-server/dictionaries/no_file_2.txt",
|
|
|
|
)
|
2020-11-17 14:36:04 +00:00
|
|
|
# Check that file appears in container and wait if needed.
|
2021-11-29 16:07:00 +00:00
|
|
|
while not instance.path_exists("/etc/clickhouse-server/dictionaries/no_file_2.txt"):
|
2020-11-17 14:36:04 +00:00
|
|
|
time.sleep(1)
|
2021-06-09 15:49:18 +00:00
|
|
|
assert "9\t10\n" == instance.exec_in_container(
|
|
|
|
["cat", "/etc/clickhouse-server/dictionaries/no_file_2.txt"]
|
|
|
|
)
|
2020-11-17 17:58:31 +00:00
|
|
|
instance.query("SYSTEM RELOAD DICTIONARY no_file_2")
|
2020-11-17 17:33:07 +00:00
|
|
|
instance.query("SELECT dictGetInt32('no_file_2', 'a', toUInt64(9))") == "10\n"
|
2024-08-05 09:45:49 +00:00
|
|
|
assert get_status("no_file_2") in ["LOADED", "LOADED_AND_RELOADING"]
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# Removing the file source should not spoil the loaded dictionary.
|
2021-06-09 15:49:18 +00:00
|
|
|
instance.exec_in_container(
|
|
|
|
["rm", "/etc/clickhouse-server/dictionaries/no_file_2.txt"]
|
|
|
|
)
|
2019-09-02 14:50:57 +00:00
|
|
|
time.sleep(6)
|
2020-11-17 17:33:07 +00:00
|
|
|
instance.query("SELECT dictGetInt32('no_file_2', 'a', toUInt64(9))") == "10\n"
|
2024-08-05 09:45:49 +00:00
|
|
|
assert get_status("no_file_2") in ["LOADED", "LOADED_AND_RELOADING"]
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_reload_after_fail_in_cache_dictionary(started_cluster):
|
|
|
|
query = instance.query
|
|
|
|
query_and_get_error = instance.query_and_get_error
|
|
|
|
|
|
|
|
# Can't get a value from the cache dictionary because the source (table `test.xypairs`) doesn't respond.
|
2024-01-26 16:37:54 +00:00
|
|
|
expected_error = "UNKNOWN_TABLE"
|
2020-10-01 18:28:40 +00:00
|
|
|
update_error = "Could not update cache dictionary cache_xypairs now"
|
2019-09-02 14:50:57 +00:00
|
|
|
assert expected_error in query_and_get_error(
|
|
|
|
"SELECT dictGetUInt64('cache_xypairs', 'y', toUInt64(1))"
|
|
|
|
)
|
|
|
|
assert get_status("cache_xypairs") == "LOADED"
|
|
|
|
assert expected_error in get_last_exception("cache_xypairs")
|
|
|
|
|
|
|
|
# Create table `test.xypairs`.
|
|
|
|
query(
|
2022-03-22 16:39:58 +00:00
|
|
|
"""
|
2019-09-02 14:50:57 +00:00
|
|
|
DROP TABLE IF EXISTS test.xypairs;
|
|
|
|
CREATE TABLE test.xypairs (x UInt64, y UInt64) ENGINE=Log;
|
|
|
|
INSERT INTO test.xypairs VALUES (1, 56), (3, 78);
|
2022-03-22 16:39:58 +00:00
|
|
|
"""
|
2019-09-02 14:50:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Cache dictionary now works.
|
|
|
|
assert_eq_with_retry(
|
|
|
|
instance,
|
|
|
|
"SELECT dictGet('cache_xypairs', 'y', toUInt64(1))",
|
|
|
|
"56",
|
|
|
|
ignore_error=True,
|
|
|
|
)
|
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(2))") == "0"
|
|
|
|
assert get_last_exception("cache_xypairs") == ""
|
|
|
|
|
|
|
|
# Drop table `test.xypairs`.
|
|
|
|
query("DROP TABLE test.xypairs")
|
|
|
|
|
|
|
|
# Values are cached so we can get them.
|
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(1))") == "56"
|
2020-09-30 14:35:37 +00:00
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(2))") == "0"
|
2019-09-02 14:50:57 +00:00
|
|
|
assert get_last_exception("cache_xypairs") == ""
|
|
|
|
|
|
|
|
# But we can't get a value from the source table which isn't cached.
|
|
|
|
assert expected_error in query_and_get_error(
|
|
|
|
"SELECT dictGetUInt64('cache_xypairs', 'y', toUInt64(3))"
|
|
|
|
)
|
|
|
|
assert expected_error in get_last_exception("cache_xypairs")
|
|
|
|
|
|
|
|
# Passed time should not spoil the cache.
|
2020-09-29 18:28:06 +00:00
|
|
|
time.sleep(5)
|
2019-09-02 14:50:57 +00:00
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(1))") == "56"
|
2020-09-30 14:35:37 +00:00
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(2))") == "0"
|
|
|
|
error = query_and_get_error(
|
|
|
|
"SELECT dictGetUInt64('cache_xypairs', 'y', toUInt64(3))"
|
|
|
|
)
|
2020-10-01 18:28:40 +00:00
|
|
|
assert (expected_error in error) or (update_error in error)
|
|
|
|
last_exception = get_last_exception("cache_xypairs")
|
|
|
|
assert (expected_error in last_exception) or (update_error in last_exception)
|
2019-09-02 14:50:57 +00:00
|
|
|
|
|
|
|
# Create table `test.xypairs` again with changed values.
|
|
|
|
query(
|
2022-03-22 16:39:58 +00:00
|
|
|
"""
|
2019-09-02 14:50:57 +00:00
|
|
|
CREATE TABLE test.xypairs (x UInt64, y UInt64) ENGINE=Log;
|
|
|
|
INSERT INTO test.xypairs VALUES (1, 57), (3, 79);
|
2022-03-22 16:39:58 +00:00
|
|
|
"""
|
2019-09-02 14:50:57 +00:00
|
|
|
)
|
|
|
|
|
2020-09-29 18:28:06 +00:00
|
|
|
query("SYSTEM RELOAD DICTIONARY cache_xypairs")
|
|
|
|
|
2019-09-02 14:50:57 +00:00
|
|
|
# The cache dictionary returns new values now.
|
|
|
|
assert_eq_with_retry(
|
|
|
|
instance, "SELECT dictGet('cache_xypairs', 'y', toUInt64(1))", "57"
|
|
|
|
)
|
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(2))") == "0"
|
|
|
|
query("SELECT dictGet('cache_xypairs', 'y', toUInt64(3))") == "79"
|
|
|
|
assert get_last_exception("cache_xypairs") == ""
|