From c1cb7a0a069f0a30034ac60b26c818319eeb7332 Mon Sep 17 00:00:00 2001 From: "Brian (Sunghoon) Cho" Date: Thu, 23 May 2024 09:12:58 -0700 Subject: [PATCH] [quorum store] increase max per-validator TPS constraint from 2K to 4K (#13362) (#13382) ## Description Make the max constraint in quorum store backpressure larger. --- config/src/config/quorum_store_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/config/quorum_store_config.rs b/config/src/config/quorum_store_config.rs index 64ca8023e0d53..d8346258e778f 100644 --- a/config/src/config/quorum_store_config.rs +++ b/config/src/config/quorum_store_config.rs @@ -36,7 +36,7 @@ impl Default for QuorumStoreBackPressureConfig { increase_duration_ms: 1000, decrease_fraction: 0.5, dynamic_min_txn_per_s: 160, - dynamic_max_txn_per_s: 2000, + dynamic_max_txn_per_s: 4000, } } }