Skip to content

Commit

Permalink
use CompactionType.Lookup instead of CompactionType.Scan (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt authored Jul 26, 2024
1 parent 876d7f9 commit 16fcd9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DurableTask.Netherite/StorageLayer/Faster/FasterKV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ void RunCompaction()
using (this.TrackTemporarySession(session))
{
this.blobManager.TraceHelper.FasterProgress($"Compaction {id} is invoking FASTER's compaction routine");
long compactedUntil = session.Compact(target, CompactionType.Scan);
long compactedUntil = session.Compact(target, CompactionType.Lookup);

this.TraceHelper.FasterCompactionProgress(
FasterTraceHelper.CompactionProgress.Completed,
Expand Down

0 comments on commit 16fcd9b

Please sign in to comment.