-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github workflows, fix spec delete and update, fix injection inter…
…nal and schema classes for rails 7
- Loading branch information
Showing
22 changed files
with
757 additions
and
196 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,41 @@ | ||
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' | ||
|
||
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' | ||
|
||
# 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 |
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,14 @@ | ||
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' |
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,12 @@ | ||
upstream clickhouse_cluster { | ||
server clickhouse1:8123; | ||
server clickhouse2:8123; | ||
} | ||
|
||
server { | ||
listen 8123; | ||
client_max_body_size 100M; | ||
location / { | ||
proxy_pass http://clickhouse_cluster; | ||
} | ||
} |
Oops, something went wrong.