summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbabenko <[email protected]>2024-12-31 20:02:37 +0300
committerbabenko <[email protected]>2024-12-31 20:26:09 +0300
commit69735fb6704450620da4ae2d8fbfe4fcaea09ff0 (patch)
tree97a4e01e9c669dd524d4894e538e2608dd6f7631
parentf5fce646b73a1cb5047dffd7ae6ca80de0fc2519 (diff)
YT-23927: Decrease default chunk session timeout to 20s
Also decrease ``node_ping_period`` to match the period ping of replication chunk writer commit_hash:8084992cae9cce26478899b9e137e4b36aa49e12
-rw-r--r--yt/yt/client/api/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/api/config.cpp b/yt/yt/client/api/config.cpp
index 7ba964544c0..4219e08000e 100644
--- a/yt/yt/client/api/config.cpp
+++ b/yt/yt/client/api/config.cpp
@@ -101,7 +101,7 @@ void TJournalChunkWriterConfig::Register(TRegistrar registrar)
registrar.Parameter("node_rpc_timeout", &TThis::NodeRpcTimeout)
.Default(TDuration::Seconds(15));
registrar.Parameter("node_ping_period", &TThis::NodePingPeriod)
- .Default(TDuration::Seconds(15));
+ .Default(TDuration::Seconds(10));
registrar.Parameter("node_ban_timeout", &TThis::NodeBanTimeout)
.Default(TDuration::Seconds(60));