-
is this true as reviewed by claude: CrossDB approach:
This is exactly how CrossDB works - it's not "delayed persistence", it's "immediate to page cache" with catastrophic failure vulnerability. |
Beta Was this translation helpful? Give feedback.
Answered by
jcwangxp
Sep 1, 2025
Replies: 1 comment 1 reply
-
1-3 is right, 4 is not accurate as there's there's WAL which is similar with popular DB like MySQL/PGSQL. There's balance for persistence and performance. If no data loose for power cycle or kernel panic, then WAL must be flushed to disk after each commit which will be very slow. You can config the WAL sync mode |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sprappcom
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1-3 is right, 4 is not accurate as there's there's WAL which is similar with popular DB like MySQL/PGSQL. There's balance for persistence and performance. If no data loose for power cycle or kernel panic, then WAL must be flushed to disk after each commit which will be very slow. You can config the WAL sync mode