adjust compaction range

This commit is contained in:
vyzo 2021-06-21 14:50:03 +03:00
parent a21f55919b
commit 30dbe4978b

View File

@ -44,15 +44,15 @@ var (
// === :: cold (already archived) // === :: cold (already archived)
// ≡≡≡ :: to be archived in this compaction // ≡≡≡ :: to be archived in this compaction
// --- :: hot // --- :: hot
CompactionThreshold = 4 * build.Finality CompactionThreshold = 7 * build.Finality
// CompactionBoundary is the number of epochs from the current epoch at which // CompactionBoundary is the number of epochs from the current epoch at which
// we will walk the chain for live objects. // we will walk the chain for live objects.
CompactionBoundary = 2 * build.Finality CompactionBoundary = 4 * build.Finality
// CompactionSlack is the number of epochs from the compaction boundary to the beginning // CompactionSlack is the number of epochs from the compaction boundary to the beginning
// of the cold epoch. // of the cold epoch.
CompactionSlack = build.Finality CompactionSlack = 2 * build.Finality
// SyncGapTime is the time delay from a tipset's min timestamp before we decide // SyncGapTime is the time delay from a tipset's min timestamp before we decide
// there is a sync gap // there is a sync gap