mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Added integration test
This commit is contained in:
parent
abf2a87ce7
commit
aa42150ebd
@ -0,0 +1,3 @@
|
||||
<yandex>
|
||||
<catboost_dynamic_library_path>/etc/clickhouse-server/model/libcatboostmodel.so</catboost_dynamic_library_path>
|
||||
</yandex>
|
@ -0,0 +1,3 @@
|
||||
<yandex>
|
||||
<models_config>/etc/clickhouse-server/model/model_config.xml</models_config>
|
||||
</yandex>
|
Binary file not shown.
Binary file not shown.
BIN
tests/integration/test_catboost_model_reload/model/libcatboostmodel.so
Executable file
BIN
tests/integration/test_catboost_model_reload/model/libcatboostmodel.so
Executable file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
<models>
|
||||
<model>
|
||||
<type>catboost</type>
|
||||
<name>model</name>
|
||||
<path>/etc/clickhouse-server/model/model.cbm</path>
|
||||
<lifetime>0</lifetime>
|
||||
</model>
|
||||
</models>
|
74
tests/integration/test_catboost_model_reload/test.py
Normal file
74
tests/integration/test_catboost_model_reload/test.py
Normal file
@ -0,0 +1,74 @@
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
|
||||
import pytest
|
||||
|
||||
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
from helpers.cluster import ClickHouseCluster
|
||||
|
||||
cluster = ClickHouseCluster(__file__)
|
||||
node = cluster.add_instance('node', stay_alive=True, main_configs=['config/models_config.xml', 'config/catboost_lib.xml'])
|
||||
|
||||
def copy_file_to_container(local_path, dist_path, container_id):
|
||||
os.system("docker cp {local} {cont_id}:{dist}".format(local=local_path, cont_id=container_id, dist=dist_path))
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def started_cluster():
|
||||
try:
|
||||
cluster.start()
|
||||
|
||||
copy_file_to_container(os.path.join(SCRIPT_DIR, 'model/.'), '/etc/clickhouse-server/model', node.docker_id)
|
||||
node.query("CREATE TABLE binary (x UInt64, y UInt64) ENGINE = TinyLog()")
|
||||
node.query("INSERT INTO binary VALUES (1, 1), (1, 0), (0, 1), (0, 0)")
|
||||
|
||||
node.restart_clickhouse()
|
||||
|
||||
yield cluster
|
||||
|
||||
finally:
|
||||
cluster.shutdown()
|
||||
|
||||
def test_model_reload(started_cluster):
|
||||
node.exec_in_container(["bash", "-c", "rm -f /etc/clickhouse-server/model/model.cbm"])
|
||||
node.exec_in_container(["bash", "-c", "ln /etc/clickhouse-server/model/conjunction.cbm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.query("SYSTEM RELOAD MODEL model")
|
||||
|
||||
result = node.query("""
|
||||
WITH modelEvaluate('model', toFloat64(x), toFloat64(y)) as prediction, exp(prediction) / (1 + exp(prediction)) as probability
|
||||
SELECT if(probability > 0.5, 1, 0) FROM binary;
|
||||
""")
|
||||
assert result == '1\n0\n0\n0\n'
|
||||
|
||||
node.exec_in_container(["bash", "-c", "rm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.exec_in_container(["bash", "-c", "ln /etc/clickhouse-server/model/disjunction.cbm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.query("SYSTEM RELOAD MODEL model")
|
||||
|
||||
result = node.query("""
|
||||
WITH modelEvaluate('model', toFloat64(x), toFloat64(y)) as prediction, exp(prediction) / (1 + exp(prediction)) as probability
|
||||
SELECT if(probability > 0.5, 1, 0) FROM binary;
|
||||
""")
|
||||
assert result == '1\n1\n1\n0\n'
|
||||
|
||||
def test_models_reload(started_cluster):
|
||||
node.exec_in_container(["bash", "-c", "rm -f /etc/clickhouse-server/model/model.cbm"])
|
||||
node.exec_in_container(["bash", "-c", "ln /etc/clickhouse-server/model/conjunction.cbm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.query("SYSTEM RELOAD MODELS")
|
||||
|
||||
result = node.query("""
|
||||
WITH modelEvaluate('model', toFloat64(x), toFloat64(y)) as prediction, exp(prediction) / (1 + exp(prediction)) as probability
|
||||
SELECT if(probability > 0.5, 1, 0) FROM binary;
|
||||
""")
|
||||
assert result == '1\n0\n0\n0\n'
|
||||
|
||||
node.exec_in_container(["bash", "-c", "rm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.exec_in_container(["bash", "-c", "ln /etc/clickhouse-server/model/disjunction.cbm /etc/clickhouse-server/model/model.cbm"])
|
||||
node.query("SYSTEM RELOAD MODELS")
|
||||
|
||||
result = node.query("""
|
||||
WITH modelEvaluate('model', toFloat64(x), toFloat64(y)) as prediction, exp(prediction) / (1 + exp(prediction)) as probability
|
||||
SELECT if(probability > 0.5, 1, 0) FROM binary;
|
||||
""")
|
||||
assert result == '1\n1\n1\n0\n'
|
@ -82,6 +82,7 @@ SYSTEM DROP CACHE ['DROP CACHE'] \N SYSTEM
|
||||
SYSTEM RELOAD CONFIG ['RELOAD CONFIG'] GLOBAL SYSTEM RELOAD
|
||||
SYSTEM RELOAD SYMBOLS ['RELOAD SYMBOLS'] GLOBAL SYSTEM RELOAD
|
||||
SYSTEM RELOAD DICTIONARY ['SYSTEM RELOAD DICTIONARIES','RELOAD DICTIONARY','RELOAD DICTIONARIES'] GLOBAL SYSTEM RELOAD
|
||||
SYSTEM RELOAD MODEL ['SYSTEM RELOAD MODELS','RELOAD MODEL','RELOAD MODELS'] GLOBAL SYSTEM RELOAD
|
||||
SYSTEM RELOAD EMBEDDED DICTIONARIES ['RELOAD EMBEDDED DICTIONARIES'] GLOBAL SYSTEM RELOAD
|
||||
SYSTEM RELOAD [] \N SYSTEM
|
||||
SYSTEM MERGES ['SYSTEM STOP MERGES','SYSTEM START MERGES','STOP_MERGES','START MERGES'] TABLE SYSTEM
|
||||
|
Loading…
Reference in New Issue
Block a user