cberner / fuser

Filesystem in Userspace (FUSE) for Rust
MIT License
835 stars 114 forks source link

Support for asynchronous direct file I/O #261

Open soyacz opened 1 year ago

soyacz commented 1 year ago

We test ScyllaDB with ChaosMesh which uses fuser project under the hood to inject failures coming from filesystem. ScyllaDB uses asynchonous direct file I/O which requires io_submit() and io_getevents() support. It looks fuser does not support it and it makes this 'experiment' useless for us.

Is there a plan to support these operations? What are the timelines for that?