We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the plugin is using the librados call: wait_for_complete_and_cb => Block until an operation completes and callback completes
This means it is in memory on all replicas and can be read.
There is another wait for complete method with a higher degree of safety, but slower E.g.
rados_aio_wait_for_safe_and_cb => Block until an operation is safe and callback has completed
This means it is on stable storage on all replicas.
Should this be configurable?
The text was updated successfully, but these errors were encountered:
#212: rbox sync does also wait_for_complete
6fcd90c
Merge pull request #213 from ceph-dovecot/jrse_#212
b8386ca
Jrse #212
jrse
No branches or pull requests
Currently the plugin is using the librados call:
wait_for_complete_and_cb =>
Block until an operation completes and callback completes
This means it is in memory on all replicas and can be read.
There is another wait for complete method with a higher degree of safety, but slower E.g.
rados_aio_wait_for_safe_and_cb
=> Block until an operation is safe and callback has completed
This means it is on stable storage on all replicas.
Should this be configurable?
The text was updated successfully, but these errors were encountered: