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

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


The following commit(s) were added to refs/heads/expr by this push:
     new be62c81  add properties
be62c81 is described below

commit be62c81b6a6e0e06a913aec2e946314045e7020d
Author: jt <[email protected]>
AuthorDate: Thu Dec 2 09:45:14 2021 +0800

    add properties
---
 cluster/distribute-dc.sh                              | 10 ----------
 cluster/distribute.sh                                 | 19 -------------------
 .../assembly/resources/conf/iotdb-cluster.properties  | 11 +++++++++++
 3 files changed, 11 insertions(+), 29 deletions(-)

diff --git a/cluster/distribute-dc.sh b/cluster/distribute-dc.sh
deleted file mode 100644
index 1eba6f4..0000000
--- a/cluster/distribute-dc.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-src_lib_path=/e/codestore/incubator-iotdb2/cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/lib/iotdb*
-
-ips=(dc11 dc12 dc13 dc14 dc15 dc16 dc17 dc18)
-target_lib_path=/home/jt/iotdb_expr/lib
-
-for ip in ${ips[*]}
-  do
-    ssh jt@$ip "mkdir $target_lib_path"
-    scp -r $src_lib_path jt@$ip:$target_lib_path
-  done
\ No newline at end of file
diff --git a/cluster/distribute.sh b/cluster/distribute.sh
deleted file mode 100644
index 8c70e27..0000000
--- a/cluster/distribute.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-src_lib_path=/e/codestore/incubator-iotdb2/cluster/target/iotdb-cluster-0.13.0-SNAPSHOT/lib/*
-
-ips=(fit36 fit38 fit39)
-target_lib_path=/data/iotdb_expr/lib
-
-for ip in ${ips[*]}
-  do
-    ssh fit@$ip "mkdir $target_lib_path"
-    scp -r $src_lib_path fit@$ip:$target_lib_path
-  done
-
-ips=(fit31 fit33 fit34)
-target_lib_path=/disk/iotdb_expr/lib
-
-for ip in ${ips[*]}
-  do
-    ssh fit@$ip "mkdir $target_lib_path"
-    scp -r $src_lib_path fit@$ip:$target_lib_path
-  done
\ No newline at end of file
diff --git a/cluster/src/assembly/resources/conf/iotdb-cluster.properties 
b/cluster/src/assembly/resources/conf/iotdb-cluster.properties
index 9bcf19a..48254e7 100644
--- a/cluster/src/assembly/resources/conf/iotdb-cluster.properties
+++ b/cluster/src/assembly/resources/conf/iotdb-cluster.properties
@@ -187,3 +187,14 @@ multi_raft_factor=1
 # we need to wait so much time for other connections to be released until 
timeout,
 # or a new connection will be created.
 # wait_client_timeout_ms=5000
+
+# ---------------------------Experimental 
Features---------------------------------------
+# Use a sliding window in followers to store out-of-order entries.
+# May reduce some waiting time during log replication but increase memory 
footprint.
+# use_follower_sliding_window=true
+
+# Enable write requests to be returned as soon as they are received by a 
quorum, but not necessarily
+# appended or committed.
+# Up to max_num_of_logs_in_mem * 2 requests may be lost when the client and 
the leader fail
+# simultaneously, so be extremely careful before turning it on.
+# enable_weak_acceptance=true
\ No newline at end of file

Reply via email to