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
If compact_mem_table fails, the immutable memtable will be still there. And we re-schedule compaction after a compaction which means compact_mem_table will be called infinitely. To fix this, we can introduce a backoff to prevent the infinite compaction loop.
If compaction fails hits the backoff limit, prevent all writing requests to the wickdb could be a good choice.
The text was updated successfully, but these errors were encountered:
If
compact_mem_table
fails, the immutable memtable will be still there. And we re-schedule compaction after a compaction which meanscompact_mem_table
will be called infinitely. To fix this, we can introduce a backoff to prevent the infinite compaction loop.If compaction fails hits the backoff limit, prevent all writing requests to the wickdb could be a good choice.
The text was updated successfully, but these errors were encountered: