Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/src/assembly/resources/conf/iotdb-engine.properties
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ timestamp_precision=ms
# If it sets a value smaller than 0, use the default value 16777216
wal_buffer_size=16777216

# When a TsFile's file size (in byte) exceeds this, the TsFile is forced closed. The default threshold is 0.
tsfile_size_threshold=0
# When a TsFile's file size (in byte) exceeds this, the TsFile is forced closed.
tsfile_size_threshold=1

# When a memTable's size (in byte) exceeds this, the memtable is flushed to disk. The default threshold is 256 MB.
memtable_size_threshold=268435456
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public class IoTDBConfig {
/**
* When a TsFile's file size (in byte) exceed this, the TsFile is forced closed.
*/
private long tsFileSizeThreshold = 0L;
private long tsFileSizeThreshold = 1L;

/**
* When a memTable's size (in byte) exceeds this, the memtable is flushed to disk.
Expand Down