mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 01:27:38 +00:00
cleanup
This commit is contained in:
parent
99f5be5e21
commit
8189fdd587
@ -328,12 +328,10 @@ func ExecV3(ctx context.Context,
|
|||||||
case <-pruneEvery.C:
|
case <-pruneEvery.C:
|
||||||
if rs.SizeEstimate() < commitThreshold {
|
if rs.SizeEstimate() < commitThreshold {
|
||||||
if agg.CanPrune(tx) {
|
if agg.CanPrune(tx) {
|
||||||
log.Warn("Aggressive prune")
|
|
||||||
if err = agg.Prune(ctx, ethconfig.HistoryV3AggregationStep/10); err != nil { // prune part of retired data, before commit
|
if err = agg.Prune(ctx, ethconfig.HistoryV3AggregationStep/10); err != nil { // prune part of retired data, before commit
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
log.Warn("No aggressive prune")
|
|
||||||
if err = agg.Flush(ctx, tx); err != nil {
|
if err = agg.Flush(ctx, tx); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user