Earlier quoted context omitted.
And means it is acceptable for many others. There is a whole world outside of s3 you know.
It's a bit weird to present it as an alternative to S3 when it looks like a persistent cache or k/v store. A benchmark against Redis would have been nice for example. The benchmark for rocks DB is also questionable as the performance depends a lot on how you configure it, and the article's claim that it doesn't support range read doesn't give me confidence in the results. Also for the descried issue of small images f…
Building blobd: single-machine object store with sub-ms reads and 15 GB/s upload
11–16 of 16 posts
Re: Building blobd: single-machine object store with sub-ms reads and 15 GB/s upload
#12> Direct I/O means no more fsync: no more complexity via background flushes and optimal scheduling of syncs. There's no kernel overhead from copying and coalescing. It essentially provides the performance, control, and simplicity of issuing raw 1:1 I/O requests. Not true, you still need fsync in direct I/O to ensure durability in power loss situations. Some drives have write caches that means acknowledged writes live…
/// Even when using direct I/O, `fsync` is still necessary, as it ensures the device itself has flushed any internal caches.
async fn sync(&self) {
let (fut, fut_ctl) = SignalFuture::new();
self.sender.send(Request::Sync { res: fut_ctl }).unwrap();
fut.await
}
Full code here:https://github.com/wilsonzlin/blobd/blob/master/libblobd-dir...
Re: Building blobd: single-machine object store with sub-ms reads and 15 GB/s upload
#13> Direct I/O means no more fsync: no more complexity via background flushes and optimal scheduling of syncs. There's no kernel overhead from copying and coalescing. It essentially provides the performance, control, and simplicity of issuing raw 1:1 I/O requests. Not true, you still need fsync in direct I/O to ensure durability in power loss situations. Some drives have write caches that means acknowledged writes live…
You mean in volatile memory?
Re: Building blobd: single-machine object store with sub-ms reads and 15 GB/s upload
#14Re: Building blobd: single-machine object store with sub-ms reads and 15 GB/s upload
#15Earlier quoted context omitted.
And means it is acceptable for many others. There is a whole world outside of s3 you know.
It's a bit weird to present it as an alternative to S3 when it looks like a persistent cache or k/v store. A benchmark against Redis would have been nice for example. The benchmark for rocks DB is also questionable as the performance depends a lot on how you configure it, and the article's claim that it doesn't support range read doesn't give me confidence in the results. Also for the descried issue of small images f…