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/10 02:53:36 UTC

[iotdb] branch master_performance updated: 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


The following commit(s) were added to refs/heads/master_performance by this push:
     new f63dc2d  fix slot num
f63dc2d is described below

commit f63dc2dccd2ad1fa17289a5ca9375e1c0768e0c7
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;