Skip to content

Commit f26f9af

Browse files
authored
Merge pull request #314 from Baitur5/fix_example_profile_in_readme
Fixed incorrect values in <Example Profile> section in README.md
2 parents 538d025 + 8063d88 commit f26f9af

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,25 +67,25 @@ your_profile_name:
6767
port: [8123] # If not set, defaults to 8123, 8443, 9000, 9440 depending on the secure and driver settings
6868
user: [default] # User for all database operations
6969
password: [<empty string>] # Password for the user
70-
cluster: [<empty string>] If set, certain DDL/table operations will be executed with the `ON CLUSTER` clause using this cluster. Distributed materializations require this setting to work. See the following ClickHouse Cluster section for more details.
70+
cluster: [<empty string>] # If set, certain DDL/table operations will be executed with the `ON CLUSTER` clause using this cluster. Distributed materializations require this setting to work. See the following ClickHouse Cluster section for more details.
7171
verify: [True] # Validate TLS certificate if using TLS/SSL
7272
secure: [False] # Use TLS (native protocol) or HTTPS (http protocol)
7373
retries: [1] # Number of times to retry a "retriable" database exception (such as a 503 'Service Unavailable' error)
74-
compression: [<empty string>] Use gzip compression if truthy (http), or compression type for a native connection
74+
compression: [<empty string>] # Use gzip compression if truthy (http), or compression type for a native connection
7575
connect_timeout: [10] # Timeout in seconds to establish a connection to ClickHouse
7676
send_receive_timeout: [300] # Timeout in seconds to receive data from the ClickHouse server
7777
cluster_mode: [False] # Use specific settings designed to improve operation on Replicated databases (recommended for ClickHouse Cloud)
78-
use_lw_deletes: [False] Use the strategy `delete+insert` as the default incremental strategy.
78+
use_lw_deletes: [False] # Use the strategy `delete+insert` as the default incremental strategy.
7979
check_exchange: [True] # Validate that clickhouse support the atomic EXCHANGE TABLES command. (Not needed for most ClickHouse versions)
80-
local_suffix [_local] # Table suffix of local tables on shards for distributed materializations.
81-
local_db_prefix [<empty string>] # Database prefix of local tables on shards for distributed materializations. If empty, it uses the same database as the distributed table.
82-
allow_automatic_deduplication [False] # Enable ClickHouse automatic deduplication for Replicated tables
83-
tcp_keepalive [False]: # Native client only, specify TCP keepalive configuration. Specify custom keepalive settings as [idle_time_sec, interval_sec, probes].
80+
local_suffix: [_local] # Table suffix of local tables on shards for distributed materializations.
81+
local_db_prefix: [<empty string>] # Database prefix of local tables on shards for distributed materializations. If empty, it uses the same database as the distributed table.
82+
allow_automatic_deduplication: [False] # Enable ClickHouse automatic deduplication for Replicated tables
83+
tcp_keepalive: [False] # Native client only, specify TCP keepalive configuration. Specify custom keepalive settings as [idle_time_sec, interval_sec, probes].
8484
custom_settings: [{}] # A dictionary/mapping of custom ClickHouse settings for the connection - default is empty.
8585
8686
# Native (clickhouse-driver) connection settings
87-
sync_request_timeout: [5] Timeout for server ping
88-
compress_block_size: [1048576] Compression block size if compression is enabled
87+
sync_request_timeout: [5] # Timeout for server ping
88+
compress_block_size: [1048576] # Compression block size if compression is enabled
8989
9090
```
9191

0 commit comments

Comments
 (0)