use functional options for hotstore gc, rename MovingGC to FullGC

This commit is contained in:
vyzo
2021-07-27 09:53:22 +03:00
parent 96c1123c33
commit 9d25464703
5 changed files with 19 additions and 21 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ func DefaultFullNode() *FullNode {
HotStoreType: "badger",
MarkSetType: "map",
HotStoreMovingGCFrequency: 20,
HotStoreFullGCFrequency: 20,
},
},
}
+3 -3
View File
@@ -291,10 +291,10 @@ type Splitstore struct {
// HotStoreMessageRetention specifies the retention policy for messages, in finalities beyond
// the compaction boundary; default is 0.
HotStoreMessageRetention uint64
// HotStoreMovingGCFrequency specifies how often to perform moving GC on the hotstore.
// A value of 0 disables, while a value 1 will do moving GC in every compaction.
// HotStoreFullGCFrequency specifies how often to perform a full (moving) GC on the hotstore.
// A value of 0 disables, while a value 1 will do full GC in every compaction.
// Default is 20 (about once a week).
HotStoreMovingGCFrequency uint64
HotStoreFullGCFrequency uint64
}
// // Full Node
+4 -4
View File
@@ -78,10 +78,10 @@ func SplitBlockstore(cfg *config.Chainstore) func(lc fx.Lifecycle, r repo.Locked
}
cfg := &splitstore.Config{
MarkSetType: cfg.Splitstore.MarkSetType,
DiscardColdBlocks: cfg.Splitstore.ColdStoreType == "discard",
HotStoreMessageRetention: cfg.Splitstore.HotStoreMessageRetention,
HotStoreMovingGCFrequency: cfg.Splitstore.HotStoreMovingGCFrequency,
MarkSetType: cfg.Splitstore.MarkSetType,
DiscardColdBlocks: cfg.Splitstore.ColdStoreType == "discard",
HotStoreMessageRetention: cfg.Splitstore.HotStoreMessageRetention,
HotStoreFullGCFrequency: cfg.Splitstore.HotStoreFullGCFrequency,
}
ss, err := splitstore.Open(path, ds, hot, cold, cfg)
if err != nil {