misuse-resistant bindings for io_uring, focusing on users who want to do high-performance storage.
This is a very early-stage project, but it will be the core of sled's IO stack over time. It is built with a specific high-level application in mind: a high performance storage engine and replication system.
sled expects to use the following features:
```rust use std::{ fs::OpenOptions, io::{IoSlice, IoSliceMut, Result}, os::unix::fs::OpenOptionsExt, };
const CHUNK_SIZE: u64 = 4096 * 256;
// O_DIRECT
requires all reads and writes
// to be aligned to the block device's block
// size. 4096 might not be the best, or even
// a valid one, for yours!
struct Aligned([u8; CHUNK_SIZE as usize]);
// start the ring let mut ring = rio::new().expect("create uring");
// open output file, with O_DIRECT
set
let file = OpenOptions::new()
.read(true)
.write(true)
.create(true)
.truncate(true)
.customflags(libc::ODIRECT)
.open("file")
.expect("open file");
// create output buffer let outbuf = Aligned([42; CHUNKSIZE as usize]); let outioslice = IoSlice::new(&out_buf.0);
// create input buffer let mut inbuf = Aligned([0; CHUNKSIZE as usize]); let mut inioslice = IoSliceMut::new(&mut in_buf.0);
let mut completions = vec![];
for i in 0..(4 * 1024) { let at = i * CHUNK_SIZE;
// Write using `Ordering::Link`,
// causing the next operation to wait
// for the this operation
// to complete before starting.
//
// If this operation does not
// fully complete, the next linked
// operation fails with `ECANCELED`.
//
// io_uring executes unchained
// operations out-of-order to
// improve performance. It interleaves
// operations from different chains
// to improve performance.
let completion = ring.write_ordered(
&file,
&out_io_slice,
at,
rio::Ordering::Link,
)?;
completions.push(completion);
let completion =
ring.read(&file, &mut in_io_slice, at)?;
completions.push(completion);
}
ring.submit_all()?;
let mut canceled = 0; for completion in completions.intoiter() { match completion.wait() { Err(e) if e.rawoserror() == Some(125) => { canceled += 1 } Ok() => {} other => panic!("error: {:?}", other), } } ```