forked from PNixx/clickhouse-activerecord
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'new-master' into ruby-compatible-fix
* new-master: (77 commits) Use a flag to track updates/deletes instead of guessing (PNixx#188) Do not squish table definitions in schema dump. (PNixx#187) Add support for integer limits in map type (PNixx#178) Improve function dumps (PNixx#179) Reliably sort functions, views, and materialized views in schema (PNixx#181) Maintain primary key type specificity (PNixx#183) Support create table with request settings Support codec column PNixx#135, refactoring Add Array support to Map (PNixx#158) SchemaDumper adds materialized view destination (PNixx#159) Improve DB::Exception error handling (PNixx#165) Add blank line after create_function in schema (PNixx#170) Include column definitions in schema dump if the column name is not `id` (PNixx#173) Add support for LIMIT BY clause (PNixx#169) Add support for force `CREATE FUNCTION` (PNixx#146) Implement GROUP BY GROUPING SETS with new `group_by_grouping_sets` query method. (PNixx#161) fix for function creation in structure.sql (PNixx#166) fix schema dumper fix spec fix detect model primary key for older clickhouse versions ...
- Loading branch information
Showing
88 changed files
with
3,316 additions
and
986 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<?xml version="1.0"?> | ||
<clickhouse> | ||
|
||
<http_port>8123</http_port> | ||
<interserver_http_port>9009</interserver_http_port> | ||
<interserver_http_host>clickhouse1</interserver_http_host> | ||
|
||
<users_config>users.xml</users_config> | ||
<default_profile>default</default_profile> | ||
<default_database>default</default_database> | ||
|
||
<mark_cache_size>5368709120</mark_cache_size> | ||
|
||
<path>/var/lib/clickhouse/</path> | ||
<tmp_path>/var/lib/clickhouse/tmp/</tmp_path> | ||
<user_files_path>/var/lib/clickhouse/user_files/</user_files_path> | ||
<access_control_path>/var/lib/clickhouse/access/</access_control_path> | ||
<keep_alive_timeout>3</keep_alive_timeout> | ||
|
||
<logger> | ||
<level>debug</level> | ||
<log>/var/log/clickhouse-server/clickhouse-server.log</log> | ||
<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog> | ||
<size>1000M</size> | ||
<count>10</count> | ||
<console>1</console> | ||
</logger> | ||
|
||
<remote_servers> | ||
<test_cluster> | ||
<shard> | ||
<replica> | ||
<host>clickhouse1</host> | ||
<port>9000</port> | ||
</replica> | ||
<replica> | ||
<host>clickhouse2</host> | ||
<port>9000</port> | ||
</replica> | ||
</shard> | ||
</test_cluster> | ||
</remote_servers> | ||
|
||
<keeper_server> | ||
<tcp_port>9181</tcp_port> | ||
<server_id>1</server_id> | ||
<log_storage_path>/var/lib/clickhouse/coordination/log</log_storage_path> | ||
<snapshot_storage_path>/var/lib/clickhouse/coordination/snapshots</snapshot_storage_path> | ||
|
||
<coordination_settings> | ||
<operation_timeout_ms>10000</operation_timeout_ms> | ||
<session_timeout_ms>30000</session_timeout_ms> | ||
<raft_logs_level>trace</raft_logs_level> | ||
<rotate_log_storage_interval>10000</rotate_log_storage_interval> | ||
</coordination_settings> | ||
|
||
<raft_configuration> | ||
<server> | ||
<id>1</id> | ||
<hostname>clickhouse1</hostname> | ||
<port>9000</port> | ||
</server> | ||
<server> | ||
<id>2</id> | ||
<hostname>clickhouse2</hostname> | ||
<port>9000</port> | ||
</server> | ||
</raft_configuration> | ||
</keeper_server> | ||
|
||
<zookeeper> | ||
<node> | ||
<host>clickhouse1</host> | ||
<port>9181</port> | ||
</node> | ||
<node> | ||
<host>clickhouse2</host> | ||
<port>9181</port> | ||
</node> | ||
</zookeeper> | ||
|
||
<macros> | ||
<cluster>test_cluster</cluster> | ||
<replica>clickhouse1</replica> | ||
<shard>1</shard> | ||
</macros> | ||
|
||
<distributed_ddl> | ||
<path>/clickhouse/test_cluster/task_queue/ddl</path> | ||
</distributed_ddl> | ||
|
||
<query_log> | ||
<database>system</database> | ||
<table>query_log</table> | ||
<partition_by>toYYYYMM(event_date)</partition_by> | ||
<flush_interval_milliseconds>1000</flush_interval_milliseconds> | ||
</query_log> | ||
|
||
<http_options_response> | ||
<header> | ||
<name>Access-Control-Allow-Origin</name> | ||
<value>*</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Headers</name> | ||
<value>accept, origin, x-requested-with, content-type, authorization</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Methods</name> | ||
<value>POST, GET, OPTIONS</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Max-Age</name> | ||
<value>86400</value> | ||
</header> | ||
</http_options_response> | ||
</clickhouse> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
<?xml version="1.0"?> | ||
<clickhouse> | ||
|
||
<http_port>8123</http_port> | ||
<interserver_http_port>9009</interserver_http_port> | ||
<interserver_http_host>clickhouse2</interserver_http_host> | ||
|
||
<users_config>users.xml</users_config> | ||
<default_profile>default</default_profile> | ||
<default_database>default</default_database> | ||
|
||
<mark_cache_size>5368709120</mark_cache_size> | ||
|
||
<path>/var/lib/clickhouse/</path> | ||
<tmp_path>/var/lib/clickhouse/tmp/</tmp_path> | ||
<user_files_path>/var/lib/clickhouse/user_files/</user_files_path> | ||
<access_control_path>/var/lib/clickhouse/access/</access_control_path> | ||
<keep_alive_timeout>3</keep_alive_timeout> | ||
|
||
<logger> | ||
<level>debug</level> | ||
<log>/var/log/clickhouse-server/clickhouse-server.log</log> | ||
<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog> | ||
<size>1000M</size> | ||
<count>10</count> | ||
<console>1</console> | ||
</logger> | ||
|
||
<remote_servers> | ||
<test_cluster> | ||
<shard> | ||
<replica> | ||
<host>clickhouse1</host> | ||
<port>9000</port> | ||
</replica> | ||
<replica> | ||
<host>clickhouse2</host> | ||
<port>9000</port> | ||
</replica> | ||
</shard> | ||
</test_cluster> | ||
</remote_servers> | ||
|
||
<keeper_server> | ||
<tcp_port>9181</tcp_port> | ||
<server_id>2</server_id> | ||
<log_storage_path>/var/lib/clickhouse/coordination/log</log_storage_path> | ||
<snapshot_storage_path>/var/lib/clickhouse/coordination/snapshots</snapshot_storage_path> | ||
|
||
<coordination_settings> | ||
<operation_timeout_ms>10000</operation_timeout_ms> | ||
<session_timeout_ms>30000</session_timeout_ms> | ||
<raft_logs_level>trace</raft_logs_level> | ||
<rotate_log_storage_interval>10000</rotate_log_storage_interval> | ||
</coordination_settings> | ||
|
||
<raft_configuration> | ||
<server> | ||
<id>1</id> | ||
<hostname>clickhouse1</hostname> | ||
<port>9000</port> | ||
</server> | ||
<server> | ||
<id>2</id> | ||
<hostname>clickhouse2</hostname> | ||
<port>9000</port> | ||
</server> | ||
</raft_configuration> | ||
</keeper_server> | ||
|
||
<zookeeper> | ||
<node> | ||
<host>clickhouse1</host> | ||
<port>9181</port> | ||
</node> | ||
<node> | ||
<host>clickhouse2</host> | ||
<port>9181</port> | ||
</node> | ||
</zookeeper> | ||
|
||
<macros> | ||
<cluster>test_cluster</cluster> | ||
<replica>clickhouse2</replica> | ||
<shard>1</shard> | ||
</macros> | ||
|
||
<distributed_ddl> | ||
<path>/clickhouse/test_cluster/task_queue/ddl</path> | ||
</distributed_ddl> | ||
|
||
<query_log> | ||
<database>system</database> | ||
<table>query_log</table> | ||
<partition_by>toYYYYMM(event_date)</partition_by> | ||
<flush_interval_milliseconds>1000</flush_interval_milliseconds> | ||
</query_log> | ||
|
||
<http_options_response> | ||
<header> | ||
<name>Access-Control-Allow-Origin</name> | ||
<value>*</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Headers</name> | ||
<value>accept, origin, x-requested-with, content-type, authorization</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Methods</name> | ||
<value>POST, GET, OPTIONS</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Max-Age</name> | ||
<value>86400</value> | ||
</header> | ||
</http_options_response> | ||
</clickhouse> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0"?> | ||
<clickhouse> | ||
|
||
<http_port>8123</http_port> | ||
<tcp_port>9000</tcp_port> | ||
|
||
<users_config>users.xml</users_config> | ||
<default_profile>default</default_profile> | ||
<default_database>default</default_database> | ||
|
||
<mark_cache_size>5368709120</mark_cache_size> | ||
|
||
<path>/var/lib/clickhouse/</path> | ||
<tmp_path>/var/lib/clickhouse/tmp/</tmp_path> | ||
<user_files_path>/var/lib/clickhouse/user_files/</user_files_path> | ||
<access_control_path>/var/lib/clickhouse/access/</access_control_path> | ||
<keep_alive_timeout>3</keep_alive_timeout> | ||
|
||
<logger> | ||
<level>debug</level> | ||
<log>/var/log/clickhouse-server/clickhouse-server.log</log> | ||
<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog> | ||
<size>1000M</size> | ||
<count>10</count> | ||
<console>1</console> | ||
</logger> | ||
|
||
<query_log> | ||
<database>system</database> | ||
<table>query_log</table> | ||
<partition_by>toYYYYMM(event_date)</partition_by> | ||
<flush_interval_milliseconds>1000</flush_interval_milliseconds> | ||
</query_log> | ||
|
||
<http_options_response> | ||
<header> | ||
<name>Access-Control-Allow-Origin</name> | ||
<value>*</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Headers</name> | ||
<value>accept, origin, x-requested-with, content-type, authorization</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Allow-Methods</name> | ||
<value>POST, GET, OPTIONS</value> | ||
</header> | ||
<header> | ||
<name>Access-Control-Max-Age</name> | ||
<value>86400</value> | ||
</header> | ||
</http_options_response> | ||
|
||
</clickhouse> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<clickhouse> | ||
|
||
<profiles> | ||
<default> | ||
<load_balancing>random</load_balancing> | ||
</default> | ||
</profiles> | ||
|
||
<users> | ||
<default> | ||
<password></password> | ||
<networks> | ||
<ip>::/0</ip> | ||
</networks> | ||
<profile>default</profile> | ||
<quota>default</quota> | ||
<access_management>1</access_management> | ||
</default> | ||
</users> | ||
|
||
<quotas> | ||
<default> | ||
<interval> | ||
<duration>3600</duration> | ||
<queries>0</queries> | ||
<errors>0</errors> | ||
<result_rows>0</result_rows> | ||
<read_rows>0</read_rows> | ||
<execution_time>0</execution_time> | ||
</interval> | ||
</default> | ||
</quotas> | ||
</clickhouse> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
version: '3.5' | ||
|
||
services: | ||
clickhouse1: | ||
image: 'clickhouse/clickhouse-server:${CLICKHOUSE_VERSION-23.11-alpine}' | ||
ulimits: | ||
nofile: | ||
soft: 262144 | ||
hard: 262144 | ||
hostname: clickhouse1 | ||
container_name: clickhouse-activerecord-clickhouse-server-1 | ||
ports: | ||
- '8124:8123' | ||
- '9001:9000' | ||
volumes: | ||
- './clickhouse/cluster/server1_config.xml:/etc/clickhouse-server/config.xml' | ||
- './clickhouse/users.xml:/etc/clickhouse-server/users.xml' | ||
healthcheck: | ||
test: bash -c "exec 6<> /dev/tcp/localhost/8123" | ||
interval: 5s | ||
|
||
clickhouse2: | ||
image: 'clickhouse/clickhouse-server:${CLICKHOUSE_VERSION-23.11-alpine}' | ||
ulimits: | ||
nofile: | ||
soft: 262144 | ||
hard: 262144 | ||
hostname: clickhouse2 | ||
container_name: clickhouse-activerecord-clickhouse-server-2 | ||
ports: | ||
- '8125:8123' | ||
volumes: | ||
- './clickhouse/cluster/server2_config.xml:/etc/clickhouse-server/config.xml' | ||
- './clickhouse/users.xml:/etc/clickhouse-server/users.xml' | ||
healthcheck: | ||
test: bash -c "exec 6<> /dev/tcp/localhost/8123" | ||
interval: 5s | ||
|
||
# Using Nginx as a cluster entrypoint and a round-robin load balancer for HTTP requests | ||
nginx: | ||
image: 'nginx:1.23.1-alpine' | ||
hostname: nginx | ||
ports: | ||
- '28123:8123' | ||
volumes: | ||
- './nginx/local.conf:/etc/nginx/conf.d/local.conf' | ||
container_name: clickhouse-activerecord-nginx | ||
depends_on: | ||
clickhouse1: | ||
condition: service_healthy | ||
clickhouse2: | ||
condition: service_healthy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: '3.8' | ||
services: | ||
clickhouse: | ||
image: 'clickhouse/clickhouse-server:${CLICKHOUSE_VERSION-23.11-alpine}' | ||
container_name: 'clickhouse-activerecord-clickhouse-server' | ||
ports: | ||
- '18123:8123' | ||
ulimits: | ||
nofile: | ||
soft: 262144 | ||
hard: 262144 | ||
volumes: | ||
- './clickhouse/single/config.xml:/etc/clickhouse-server/config.xml' | ||
- './clickhouse/users.xml:/etc/clickhouse-server/users.xml' | ||
healthcheck: | ||
test: bash -c "exec 6<> /dev/tcp/localhost/8123" | ||
interval: 5s |
Oops, something went wrong.