I would like to set up a Linux system to use one primary storage device, but copy all writes to that device to another secondary device without blocking for every write - e.g. an NVMe SSD as primary and spinning rust as secondary.
The only way I can think of doing this currently would be to either run a frequent rsync
in the background, or something like a btrfs-send
of the live stream of disk writes.
--write-mostly
and--write-behind
. I'll mark my question as a duplicate of that answer. – Steve Sep 23 '18 at 14:23