aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordon-dron <don-dron@yandex-team.com>2024-06-12 11:33:27 +0300
committerdon-dron <don-dron@yandex-team.com>2024-06-12 12:51:43 +0300
commitd436eac5b564e4ea02b31e1cca25f7660ae4e18e (patch)
tree9365519ee603afbfc4471324fde4fee408fd9292
parent85d884b1e4107097a27c8478f92ba935d50a16c5 (diff)
downloadydb-d436eac5b564e4ea02b31e1cca25f7660ae4e18e.tar.gz
YT-21692: Enable ChunkProber by default
1c3d938a168945e34ac8c28bd98544a3d91f2b8c
-rw-r--r--yt/yt/client/chunk_client/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/chunk_client/config.cpp b/yt/yt/client/chunk_client/config.cpp
index c7431e126b..c385a84f07 100644
--- a/yt/yt/client/chunk_client/config.cpp
+++ b/yt/yt/client/chunk_client/config.cpp
@@ -169,7 +169,7 @@ void TReplicationReaderConfig::Register(TRegistrar registrar)
registrar.Parameter("chunk_meta_cache_failure_probability", &TThis::ChunkMetaCacheFailureProbability)
.Default();
registrar.Parameter("use_chunk_prober", &TThis::UseChunkProber)
- .Default(false);
+ .Default(true);
registrar.Postprocessor([] (TThis* config) {
// Seems unreasonable to make backoff greater than half of total session timeout.