FASTER
FASTER copied to clipboard
Is it possible to recover KV from WAL?
According to our benchmarks, hybrid checkpoints (foldover) consume too much resources to make them often. As far as I know, KV uses FasterLog WAL internally. Is it possible to use the WAL commits for KV recovery? E.g. call commit each 100ms and make checkpoints only once per 10 seconds. Or may be the same effect could be achieved with the Log.Flush(true) each 100 ms?
use SnapShot?