You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2022/01/14 06:19:37 UTC

[iotdb] 12/13: fix slot num

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

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

commit 56330752cdccf9a903c59bcd6416d89221de7bbd
Author: LebronAl <TX...@gmail.com>
AuthorDate: Mon Jan 10 10:52:41 2022 +0800

    fix slot num
---
 .../src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java b/cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java
index 7df05a6..cb892ae 100644
--- a/cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java
+++ b/cluster/src/main/java/org/apache/iotdb/cluster/config/ClusterConstant.java
@@ -39,7 +39,7 @@ public class ClusterConstant {
           (int) ClusterConstant.getHeartbeatIntervalMs(),
           ClusterConstant.getConnectionTimeoutInMS());
 
-  public static final int SLOT_NUM = 9999;
+  public static final int SLOT_NUM = 10000;
   public static final int HASH_SALT = 2333;
   public static final int CHECK_ALIVE_TIME_OUT_MS = 1000;