You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func (a *Aggregator) BuildFilesInBackground(txNum uint64) chan struct{} { -- builds snapshot files till passed txNum, however this doesn't account for leaving some data in db (since the latest data can have reorgs).
In erigon2, we had "hold 1 step in db" for snapshot files (txs/blocks/headers) and we moved to using MaxReorgDepthV3 for changesets.
caplin has safetyMargin in antiquary.go
we should also use something similar like MaxReorgDepthV3 for domain/history files.
The text was updated successfully, but these errors were encountered:
func (a *Aggregator) BuildFilesInBackground(txNum uint64) chan struct{} {
-- builds snapshot files till passedtxNum
, however this doesn't account for leaving some data in db (since the latest data can have reorgs).MaxReorgDepthV3
for changesets.safetyMargin
in antiquary.gowe should also use something similar like MaxReorgDepthV3 for domain/history files.
The text was updated successfully, but these errors were encountered: