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
2 changes: 1 addition & 1 deletion server/src/assembly/resources/conf/iotdb-engine.properties
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ timestamp_precision=ms
# write_read_schema_free_memory_proportion=4:3:1:2

# primitive array size (length of each array) in array pool
# primitive_array_size=128
# primitive_array_size=32

# Ratio of write memory for invoking flush disk, 0.4 by default
# If you have extremely high write load (like batch=1000), it can be set lower than the default value like 0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public class IoTDBConfig {
private long defaultTTL = Long.MAX_VALUE;

/** The default value of primitive array size in array pool */
private int primitiveArraySize = 128;
private int primitiveArraySize = 32;

/** whether enable data partition. If disabled, all data belongs to partition 0 */
private boolean enablePartition = false;
Expand Down