-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 3 node zookeeper and keeper clusters to all suites
- Loading branch information
Showing
230 changed files
with
4,984 additions
and
2,220 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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
aes_encryption/aes_encryption_env_arm64/zookeeper-service.yml
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<clickhouse> | ||
<yandex> | ||
<zookeeper> | ||
<node index="1"> | ||
<host>zookeeper</host> | ||
<node> | ||
<host from_env="COORDINATOR_HOST_1"/> | ||
<port>2181</port> | ||
</node> | ||
<node> | ||
<host from_env="COORDINATOR_HOST_2"/> | ||
<port>2181</port> | ||
</node> | ||
<node> | ||
<host from_env="COORDINATOR_HOST_3"/> | ||
<port>2181</port> | ||
</node> | ||
<session_timeout_ms>15000</session_timeout_ms> | ||
</zookeeper> | ||
</clickhouse> | ||
</yandex> |
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,58 @@ | ||
<clickhouse> | ||
<logger> | ||
<level>trace</level> | ||
<log>/var/log/clickhouse-server/clickhouse-keeper.log</log> | ||
<errorlog>/var/log/clickhouse-server/clickhouse-keeper.err.log</errorlog> | ||
<size>100M</size> | ||
<count>5</count> | ||
<console>true</console> | ||
</logger> | ||
<listen_host>0.0.0.0</listen_host> | ||
<keeper_server> | ||
<tcp_port>2181</tcp_port> | ||
<server_id from_env="KEEPER_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> <!-- defaults --> | ||
<min_session_timeout_ms>10000</min_session_timeout_ms> <!-- defaults --> | ||
<session_timeout_ms>30000</session_timeout_ms> <!-- defaults to 30sec in clickhouse --> | ||
<raft_logs_level>information</raft_logs_level> | ||
<compress_logs>false</compress_logs> | ||
<!-- All settings listed in https://github.com/ClickHouse/ClickHouse/blob/master/src/Coordination/CoordinationSettings.h --> | ||
</coordination_settings> | ||
|
||
<!-- dynamic reconfiguration --> | ||
<enable_reconfiguration>true</enable_reconfiguration> | ||
|
||
<!-- enable sanity hostname checks for cluster configuration (if localhost is used with remote endpoints) | ||
<hostname_checks_enabled>true</hostname_checks_enabled> --> | ||
|
||
<http_control> | ||
<port>9182</port> | ||
<readiness> | ||
<endpoint>/ready</endpoint> | ||
</readiness> | ||
</http_control> | ||
|
||
<raft_configuration> | ||
<server> | ||
<id>1</id> | ||
<hostname>keeper1</hostname> | ||
<port>9234</port> | ||
</server> | ||
<server> | ||
<id>2</id> | ||
<hostname>keeper2</hostname> | ||
<port>9234</port> | ||
</server> | ||
<server> | ||
<id>3</id> | ||
<hostname>keeper3</hostname> | ||
<port>9234</port> | ||
</server> | ||
</raft_configuration> | ||
|
||
</keeper_server> | ||
</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
Oops, something went wrong.