From c63670977666b3f83b0e8925e5565312e5d83ad7 Mon Sep 17 00:00:00 2001
From: Brian Cho <brian@aptoslabs.com>
Date: Sat, 11 Jan 2025 00:09:44 +0900
Subject: [PATCH] make the proof backpressure smaller

---
 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 3188b55432b06..f22c334a0008d 100644
--- a/config/src/config/quorum_store_config.rs
+++ b/config/src/config/quorum_store_config.rs
@@ -33,7 +33,7 @@ impl Default for QuorumStoreBackPressureConfig {
             // Roughly, ordering TPS * ordering latency seconds
             backlog_txn_limit_count: 15_000,
             // QS will create batches at the max rate until this number is reached
-            backlog_per_validator_batch_limit_count: 20,
+            backlog_per_validator_batch_limit_count: 5,
             decrease_duration_ms: 1000,
             increase_duration_ms: 1000,
             decrease_fraction: 0.5,