You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/04/30 03:56:27 UTC

[incubator-iotdb] branch master updated: enlarge default memtable size and tsfile size

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 ea4e66c  enlarge default memtable size and tsfile size
ea4e66c is described below

commit ea4e66ceab938b331e5a06958434bce97bfbd2ca
Author: qiaojialin <64...@qq.com>
AuthorDate: Thu Apr 30 11:56:06 2020 +0800

    enlarge default memtable size and tsfile size
---
 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 4b30f42..db50739 100644
--- a/server/src/assembly/resources/conf/iotdb-engine.properties
+++ b/server/src/assembly/resources/conf/iotdb-engine.properties
@@ -192,10 +192,10 @@ 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=536870912
+tsfile_size_threshold=2147483648
 
 # When a memTable's size (in byte) exceeds this, the memtable is flushed to disk. The default threshold is 128 MB.
-memtable_size_threshold=134217728
+memtable_size_threshold=1073741824
 
 # How many threads can concurrently flush. When <= 0, use CPU core number.
 concurrent_flush_thread=0