We want to create a volume solely for append only logs on SSD. This is what we do:
- fallocate() to preallocate 40 mb of log file
- append 4kb blocks to the log file.
This is what we are thinking of doing:
-- disable compression, dedup
-- set sync=true
Does VDO play well with Linux Asynchronous i/o? In other words if aio is issued and async is true then does it complete the write before returning success to the caller?
We want to create a volume solely for append only logs on SSD. This is what we do:
This is what we are thinking of doing:
-- disable compression, dedup
-- set sync=true
Does VDO play well with Linux Asynchronous i/o? In other words if aio is issued and async is true then does it complete the write before returning success to the caller?