You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: