Fixed the /settings/settings 404 issue

This commit is contained in:
rfraposa 2022-04-23 16:18:56 -06:00
parent 18d094d79d
commit 3bdabbb893
2 changed files with 11 additions and 5 deletions

View File

@ -1,10 +1,10 @@
--- ---
sidebar_label: Settings sidebar_label: Settings
sidebar_position: 52 sidebar_position: 51
slug: index slug: /en/operations/settings/
--- ---
# Settings # Settings Overview
There are multiple ways to make all the settings described in this section of documentation. 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} # Settings {#settings}
## distributed_product_mode {#distributed-product-mode} ## 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} ## 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, For example, by providing a unique value for the setting in each INSERT statement,
user can avoid the same inserted data being deduplicated. 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 -- the next insert won't be deduplicated because insert_deduplication_token is different
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test1' (1); 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 -- is the same as one of the previous
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (2); INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (2);