Replies: 1 comment 3 replies
-
etcd/server/storage/wal/wal.go Line 800 in 94077fc Yes, the data is still flushed, but no fsync is called, which means it's up to the OS kernel to decide when the data is synced to disk. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If the config option
unsafe-no-fsync
is enabled, is there still data saved to disk? For example when the process is stopped?I'm looking for a middle ground, where my storage is not trashed by writes continuously but for example, every 5 minutes. (Slower harddisks).
By enabling
unsafe-no-fsync
, is there still data saved but is the operating system in control of when that's synced to disk?I'm aware of the possibility of data loss and inconsistencies, but those are okay.
Beta Was this translation helpful? Give feedback.
All reactions