-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fulmicoton fsync data #60
Conversation
Upon critical situation we flush and fsync.
ab1d289
to
1d3b2ae
Compare
src/multi_record_log.rs
Outdated
impl MultiRecordLog { | ||
/// Open the multi record log, syncing after each operation. | ||
/// Open the multi record log, flushing after each operation, bit not fsyncing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
/// Open the multi record log, flushing after each operation, bit not fsyncing. | |
/// Open the multi record log, flushing after each operation, but not fsyncing. |
/// Critical records are relatively rare and really need to be persisted: | ||
/// - RecordPosition { queue: &'a str, position: u64 }, | ||
/// - DeleteQueue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CreateQueue is a bit of a virtual operation, but I think it's worth putting it in that list
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not that virtual but yeah, it should not be consequential for Quickwit.
No description provided.