You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This means meeting error when flushing data to disk.
You could search "change system mode to read-only" in the error log to see what happened.
Some common reasons:
Disk space is full
Too many open files
OOM
If OOM, two ways:
(1) config manually if you use 0.10 or earlier version:
conf/iotdb-engine.properties:
enable_parameter_adapter=false
tsfile_size_threshold=100000000
memtable_size_threshold=JVM memory/2/storage group number/4
(2) upgrade to version 0.11.2 or a later version
Generally, in 0.11 version, you do not need to config manually. If still OOM, you could still try to config
conf/iotdb-engine.properties:
enable_mem_control=false
tsfile_size_threshold=100000000
memtable_size_threshold=JVM memory/2/storage group number/4
If still OOM, lower the memtable_size_threshold!
If still, contact us... Wechat:tietouqiao
The text was updated successfully, but these errors were encountered:
we could add recover mechanism for only-read mode...
Generally, the recovery mechanism is applicable to most failure scenarios. In extreme failure scenarios (such as full disk), the recovery interval can be used to determine whether the failure is a common failure or an extreme failure.
This means meeting error when flushing data to disk.
You could search "change system mode to read-only" in the error log to see what happened.
Some common reasons:
If OOM, two ways:
(1) config manually if you use 0.10 or earlier version:
(2) upgrade to version 0.11.2 or a later version
Generally, in 0.11 version, you do not need to config manually. If still OOM, you could still try to config
If still, contact us... Wechat:tietouqiao
The text was updated successfully, but these errors were encountered: