├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config └── clickhouse-client │ └── conf.d │ └── ssl.xml ├── results └── .gitkeep ├── scripts ├── report.lua ├── run_benchmark_and_write_csv.sh ├── run_clickhouse_benchmark.sh ├── run_http_benchmark.sh └── run_query.sh └── tests ├── 001_simple_ping ├── run.sh ├── setup.docker.sh └── teardown.docker.sh ├── 002_ping_no_logging ├── conf.d │ └── nolog.xml ├── run.sh ├── setup.docker.sh └── teardown.docker.sh ├── 003_select_1_no_logging ├── conf.d │ └── nolog.xml ├── run.sh ├── setup.docker.sh └── teardown.docker.sh ├── 004_max_of_100K_randoms ├── conf.d │ └── nolog.xml ├── run.sh ├── setup.docker.sh └── teardown.docker.sh ├── 005_max_of_100K_randoms_single_thread ├── conf.d │ └── nolog.xml ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 006_mergetree_index_granularity_16 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 007_mergetree_index_granularity_32 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 008_mergetree_index_granularity_64 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 009_mergetree_index_granularity_128 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 010_mergetree_index_granularity_256 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 011_mergetree_index_granularity_512 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 012_mergetree_index_granularity_1024 ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 013_merge_tree_index_granularity_256_use_uncompressed_cache ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ ├── fs12M.sql │ └── int20M.sql ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ ├── profile_default_max_threads_1.xml │ └── profile_default_use_uncompressed_cache.xml ├── 014_fs2M_dictionary ├── bad_run.sh ├── conf.d │ ├── dictionaries_config.xml │ └── nolog.xml ├── dictionaries.d │ └── fs2M.xml ├── docker-entrypoint-initdb.d │ └── fs2M.sql ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 015_int20M_dictionary ├── conf.d │ ├── dictionaries_config.xml │ └── nolog.xml ├── dictionaries.d │ └── int20M.xml ├── docker-entrypoint-initdb.d │ └── int20M.sql ├── int20Mdict_lookups.sh ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ ├── profile_default_max_threads_1.xml │ └── profile_default_use_uncompressed_cache.xml ├── 016_join_fs12M ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ └── fs12M.sql ├── fs12join_lookups.sh ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 017_join_int20M ├── conf.d │ └── nolog.xml ├── docker-entrypoint-initdb.d │ └── int20M.sql ├── int20M_lookups.sh ├── run.sh ├── setup.docker.sh ├── teardown.docker.sh └── users.d │ └── profile_default_max_threads_1.xml ├── 018_select_1_http_behind_nginx ├── conf.d │ └── nolog.xml ├── nginx │ ├── conf.d │ │ └── default.conf │ └── nginx.conf ├── run.sh ├── setup.docker.sh └── teardown.docker.sh ├── 019_select_1_https ├── conf.d │ ├── nolog.xml │ └── ssl.xml ├── run.sh ├── setup.docker.sh ├── ssl │ ├── dhparam.pem │ ├── server.crt │ └── server.key └── teardown.docker.sh ├── helpers ├── fs12M_int20M_lookups.sh ├── run_benchmark_in_docker.sh ├── run_query_in_docker.sh ├── start_clickhouse_server_docker.sh ├── stop_clickhouse_server_docker.sh ├── wait_for_clickhouse_server_start.sh └── wait_for_init_db.sh └── run.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | results/ 2 | tests/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/README.md -------------------------------------------------------------------------------- /config/clickhouse-client/conf.d/ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/config/clickhouse-client/conf.d/ssl.xml -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/report.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/scripts/report.lua -------------------------------------------------------------------------------- /scripts/run_benchmark_and_write_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/scripts/run_benchmark_and_write_csv.sh -------------------------------------------------------------------------------- /scripts/run_clickhouse_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/scripts/run_clickhouse_benchmark.sh -------------------------------------------------------------------------------- /scripts/run_http_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/scripts/run_http_benchmark.sh -------------------------------------------------------------------------------- /scripts/run_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/scripts/run_query.sh -------------------------------------------------------------------------------- /tests/001_simple_ping/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/001_simple_ping/run.sh -------------------------------------------------------------------------------- /tests/001_simple_ping/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/001_simple_ping/setup.docker.sh -------------------------------------------------------------------------------- /tests/001_simple_ping/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/002_ping_no_logging/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/002_ping_no_logging/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/002_ping_no_logging/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/002_ping_no_logging/run.sh -------------------------------------------------------------------------------- /tests/002_ping_no_logging/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/002_ping_no_logging/setup.docker.sh -------------------------------------------------------------------------------- /tests/002_ping_no_logging/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/003_select_1_no_logging/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/003_select_1_no_logging/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/003_select_1_no_logging/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/003_select_1_no_logging/run.sh -------------------------------------------------------------------------------- /tests/003_select_1_no_logging/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/003_select_1_no_logging/setup.docker.sh -------------------------------------------------------------------------------- /tests/003_select_1_no_logging/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/004_max_of_100K_randoms/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/004_max_of_100K_randoms/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/004_max_of_100K_randoms/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/004_max_of_100K_randoms/run.sh -------------------------------------------------------------------------------- /tests/004_max_of_100K_randoms/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/004_max_of_100K_randoms/setup.docker.sh -------------------------------------------------------------------------------- /tests/004_max_of_100K_randoms/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/005_max_of_100K_randoms_single_thread/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/005_max_of_100K_randoms_single_thread/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/005_max_of_100K_randoms_single_thread/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/005_max_of_100K_randoms_single_thread/run.sh -------------------------------------------------------------------------------- /tests/005_max_of_100K_randoms_single_thread/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/005_max_of_100K_randoms_single_thread/setup.docker.sh -------------------------------------------------------------------------------- /tests/005_max_of_100K_randoms_single_thread/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/005_max_of_100K_randoms_single_thread/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/005_max_of_100K_randoms_single_thread/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/run.sh -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/setup.docker.sh -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/006_mergetree_index_granularity_16/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/006_mergetree_index_granularity_16/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/run.sh -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/setup.docker.sh -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/007_mergetree_index_granularity_32/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/007_mergetree_index_granularity_32/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/run.sh -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/setup.docker.sh -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/008_mergetree_index_granularity_64/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/008_mergetree_index_granularity_64/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/run.sh -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/setup.docker.sh -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/009_mergetree_index_granularity_128/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/009_mergetree_index_granularity_128/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/run.sh -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/setup.docker.sh -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/010_mergetree_index_granularity_256/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/010_mergetree_index_granularity_256/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/run.sh -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/setup.docker.sh -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/011_mergetree_index_granularity_512/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/011_mergetree_index_granularity_512/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/run.sh -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/setup.docker.sh -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | 2 | source ../helpers/stop_clickhouse_server_docker.sh 3 | -------------------------------------------------------------------------------- /tests/012_mergetree_index_granularity_1024/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/012_mergetree_index_granularity_1024/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/run.sh -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/setup.docker.sh -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | 2 | source ../helpers/stop_clickhouse_server_docker.sh 3 | -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/users.d/profile_default_use_uncompressed_cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/013_merge_tree_index_granularity_256_use_uncompressed_cache/users.d/profile_default_use_uncompressed_cache.xml -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/bad_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/bad_run.sh -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/conf.d/dictionaries_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/conf.d/dictionaries_config.xml -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/dictionaries.d/fs2M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/dictionaries.d/fs2M.xml -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/docker-entrypoint-initdb.d/fs2M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/docker-entrypoint-initdb.d/fs2M.sql -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/setup.docker.sh -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | 2 | source ../helpers/stop_clickhouse_server_docker.sh 3 | -------------------------------------------------------------------------------- /tests/014_fs2M_dictionary/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/014_fs2M_dictionary/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/conf.d/dictionaries_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/conf.d/dictionaries_config.xml -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/dictionaries.d/int20M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/dictionaries.d/int20M.xml -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/int20Mdict_lookups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/int20Mdict_lookups.sh -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/run.sh -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/setup.docker.sh -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | 2 | source ../helpers/stop_clickhouse_server_docker.sh 3 | -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/015_int20M_dictionary/users.d/profile_default_use_uncompressed_cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/015_int20M_dictionary/users.d/profile_default_use_uncompressed_cache.xml -------------------------------------------------------------------------------- /tests/016_join_fs12M/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/016_join_fs12M/docker-entrypoint-initdb.d/fs12M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/docker-entrypoint-initdb.d/fs12M.sql -------------------------------------------------------------------------------- /tests/016_join_fs12M/fs12join_lookups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/fs12join_lookups.sh -------------------------------------------------------------------------------- /tests/016_join_fs12M/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/run.sh -------------------------------------------------------------------------------- /tests/016_join_fs12M/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/setup.docker.sh -------------------------------------------------------------------------------- /tests/016_join_fs12M/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/016_join_fs12M/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/016_join_fs12M/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/017_join_int20M/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/017_join_int20M/docker-entrypoint-initdb.d/int20M.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/docker-entrypoint-initdb.d/int20M.sql -------------------------------------------------------------------------------- /tests/017_join_int20M/int20M_lookups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/int20M_lookups.sh -------------------------------------------------------------------------------- /tests/017_join_int20M/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/run.sh -------------------------------------------------------------------------------- /tests/017_join_int20M/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/setup.docker.sh -------------------------------------------------------------------------------- /tests/017_join_int20M/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/017_join_int20M/users.d/profile_default_max_threads_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/017_join_int20M/users.d/profile_default_max_threads_1.xml -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/nginx/nginx.conf -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/run.sh -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/setup.docker.sh -------------------------------------------------------------------------------- /tests/018_select_1_http_behind_nginx/teardown.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/018_select_1_http_behind_nginx/teardown.docker.sh -------------------------------------------------------------------------------- /tests/019_select_1_https/conf.d/nolog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/conf.d/nolog.xml -------------------------------------------------------------------------------- /tests/019_select_1_https/conf.d/ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/conf.d/ssl.xml -------------------------------------------------------------------------------- /tests/019_select_1_https/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/run.sh -------------------------------------------------------------------------------- /tests/019_select_1_https/setup.docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/setup.docker.sh -------------------------------------------------------------------------------- /tests/019_select_1_https/ssl/dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/ssl/dhparam.pem -------------------------------------------------------------------------------- /tests/019_select_1_https/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/ssl/server.crt -------------------------------------------------------------------------------- /tests/019_select_1_https/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/019_select_1_https/ssl/server.key -------------------------------------------------------------------------------- /tests/019_select_1_https/teardown.docker.sh: -------------------------------------------------------------------------------- 1 | source ../helpers/stop_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/helpers/fs12M_int20M_lookups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/fs12M_int20M_lookups.sh -------------------------------------------------------------------------------- /tests/helpers/run_benchmark_in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/run_benchmark_in_docker.sh -------------------------------------------------------------------------------- /tests/helpers/run_query_in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/run_query_in_docker.sh -------------------------------------------------------------------------------- /tests/helpers/start_clickhouse_server_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/start_clickhouse_server_docker.sh -------------------------------------------------------------------------------- /tests/helpers/stop_clickhouse_server_docker.sh: -------------------------------------------------------------------------------- 1 | docker stop ch_sts_testserver -------------------------------------------------------------------------------- /tests/helpers/wait_for_clickhouse_server_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/wait_for_clickhouse_server_start.sh -------------------------------------------------------------------------------- /tests/helpers/wait_for_init_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/helpers/wait_for_init_db.sh -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altinity/clickhouse-sts/HEAD/tests/run.sh --------------------------------------------------------------------------------