Skip to content

Commit 50c0f7a

Browse files
committed
svs: switch latest-ss to range eviction
1 parent 5dfb297 commit 50c0f7a

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

std/sync/snapshot_node_latest.go

+11-12
Original file line numberDiff line numberDiff line change
@@ -209,18 +209,17 @@ func (s *SnapshotNodeLatest) takeSnap(seqNo uint64) {
209209
}
210210
}
211211

212-
// Evict covered publications from seqNo-4*threshold to seqNo-3*threshold
213-
pubBasename := s.pss.nodePrefix.
214-
Append(s.pss.groupPrefix...).
215-
Append(enc.NewTimestampComponent(s.pss.bootTime))
216-
if seqNo > 4*s.Threshold {
217-
for i := seqNo - 4*s.Threshold; i < seqNo-3*s.Threshold; i++ {
218-
pubName := pubBasename.
219-
Append(enc.NewSequenceNumComponent(i)).
220-
WithVersion(enc.VersionImmutable)
221-
if err := s.Client.Remove(pubName); err != nil {
222-
log.Warn(s, "Failed to remove old publication", "err", err, "name", pubName)
223-
}
212+
// Evict covered publications from 0 to seqNo-3*threshold
213+
if seqNo >= 4*s.Threshold {
214+
// No version specified - this will remove metadata too
215+
if err := s.Client.Store().RemoveFlatRange(
216+
s.pss.nodePrefix.
217+
Append(s.pss.groupPrefix...).
218+
Append(enc.NewTimestampComponent(s.pss.bootTime)),
219+
enc.NewSequenceNumComponent(0),
220+
enc.NewSequenceNumComponent(seqNo-3*s.Threshold),
221+
); err != nil {
222+
log.Warn(s, "Failed to evict old publications from store", "err", err)
224223
}
225224
}
226225
}

0 commit comments

Comments
 (0)