This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 215f878 fix comment in config file
215f878 is described below
commit 215f87848a02a06cc1dcd3e43a09f5bb6c88e71d
Author: qiaojialin <[email protected]>
AuthorDate: Fri May 8 11:48:21 2020 +0800
fix comment in config file
---
server/src/assembly/resources/conf/iotdb-engine.properties | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/server/src/assembly/resources/conf/iotdb-engine.properties
b/server/src/assembly/resources/conf/iotdb-engine.properties
index d07a36e..43ad73a 100644
--- a/server/src/assembly/resources/conf/iotdb-engine.properties
+++ b/server/src/assembly/resources/conf/iotdb-engine.properties
@@ -192,9 +192,9 @@ wal_buffer_size=16777216
time_zone=+08:00
# When a TsFile's file size (in byte) exceeds this, the TsFile is forced
closed. The default threshold is 512 MB.
-tsfile_size_threshold=573741824
+tsfile_size_threshold=536870912
-# When a memTable's size (in byte) exceeds this, the memtable is flushed to
disk. The default threshold is 128 MB.
+# When a memTable's size (in byte) exceeds this, the memtable is flushed to
disk. The default threshold is 1 GB.
memtable_size_threshold=1073741824
# How many threads can concurrently flush. When <= 0, use CPU core number.