replication + pruner + watchdog: adjust timeouts based on practical experience

This commit is contained in:
Christian Schwarz
2018-10-21 17:40:46 +02:00
parent b2844569c8
commit 94427d334b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ func NewPrunerFactory(in config.PruningSenderReceiver, promPruneSecs *prometheus
f := &PrunerFactory{
senderRules: keepRulesSender,
receiverRules: keepRulesReceiver,
retryWait: envconst.Duration("ZREPL_PRUNER_RETRY_INTERVAL", 4 * time.Second),
retryWait: envconst.Duration("ZREPL_PRUNER_RETRY_INTERVAL", 10 * time.Second),
considerSnapAtCursorReplicated: considerSnapAtCursorReplicated,
promPruneSecs: promPruneSecs,
}