You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2022/08/09 01:36:09 UTC

[iotdb] branch ml_0808_parallel_test_pass_version updated: change queue size to 600

This is an automated email from the ASF dual-hosted git repository.

xingtanzjr pushed a commit to branch ml_0808_parallel_test_pass_version
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/ml_0808_parallel_test_pass_version by this push:
     new d5ec411dc5 change queue size to 600
d5ec411dc5 is described below

commit d5ec411dc5101c0ffdea9827a6b49c540d1ce215
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Tue Aug 9 09:36:00 2022 +0800

    change queue size to 600
---
 .../main/java/org/apache/iotdb/consensus/config/MultiLeaderConfig.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/consensus/src/main/java/org/apache/iotdb/consensus/config/MultiLeaderConfig.java b/consensus/src/main/java/org/apache/iotdb/consensus/config/MultiLeaderConfig.java
index d95dbe530e..0355485847 100644
--- a/consensus/src/main/java/org/apache/iotdb/consensus/config/MultiLeaderConfig.java
+++ b/consensus/src/main/java/org/apache/iotdb/consensus/config/MultiLeaderConfig.java
@@ -247,7 +247,7 @@ public class MultiLeaderConfig {
     }
 
     public static class Builder {
-      private int maxPendingRequestNumPerNode = 300;
+      private int maxPendingRequestNumPerNode = 600;
       private int maxRequestPerBatch = 30;
       private int maxPendingBatch = 5;
       private int maxWaitingTimeForAccumulatingBatchInMs = 500;