2017-08-25 13:47:09 +00:00
import os
2017-05-30 11:49:17 +00:00
import os . path as p
2017-08-25 13:47:09 +00:00
import sys
2017-05-30 11:49:17 +00:00
import time
import datetime
import pytest
2017-08-25 13:47:09 +00:00
from contextlib import contextmanager
2017-05-30 11:49:17 +00:00
2017-08-25 13:47:09 +00:00
sys . path . insert ( 0 , os . path . dirname ( os . path . dirname ( os . path . abspath ( __file__ ) ) ) )
2017-05-30 11:49:17 +00:00
from helpers . cluster import ClickHouseCluster
2017-08-02 14:42:35 +00:00
from helpers . network import PartitionManager , PartitionManagerDisbaler
2017-05-30 11:49:17 +00:00
from helpers . test_tools import TSV
def check_all_hosts_sucesfully_executed ( tsv_content , num_hosts = None ) :
if num_hosts is None :
num_hosts = len ( cluster . instances )
M = TSV . toMat ( tsv_content )
2017-07-27 13:11:16 +00:00
hosts = [ ( l [ 0 ] , l [ 1 ] ) for l in M ] # (host, port)
codes = [ l [ 2 ] for l in M ]
messages = [ l [ 3 ] for l in M ]
2017-05-30 11:49:17 +00:00
2017-08-02 14:42:35 +00:00
assert len ( hosts ) == num_hosts and len ( set ( hosts ) ) == num_hosts , " \n " + tsv_content
assert len ( set ( codes ) ) == 1 , " \n " + tsv_content
assert codes [ 0 ] == " 0 " , " \n " + tsv_content
2017-05-30 11:49:17 +00:00
def ddl_check_query ( instance , query , num_hosts = None ) :
2018-09-03 15:02:24 +00:00
contents = instance . query ( query )
2017-05-30 11:49:17 +00:00
check_all_hosts_sucesfully_executed ( contents , num_hosts )
return contents
2017-07-27 18:44:55 +00:00
def ddl_check_there_are_no_dublicates ( instance ) :
2017-11-02 14:18:46 +00:00
rows = instance . query ( " SELECT max(c), argMax(q, c) FROM (SELECT lower(query) AS q, count() AS c FROM system.query_log WHERE type=2 AND q LIKE ' /* ddl_entry=query- % ' GROUP BY query) " )
assert len ( rows ) > 0 and rows [ 0 ] [ 0 ] == " 1 " , " dublicates on {} {} , query {} " . format ( instance . name , instance . ip_address )
2017-07-27 18:44:55 +00:00
2017-08-01 14:41:00 +00:00
# Make retries in case of UNKNOWN_STATUS_OF_INSERT or zkutil::KeeperException errors
def insert_reliable ( instance , query_insert ) :
for i in xrange ( 100 ) :
try :
instance . query ( query_insert )
return
except Exception as e :
last_exception = e
s = str ( e )
if not ( s . find ( ' Unknown status, client must retry ' ) > = 0 or s . find ( ' zkutil::KeeperException ' ) ) :
raise e
raise last_exception
2017-05-30 11:49:17 +00:00
2018-09-06 13:03:42 +00:00
TEST_REPLICATED_ALTERS = False # TODO: Check code and turn on
2017-07-26 14:15:16 +00:00
cluster = ClickHouseCluster ( __file__ )
2017-05-30 11:49:17 +00:00
2017-08-02 14:42:35 +00:00
def replace_domains_to_ip_addresses_in_cluster_config ( instances_to_replace ) :
clusters_config = open ( p . join ( cluster . base_dir , ' configs/config.d/clusters.xml ' ) ) . read ( )
for inst_name , inst in cluster . instances . items ( ) :
clusters_config = clusters_config . replace ( inst_name , str ( inst . ip_address ) )
for inst_name in instances_to_replace :
inst = cluster . instances [ inst_name ]
cluster . instances [ inst_name ] . exec_in_container ( [ ' bash ' , ' -c ' , ' echo " $NEW_CONFIG " > /etc/clickhouse-server/config.d/clusters.xml ' ] , environment = { " NEW_CONFIG " : clusters_config } , privileged = True )
# print cluster.instances[inst_name].exec_in_container(['cat', "/etc/clickhouse-server/config.d/clusters.xml"])
def init_cluster ( cluster ) :
2017-05-30 11:49:17 +00:00
try :
2017-07-27 22:29:48 +00:00
for i in xrange ( 4 ) :
cluster . add_instance (
' ch {} ' . format ( i + 1 ) ,
config_dir = " configs " ,
2018-07-25 16:00:51 +00:00
macros = { " layer " : 0 , " shard " : i / 2 + 1 , " replica " : i % 2 + 1 } ,
2017-07-27 22:29:48 +00:00
with_zookeeper = True )
2017-05-30 11:49:17 +00:00
cluster . start ( )
2017-08-02 14:42:35 +00:00
# Replace config files for testing ability to set host in DNS and IP formats
replace_domains_to_ip_addresses_in_cluster_config ( [ ' ch1 ' , ' ch3 ' ] )
2017-07-31 18:57:13 +00:00
# Select sacrifice instance to test CONNECTION_LOSS and server fail on it
2017-08-01 14:41:00 +00:00
sacrifice = cluster . instances [ ' ch4 ' ]
2017-07-31 18:57:13 +00:00
cluster . pm_random_drops = PartitionManager ( )
2017-08-02 14:42:35 +00:00
cluster . pm_random_drops . _add_rule ( { ' probability ' : 0.01 , ' destination ' : sacrifice . ip_address , ' source_port ' : 2181 , ' action ' : ' REJECT --reject-with tcp-reset ' } )
cluster . pm_random_drops . _add_rule ( { ' probability ' : 0.01 , ' source ' : sacrifice . ip_address , ' destination_port ' : 2181 , ' action ' : ' REJECT --reject-with tcp-reset ' } )
2017-07-31 18:57:13 +00:00
2017-05-30 11:49:17 +00:00
# Initialize databases and service tables
instance = cluster . instances [ ' ch1 ' ]
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS all_tables ON CLUSTER ' cluster_no_replicas '
( database String , name String , engine String , metadata_modification_time DateTime )
ENGINE = Distributed ( ' cluster_no_replicas ' , ' system ' , ' tables ' )
""" )
ddl_check_query ( instance , " CREATE DATABASE IF NOT EXISTS test ON CLUSTER ' cluster ' " )
2017-08-02 14:42:35 +00:00
except Exception as e :
print e
raise
@pytest.fixture ( scope = " module " )
def started_cluster ( ) :
try :
init_cluster ( cluster )
2017-05-30 11:49:17 +00:00
yield cluster
2017-08-02 14:42:35 +00:00
instance = cluster . instances [ ' ch1 ' ]
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , " DROP DATABASE test ON CLUSTER ' cluster ' " )
ddl_check_query ( instance , " DROP DATABASE IF EXISTS test2 ON CLUSTER ' cluster ' " )
2017-07-27 18:44:55 +00:00
# Check query log to ensure that DDL queries are not executed twice
2017-07-31 18:57:13 +00:00
time . sleep ( 1.5 )
2017-07-27 18:44:55 +00:00
for instance in cluster . instances . values ( ) :
ddl_check_there_are_no_dublicates ( instance )
2017-07-31 18:57:13 +00:00
2018-01-25 18:14:37 +00:00
cluster . pm_random_drops . heal_all ( )
2017-08-02 14:42:35 +00:00
finally :
2017-08-14 11:49:30 +00:00
cluster . shutdown ( )
2017-05-30 11:49:17 +00:00
def test_default_database ( started_cluster ) :
instance = cluster . instances [ ' ch3 ' ]
2017-08-03 17:00:41 +00:00
ddl_check_query ( instance , " CREATE DATABASE IF NOT EXISTS test2 ON CLUSTER ' cluster ' FORMAT TSV " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS null ON CLUSTER ' cluster ' FORMAT TSV " )
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , " CREATE TABLE null ON CLUSTER ' cluster2 ' (s String DEFAULT ' escape \t \n me ' ) ENGINE = Null " )
contents = instance . query ( " SELECT hostName() AS h, database FROM all_tables WHERE name = ' null ' ORDER BY h " )
assert TSV ( contents ) == TSV ( " ch1 \t default \n ch2 \t test2 \n ch3 \t default \n ch4 \t test2 \n " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS null ON CLUSTER cluster2 " )
ddl_check_query ( instance , " DROP DATABASE IF EXISTS test2 ON CLUSTER ' cluster ' " )
2017-08-02 20:54:41 +00:00
def test_create_view ( started_cluster ) :
instance = cluster . instances [ ' ch3 ' ]
2017-08-03 17:00:41 +00:00
ddl_check_query ( instance , " CREATE VIEW test.super_simple_view ON CLUSTER ' cluster ' AS SELECT * FROM system.numbers FORMAT TSV " )
ddl_check_query ( instance , " CREATE MATERIALIZED VIEW test.simple_mat_view ON CLUSTER ' cluster ' ENGINE = Memory AS SELECT * FROM system.numbers FORMAT TSV " )
ddl_check_query ( instance , " DROP TABLE test.simple_mat_view ON CLUSTER ' cluster ' FORMAT TSV " )
2017-08-10 19:12:52 +00:00
ddl_check_query ( instance , " DROP TABLE IF EXISTS test.super_simple_view2 ON CLUSTER ' cluster ' FORMAT TSV " )
2017-08-03 17:00:41 +00:00
2017-08-10 19:12:52 +00:00
ddl_check_query ( instance , " CREATE TABLE test.super_simple ON CLUSTER ' cluster ' (i Int8) ENGINE = Memory " )
2017-08-03 17:00:41 +00:00
ddl_check_query ( instance , " RENAME TABLE test.super_simple TO test.super_simple2 ON CLUSTER ' cluster ' FORMAT TSV " )
ddl_check_query ( instance , " DROP TABLE test.super_simple2 ON CLUSTER ' cluster ' " )
2017-08-02 20:54:41 +00:00
2017-05-30 11:49:17 +00:00
def test_on_server_fail ( started_cluster ) :
instance = cluster . instances [ ' ch1 ' ]
kill_instance = cluster . instances [ ' ch2 ' ]
ddl_check_query ( instance , " DROP TABLE IF EXISTS test.test_server_fail ON CLUSTER ' cluster ' " )
kill_instance . get_docker_handle ( ) . stop ( )
request = instance . get_query_request ( " CREATE TABLE test.test_server_fail ON CLUSTER ' cluster ' (i Int8) ENGINE=Null " , timeout = 30 )
kill_instance . get_docker_handle ( ) . start ( )
ddl_check_query ( instance , " DROP TABLE IF EXISTS test.__nope__ ON CLUSTER ' cluster ' " )
# Check query itself
check_all_hosts_sucesfully_executed ( request . get_answer ( ) )
# And check query artefacts
contents = instance . query ( " SELECT hostName() AS h FROM all_tables WHERE database= ' test ' AND name= ' test_server_fail ' ORDER BY h " )
assert TSV ( contents ) == TSV ( " ch1 \n ch2 \n ch3 \n ch4 \n " )
2017-07-27 18:44:55 +00:00
ddl_check_query ( instance , " DROP TABLE test.test_server_fail ON CLUSTER ' cluster ' " )
2017-05-30 11:49:17 +00:00
def _test_on_connection_losses ( cluster , zk_timeout ) :
instance = cluster . instances [ ' ch1 ' ]
kill_instance = cluster . instances [ ' ch2 ' ]
with PartitionManager ( ) as pm :
pm . drop_instance_zk_connections ( kill_instance )
request = instance . get_query_request ( " DROP TABLE IF EXISTS test.__nope__ ON CLUSTER ' cluster ' " , timeout = 10 )
time . sleep ( zk_timeout )
pm . restore_instance_zk_connections ( kill_instance )
check_all_hosts_sucesfully_executed ( request . get_answer ( ) )
def test_on_connection_loss ( started_cluster ) :
_test_on_connection_losses ( cluster , 1.5 ) # connection loss will occur only (3 sec ZK timeout in config)
def test_on_session_expired ( started_cluster ) :
_test_on_connection_losses ( cluster , 4 ) # session should be expired (3 sec ZK timeout in config)
def test_replicated_alters ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
2018-09-06 13:03:42 +00:00
ddl_check_query ( instance , " DROP TABLE IF EXISTS merge_for_alter ON CLUSTER cluster " )
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , " DROP TABLE IF EXISTS all_merge_32 ON CLUSTER cluster " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS all_merge_64 ON CLUSTER cluster " )
if not TEST_REPLICATED_ALTERS :
return
2017-08-02 14:42:35 +00:00
# Temporarily disable random ZK packet drops, they might broke creation if ReplicatedMergeTree replicas
firewall_drops_rules = cluster . pm_random_drops . pop_rules ( )
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , """
2018-09-06 13:03:42 +00:00
CREATE TABLE IF NOT EXISTS merge_for_alter ON CLUSTER cluster ( p Date , i Int32 )
2017-05-30 11:49:17 +00:00
ENGINE = ReplicatedMergeTree ( ' /clickhouse/tables/ {layer} - {shard} /hits ' , ' {replica} ' , p , p , 1 )
""" )
2017-08-02 14:42:35 +00:00
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS all_merge_32 ON CLUSTER cluster ( p Date , i Int32 )
2018-09-06 13:03:42 +00:00
ENGINE = Distributed ( cluster , default , merge_for_alter , i )
2017-05-30 11:49:17 +00:00
""" )
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS all_merge_64 ON CLUSTER cluster ( p Date , i Int64 , s String )
2018-09-06 13:03:42 +00:00
ENGINE = Distributed ( cluster , default , merge_for_alter , i )
2017-05-30 11:49:17 +00:00
""" )
for i in xrange ( 4 ) :
k = ( i / 2 ) * 2
2018-09-06 13:03:42 +00:00
insert_reliable ( cluster . instances [ ' ch {} ' . format ( i + 1 ) ] , " INSERT INTO merge_for_alter (i) VALUES ( {} )( {} ) " . format ( k , k + 1 ) )
2017-05-30 11:49:17 +00:00
assert TSV ( instance . query ( " SELECT i FROM all_merge_32 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \n ' . format ( x ) for x in xrange ( 4 ) ] ) )
2018-09-06 13:03:42 +00:00
ddl_check_query ( instance , " ALTER TABLE merge_for_alter ON CLUSTER cluster MODIFY COLUMN i Int64 " )
ddl_check_query ( instance , " ALTER TABLE merge_for_alter ON CLUSTER cluster ADD COLUMN s DEFAULT toString(i) " )
2017-05-30 11:49:17 +00:00
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 4 ) ] ) )
for i in xrange ( 4 ) :
k = ( i / 2 ) * 2 + 4
2018-09-06 13:03:42 +00:00
insert_reliable ( cluster . instances [ ' ch {} ' . format ( i + 1 ) ] , " INSERT INTO merge_for_alter (p, i) VALUES (31, {} )(31, {} ) " . format ( k , k + 1 ) )
2017-05-30 11:49:17 +00:00
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 8 ) ] ) )
2018-09-06 13:03:42 +00:00
ddl_check_query ( instance , " ALTER TABLE merge_for_alter ON CLUSTER cluster DETACH PARTITION 197002 " )
2017-05-30 11:49:17 +00:00
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 4 ) ] ) )
2018-09-06 13:03:42 +00:00
ddl_check_query ( instance , " DROP TABLE merge_for_alter ON CLUSTER cluster " )
2017-08-02 14:42:35 +00:00
# Enable random ZK packet drops
cluster . pm_random_drops . push_rules ( firewall_drops_rules )
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , " DROP TABLE all_merge_32 ON CLUSTER cluster " )
ddl_check_query ( instance , " DROP TABLE all_merge_64 ON CLUSTER cluster " )
def test_simple_alters ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
ddl_check_query ( instance , " DROP TABLE IF EXISTS merge ON CLUSTER cluster_without_replication " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS all_merge_32 ON CLUSTER cluster_without_replication " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS all_merge_64 ON CLUSTER cluster_without_replication " )
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS merge ON CLUSTER cluster_without_replication ( p Date , i Int32 )
ENGINE = MergeTree ( p , p , 1 )
""" )
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS all_merge_32 ON CLUSTER cluster_without_replication ( p Date , i Int32 )
ENGINE = Distributed ( cluster_without_replication , default , merge , i )
""" )
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS all_merge_64 ON CLUSTER cluster_without_replication ( p Date , i Int64 , s String )
ENGINE = Distributed ( cluster_without_replication , default , merge , i )
""" )
for i in xrange ( 4 ) :
k = ( i / 2 ) * 2
cluster . instances [ ' ch {} ' . format ( i + 1 ) ] . query ( " INSERT INTO merge (i) VALUES ( {} )( {} ) " . format ( k , k + 1 ) )
assert TSV ( instance . query ( " SELECT i FROM all_merge_32 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \n ' . format ( x ) for x in xrange ( 4 ) ] ) )
2018-09-03 15:02:24 +00:00
time . sleep ( 5 )
2017-05-30 11:49:17 +00:00
ddl_check_query ( instance , " ALTER TABLE merge ON CLUSTER cluster_without_replication MODIFY COLUMN i Int64 " )
2018-09-03 15:02:24 +00:00
time . sleep ( 5 )
2017-08-03 17:00:41 +00:00
ddl_check_query ( instance , " ALTER TABLE merge ON CLUSTER cluster_without_replication ADD COLUMN s DEFAULT toString(i) FORMAT TSV " )
2017-05-30 11:49:17 +00:00
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 4 ) ] ) )
for i in xrange ( 4 ) :
k = ( i / 2 ) * 2 + 4
cluster . instances [ ' ch {} ' . format ( i + 1 ) ] . query ( " INSERT INTO merge (p, i) VALUES (31, {} )(31, {} ) " . format ( k , k + 1 ) )
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 8 ) ] ) )
ddl_check_query ( instance , " ALTER TABLE merge ON CLUSTER cluster_without_replication DETACH PARTITION 197002 " )
assert TSV ( instance . query ( " SELECT i, s FROM all_merge_64 ORDER BY i " ) ) == TSV ( ' ' . join ( [ ' {} \t {} \n ' . format ( x , x ) for x in xrange ( 4 ) ] ) )
ddl_check_query ( instance , " DROP TABLE merge ON CLUSTER cluster_without_replication " )
ddl_check_query ( instance , " DROP TABLE all_merge_32 ON CLUSTER cluster_without_replication " )
ddl_check_query ( instance , " DROP TABLE all_merge_64 ON CLUSTER cluster_without_replication " )
2017-08-25 13:47:09 +00:00
2018-01-22 18:48:44 +00:00
def test_macro ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
ddl_check_query ( instance , " CREATE TABLE tab ON CLUSTER ' {cluster} ' (value UInt8) ENGINE = Memory " )
for i in xrange ( 4 ) :
insert_reliable ( cluster . instances [ ' ch {} ' . format ( i + 1 ) ] , " INSERT INTO tab VALUES ( {} ) " . format ( i ) )
ddl_check_query ( instance , " CREATE TABLE distr ON CLUSTER ' {cluster} ' (value UInt8) ENGINE = Distributed( ' {cluster} ' , ' default ' , ' tab ' , value % 4) " )
assert TSV ( instance . query ( " SELECT value FROM distr ORDER BY value " ) ) == TSV ( ' 0 \n 1 \n 2 \n 3 \n ' )
assert TSV ( cluster . instances [ ' ch3 ' ] . query ( " SELECT value FROM distr ORDER BY value " ) ) == TSV ( ' 0 \n 1 \n 2 \n 3 \n ' )
ddl_check_query ( instance , " DROP TABLE IF EXISTS distr ON CLUSTER ' {cluster} ' " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS tab ON CLUSTER ' {cluster} ' " )
2018-04-17 19:33:58 +00:00
2018-10-01 09:01:50 +00:00
def test_implicit_macros ( started_cluster ) :
2018-09-28 19:07:29 +00:00
# Temporarily disable random ZK packet drops, they might broke creation if ReplicatedMergeTree replicas
firewall_drops_rules = cluster . pm_random_drops . pop_rules ( )
2018-10-01 09:01:50 +00:00
instance = cluster . instances [ ' ch2 ' ]
2018-09-29 13:12:53 +00:00
ddl_check_query ( instance , " DROP DATABASE IF EXISTS test_db ON CLUSTER ' {cluster} ' " )
2018-09-28 19:07:29 +00:00
ddl_check_query ( instance , " CREATE DATABASE IF NOT EXISTS test_db ON CLUSTER ' {cluster} ' " )
ddl_check_query ( instance , """
CREATE TABLE IF NOT EXISTS test_db . test_macro ON CLUSTER ' {cluster} ' ( p Date , i Int32 )
ENGINE = ReplicatedMergeTree ( ' /clickhouse/tables/ {database} / {layer} - {shard} / {table} ' , ' {replica} ' , p , p , 1 )
""" )
# Check that table was created at correct path in zookeeper
assert cluster . get_kazoo_client ( ' zoo1 ' ) . exists ( ' /clickhouse/tables/test_db/0-1/test_macro ' ) is not None
# Enable random ZK packet drops
cluster . pm_random_drops . push_rules ( firewall_drops_rules )
2018-04-17 19:33:58 +00:00
def test_allowed_databases ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
instance . query ( " CREATE DATABASE IF NOT EXISTS db1 ON CLUSTER cluster " )
instance . query ( " CREATE DATABASE IF NOT EXISTS db2 ON CLUSTER cluster " )
instance . query ( " CREATE TABLE db1.t1 ON CLUSTER cluster (i Int8) ENGINE = Memory " , settings = { " user " : " restricted_user " } )
with pytest . raises ( Exception ) :
instance . query ( " CREATE TABLE db2.t2 ON CLUSTER cluster (i Int8) ENGINE = Memory " , settings = { " user " : " restricted_user " } )
with pytest . raises ( Exception ) :
instance . query ( " CREATE TABLE t3 ON CLUSTER cluster (i Int8) ENGINE = Memory " , settings = { " user " : " restricted_user " } )
with pytest . raises ( Exception ) :
instance . query ( " DROP DATABASE db2 ON CLUSTER cluster " , settings = { " user " : " restricted_user " } )
instance . query ( " DROP DATABASE db1 ON CLUSTER cluster " , settings = { " user " : " restricted_user " } )
2018-07-20 05:46:48 +00:00
def test_kill_query ( started_cluster ) :
instance = cluster . instances [ ' ch3 ' ]
ddl_check_query ( instance , " KILL QUERY ON CLUSTER ' cluster ' WHERE NOT elapsed FORMAT TSV " )
def test_detach_query ( started_cluster ) :
instance = cluster . instances [ ' ch3 ' ]
ddl_check_query ( instance , " DROP TABLE IF EXISTS test_attach ON CLUSTER cluster FORMAT TSV " )
ddl_check_query ( instance , " CREATE TABLE test_attach ON CLUSTER cluster (i Int8)ENGINE = Log " )
ddl_check_query ( instance , " DETACH TABLE test_attach ON CLUSTER cluster FORMAT TSV " )
ddl_check_query ( instance , " ATTACH TABLE test_attach ON CLUSTER cluster " )
def test_optimize_query ( started_cluster ) :
instance = cluster . instances [ ' ch3 ' ]
ddl_check_query ( instance , " DROP TABLE IF EXISTS test_optimize ON CLUSTER cluster FORMAT TSV " )
ddl_check_query ( instance , " CREATE TABLE test_optimize ON CLUSTER cluster (p Date, i Int32) ENGINE = MergeTree(p, p, 8192) " )
ddl_check_query ( instance , " OPTIMIZE TABLE test_optimize ON CLUSTER cluster FORMAT TSV " )
2018-09-28 16:43:41 +00:00
2018-04-17 19:33:58 +00:00
2018-09-28 16:05:58 +00:00
def test_create_as_select ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
2018-09-28 16:43:41 +00:00
ddl_check_query ( instance , " CREATE TABLE test_as_select ON CLUSTER cluster ENGINE = Memory AS (SELECT 1 AS x UNION ALL SELECT 2 AS x) " )
assert TSV ( instance . query ( " SELECT x FROM test_as_select ORDER BY x " ) ) == TSV ( " 1 \n 2 \n " )
2018-09-28 16:11:56 +00:00
ddl_check_query ( instance , " DROP TABLE IF EXISTS test_as_select ON CLUSTER cluster " )
2018-09-28 16:05:58 +00:00
2019-04-11 17:20:36 +00:00
def test_create_reserved ( started_cluster ) :
instance = cluster . instances [ ' ch2 ' ]
ddl_check_query ( instance , " CREATE TABLE test_reserved ON CLUSTER cluster (`p` Date, `image` Nullable(String), `index` Nullable(Float64), `invalidate` Nullable(Int64)) ENGINE = MergeTree(`p`, `p`, 8192) " )
ddl_check_query ( instance , " CREATE TABLE test_as_reserved ON CLUSTER cluster ENGINE = Memory AS (SELECT * from test_reserved) " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS test_reserved ON CLUSTER cluster " )
ddl_check_query ( instance , " DROP TABLE IF EXISTS test_as_reserved ON CLUSTER cluster " )
2017-08-25 13:47:09 +00:00
if __name__ == ' __main__ ' :
with contextmanager ( started_cluster ) ( ) as cluster :
for name , instance in cluster . instances . items ( ) :
print name , instance . ip_address
raw_input ( " Cluster created, press any key to destroy... " )