Merge pull request #36571 from ClickHouse/rfraposa-patch-2

Fixed the /settings/settings 404 issue
This commit is contained in:
Alexey Milovidov 2022-04-24 03:34:29 +03:00 committed by GitHub
commit 290e680040
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 5 deletions

View File

@ -1,10 +1,10 @@
---
sidebar_label: Settings
sidebar_position: 52
slug: index
sidebar_position: 51
slug: /en/operations/settings/
---
# Settings
# Settings Overview
There are multiple ways to make all the settings described in this section of documentation.

View File

@ -1,3 +1,9 @@
---
sidebar_label: Settings
sidebar_position: 52
slug: /en/operations/settings/settings
---
# Settings {#settings}
## distributed_product_mode {#distributed-product-mode}
@ -1814,7 +1820,7 @@ ignoring check result for the source table, and will insert rows lost because of
## insert_deduplication_token {#insert_deduplication_token}
The setting allows a user to provide own deduplication semantic in MergeTree/ReplicatedMergeTree
The setting allows a user to provide own deduplication semantic in MergeTree/ReplicatedMergeTree
For example, by providing a unique value for the setting in each INSERT statement,
user can avoid the same inserted data being deduplicated.
@ -1840,7 +1846,7 @@ INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (1);
-- the next insert won't be deduplicated because insert_deduplication_token is different
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test1' (1);
-- the next insert will be deduplicated because insert_deduplication_token
-- the next insert will be deduplicated because insert_deduplication_token
-- is the same as one of the previous
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (2);