Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 152 additions & 0 deletions compio/benches/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use std::{
hint::black_box,
io::{Read, Seek, SeekFrom, Write},
path::Path,
sync::Arc,
time::Instant,
};

Expand Down Expand Up @@ -64,6 +65,41 @@ fn read_tokio(b: &mut Bencher, (path, offsets): &(&Path, &[u64])) {
})
}

fn read_tokio_std(b: &mut Bencher, (path, offsets): &(&Path, &[u64])) {
let runtime = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
let file = Arc::new(std::fs::File::open(path).unwrap());

let start = Instant::now();
for _i in 0..iter {
let mut buffer = [0u8; BUFFER_SIZE];
for &offset in *offsets {
let file = file.clone();
buffer = tokio::task::spawn_blocking(move || {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this function, every read operation is performed in a new spawn_blocking closure. It should be a little faster than read_tokio because it uses seek_read or read_at instead of seek + read.

#[cfg(windows)]
{
use std::os::windows::fs::FileExt;
file.seek_read(&mut buffer, offset).unwrap();
}
#[cfg(unix)]
{
use std::os::unix::fs::FileExt;
file.read_at(&mut buffer, offset).unwrap();
}
buffer
})
.await
.unwrap();
}
black_box(buffer);
}
start.elapsed()
})
}

fn read_compio(b: &mut Bencher, (path, offsets): &(&Path, &[u64])) {
let runtime = compio::runtime::Runtime::new().unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
Expand Down Expand Up @@ -160,6 +196,34 @@ fn read_all_tokio(b: &mut Bencher, (path, len): &(&Path, u64)) {
})
}

fn read_all_tokio_std(b: &mut Bencher, (path, len): &(&Path, u64)) {
let runtime = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
let mut buffer = [0u8; BUFFER_SIZE];

let start = Instant::now();
for _i in 0..iter {
let mut file = std::fs::File::open(path).unwrap();
let len = *len;
buffer = tokio::task::spawn_blocking(move || {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this function, all read operations are performed inside the same spawn_blocking closure. Why it's not as fast as read_all_std? Because you open the file inside the for loop. The open-file operation costs a lot.

let mut read_len = 0;
file.seek(SeekFrom::Start(0)).unwrap();
while read_len < len {
let read = file.read(&mut buffer).unwrap();
read_len += read as u64;
}
buffer
})
.await
.unwrap();
}
start.elapsed()
})
}

fn read_all_compio(b: &mut Bencher, (path, len): &(&Path, u64)) {
let runtime = compio::runtime::Runtime::new().unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
Expand Down Expand Up @@ -223,6 +287,11 @@ fn read(c: &mut Criterion) {

group.bench_with_input::<_, _, (&Path, &[u64])>("std", &(&path, &offsets), read_std);
group.bench_with_input::<_, _, (&Path, &[u64])>("tokio", &(&path, &offsets), read_tokio);
group.bench_with_input::<_, _, (&Path, &[u64])>(
"tokio_std",
&(&path, &offsets),
read_tokio_std,
);
group.bench_with_input::<_, _, (&Path, &[u64])>("compio", &(&path, &offsets), read_compio);
group.bench_with_input::<_, _, (&Path, &[u64])>(
"compio-join",
Expand All @@ -239,6 +308,11 @@ fn read(c: &mut Criterion) {

group.bench_with_input::<_, _, (&Path, u64)>("std", &(&path, FILE_SIZE), read_all_std);
group.bench_with_input::<_, _, (&Path, u64)>("tokio", &(&path, FILE_SIZE), read_all_tokio);
group.bench_with_input::<_, _, (&Path, u64)>(
"tokio_std",
&(&path, FILE_SIZE),
read_all_tokio_std,
);
group.bench_with_input::<_, _, (&Path, u64)>("compio", &(&path, FILE_SIZE), read_all_compio);
#[cfg(target_os = "linux")]
group.bench_with_input::<_, _, (&Path, u64)>("monoio", &(&path, FILE_SIZE), read_all_monoio);
Expand Down Expand Up @@ -287,6 +361,43 @@ fn write_tokio(b: &mut Bencher, (path, offsets, content): &(&Path, &[u64], &[u8]
})
}

fn write_tokio_std(b: &mut Bencher, (path, offsets, content): &(&Path, &[u64], &[u8])) {
let runtime = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
let file = Arc::new(std::fs::OpenOptions::new().write(true).open(path).unwrap());
let offsets = Arc::new(offsets.to_vec());
let content = Arc::new(content.to_vec());

let start = Instant::now();
for _i in 0..iter {
let file = file.clone();
let offsets = offsets.clone();
let content = content.clone();

tokio::task::spawn_blocking(move || {
for offset in offsets.iter() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this function, all write operations are performed inside the same spawn_blocking closure. It should be as fast as write_std.

#[cfg(windows)]
{
use std::os::windows::fs::FileExt;
file.seek_write(&content, *offset).unwrap();
}
#[cfg(unix)]
{
use std::os::unix::fs::FileExt;
file.write_at(&content, *offset).unwrap();
}
}
})
.await
.unwrap();
}
start.elapsed()
})
}

fn write_compio(b: &mut Bencher, (path, offsets, content): &(&Path, &[u64], &[u8])) {
let runtime = compio::runtime::Runtime::new().unwrap();
let content = content.to_vec();
Expand Down Expand Up @@ -443,6 +554,37 @@ fn write_all_tokio(b: &mut Bencher, (path, content): &(&Path, &[u8])) {
})
}

fn write_all_tokio_std(b: &mut Bencher, (path, content): &(&Path, &[u8])) {
let runtime = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.unwrap();
b.to_async(&runtime).iter_custom(|iter| async move {
let content = Arc::new(content.to_vec());
let mut file = std::fs::File::create(path).unwrap();

let start = Instant::now();
for _i in 0..iter {
let content = content.clone();
file = tokio::task::spawn_blocking(move || {
file.seek(SeekFrom::Start(0)).unwrap();
let mut write_len = 0;
let total_len = content.len();
while write_len < total_len {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this function, all write operations are performed inside the same spawn_blocking closure. It should be as fast as write_all_std.

let write = file
.write(&content[write_len..(write_len + BUFFER_SIZE).min(total_len)])
.unwrap();
write_len += write;
}
file
})
.await
.unwrap();
}
start.elapsed()
})
}

fn write_all_compio(b: &mut Bencher, (path, content): &(&Path, &[u8])) {
let runtime = compio::runtime::Runtime::new().unwrap();
let content = content.to_vec();
Expand Down Expand Up @@ -551,6 +693,11 @@ fn write(c: &mut Criterion) {
&(&path, &offsets, &single_content),
write_tokio,
);
group.bench_with_input::<_, _, (&Path, &[u64], &[u8])>(
"tokio_std",
&(&path, &offsets, &single_content),
write_tokio_std,
);
group.bench_with_input::<_, _, (&Path, &[u64], &[u8])>(
"compio",
&(&path, &offsets, &single_content),
Expand Down Expand Up @@ -581,6 +728,11 @@ fn write(c: &mut Criterion) {

group.bench_with_input::<_, _, (&Path, &[u8])>("std", &(&path, &content), write_all_std);
group.bench_with_input::<_, _, (&Path, &[u8])>("tokio", &(&path, &content), write_all_tokio);
group.bench_with_input::<_, _, (&Path, &[u8])>(
"tokio_std",
&(&path, &content),
write_all_tokio_std,
);
group.bench_with_input::<_, _, (&Path, &[u8])>("compio", &(&path, &content), write_all_compio);
#[cfg(target_os = "linux")]
group.bench_with_input::<_, _, (&Path, &[u8])>("monoio", &(&path, &content), write_all_monoio);
Expand Down
Loading