From 026a15d8a7fecfb4356db3eb7881c6728bc1b3c3 Mon Sep 17 00:00:00 2001 From: Dan Roscigno Date: Wed, 24 May 2023 15:01:59 -0400 Subject: [PATCH] Update dns_max_consecutive_failures docs (#50196) Co-authored-by: Nikita Mikhaylov --- src/Core/ServerSettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/ServerSettings.h b/src/Core/ServerSettings.h index 2a73930836a..1441c22507d 100644 --- a/src/Core/ServerSettings.h +++ b/src/Core/ServerSettings.h @@ -63,7 +63,7 @@ namespace DB \ M(Bool, disable_internal_dns_cache, false, "Disable internal DNS caching at all.", 0) \ M(Int32, dns_cache_update_period, 15, "Internal DNS cache update period in seconds.", 0) \ - M(UInt32, dns_max_consecutive_failures, 1024, "Max server connections.", 0) \ + M(UInt32, dns_max_consecutive_failures, 1024, "Max connection failures before dropping host from ClickHouse DNS cache.", 0) \ \ M(UInt64, max_table_size_to_drop, 50000000000lu, "If size of a table is greater than this value (in bytes) than table could not be dropped with any DROP query.", 0) \ M(UInt64, max_partition_size_to_drop, 50000000000lu, "Same as max_table_size_to_drop, but for the partitions.", 0) \