Constant mz_persist_client::cfg::CONSENSUS_CONNECTION_POOL_TTL_STAGGER
source ยท const CONSENSUS_CONNECTION_POOL_TTL_STAGGER: Config<Duration>;
Expand description
The minimum time between TTLing connections to Postgres/CRDB. This delay is
used to stagger reconnections to avoid stampedes and high tail latencies.
This value should be much less than consensus_connection_pool_ttl
so that
reconnections are biased towards terminating the oldest connections first. A
value of consensus_connection_pool_ttl / consensus_connection_pool_max_size
is likely a good place to start so that
all connections are rotated when the pool is fully used.