forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
stage_snapshots.go
530 lines (487 loc) · 17 KB
/
stage_snapshots.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
package stagedsync
import (
"context"
"encoding/binary"
"fmt"
"math/big"
"path/filepath"
"runtime"
"time"
"github.com/holiman/uint256"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon-lib/common/cmp"
"github.com/ledgerwatch/erigon-lib/common/datadir"
"github.com/ledgerwatch/erigon-lib/common/dbg"
"github.com/ledgerwatch/erigon-lib/downloader/snaptype"
"github.com/ledgerwatch/erigon-lib/etl"
proto_downloader "github.com/ledgerwatch/erigon-lib/gointerfaces/downloader"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon-lib/state"
"github.com/ledgerwatch/erigon/common/dbutils"
"github.com/ledgerwatch/erigon/core/rawdb"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/eth/ethconfig/estimate"
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
"github.com/ledgerwatch/erigon/params"
"github.com/ledgerwatch/erigon/turbo/services"
"github.com/ledgerwatch/erigon/turbo/snapshotsync"
"github.com/ledgerwatch/erigon/turbo/snapshotsync/snapcfg"
"github.com/ledgerwatch/log/v3"
"golang.org/x/sync/semaphore"
)
type SnapshotsCfg struct {
db kv.RwDB
chainConfig params.ChainConfig
dirs datadir.Dirs
snapshots *snapshotsync.RoSnapshots
blockRetire *snapshotsync.BlockRetire
snapshotDownloader proto_downloader.DownloaderClient
blockReader services.FullBlockReader
dbEventNotifier snapshotsync.DBEventNotifier
historyV3 bool
agg *state.Aggregator22
}
func StageSnapshotsCfg(
db kv.RwDB,
chainConfig params.ChainConfig,
dirs datadir.Dirs,
snapshots *snapshotsync.RoSnapshots,
blockRetire *snapshotsync.BlockRetire,
snapshotDownloader proto_downloader.DownloaderClient,
blockReader services.FullBlockReader,
dbEventNotifier snapshotsync.DBEventNotifier,
historyV3 bool,
agg *state.Aggregator22,
) SnapshotsCfg {
return SnapshotsCfg{
db: db,
chainConfig: chainConfig,
dirs: dirs,
snapshots: snapshots,
blockRetire: blockRetire,
snapshotDownloader: snapshotDownloader,
blockReader: blockReader,
dbEventNotifier: dbEventNotifier,
historyV3: historyV3,
agg: agg,
}
}
func SpawnStageSnapshots(
s *StageState,
ctx context.Context,
tx kv.RwTx,
cfg SnapshotsCfg,
initialCycle bool,
) (err error) {
useExternalTx := tx != nil
if !useExternalTx {
tx, err = cfg.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
}
if err := DownloadAndIndexSnapshotsIfNeed(s, ctx, tx, cfg, initialCycle); err != nil {
return err
}
var minProgress uint64
for _, stage := range []stages.SyncStage{stages.Headers, stages.Bodies, stages.Senders, stages.TxLookup} {
progress, err := stages.GetStageProgress(tx, stage)
if err != nil {
return err
}
if minProgress == 0 || progress < minProgress {
minProgress = progress
}
}
if minProgress > s.BlockNumber {
if err = s.Update(tx, minProgress); err != nil {
return err
}
}
if !useExternalTx {
if err := tx.Commit(); err != nil {
return err
}
}
return nil
}
func DownloadAndIndexSnapshotsIfNeed(s *StageState, ctx context.Context, tx kv.RwTx, cfg SnapshotsCfg, initialCycle bool) error {
if !initialCycle || cfg.snapshots == nil || !cfg.snapshots.Cfg().Enabled {
return nil
}
if err := WaitForDownloader(s, ctx, cfg, tx); err != nil {
return err
}
cfg.snapshots.LogStat()
cfg.agg.LogStats(tx, func(endTxNumMinimax uint64) uint64 {
_, histBlockNumProgress, _ := rawdb.TxNums.FindBlockNum(tx, endTxNumMinimax)
return histBlockNumProgress
})
// Create .idx files
if cfg.snapshots.IndicesMax() < cfg.snapshots.SegmentsMax() {
if !cfg.snapshots.Cfg().Produce && cfg.snapshots.IndicesMax() == 0 {
return fmt.Errorf("please remove --snap.stop, erigon can't work without creating basic indices")
}
if cfg.snapshots.Cfg().Produce {
if !cfg.snapshots.SegmentsReady() {
return fmt.Errorf("not all snapshot segments are available")
}
// wait for Downloader service to download all expected snapshots
if cfg.snapshots.IndicesMax() < cfg.snapshots.SegmentsMax() {
chainID, _ := uint256.FromBig(cfg.chainConfig.ChainID)
sem := semaphore.NewWeighted(int64(estimate.IndexSnapshot.Workers()))
if err := snapshotsync.BuildMissedIndices(s.LogPrefix(), ctx, cfg.dirs, *chainID, sem); err != nil {
return fmt.Errorf("BuildMissedIndices: %w", err)
}
}
if err := cfg.snapshots.ReopenFolder(); err != nil {
return err
}
if cfg.dbEventNotifier != nil {
cfg.dbEventNotifier.OnNewSnapshot()
}
}
}
if cfg.historyV3 {
sem := semaphore.NewWeighted(int64(estimate.IndexSnapshot.Workers()))
if err := cfg.agg.BuildMissedIndices(ctx, sem); err != nil {
return err
}
if cfg.dbEventNotifier != nil {
cfg.dbEventNotifier.OnNewSnapshot()
}
}
blocksAvailable := cfg.snapshots.BlocksAvailable()
if s.BlockNumber < blocksAvailable { // allow genesis
if err := s.Update(tx, blocksAvailable); err != nil {
return err
}
s.BlockNumber = blocksAvailable
}
if err := FillDBFromSnapshots(s.LogPrefix(), ctx, tx, cfg.dirs.Tmp, cfg.snapshots, cfg.blockReader); err != nil {
return err
}
return nil
}
func FillDBFromSnapshots(logPrefix string, ctx context.Context, tx kv.RwTx, tmpdir string, sn *snapshotsync.RoSnapshots, blockReader services.HeaderAndCanonicalReader) error {
blocksAvailable := sn.BlocksAvailable()
logEvery := time.NewTicker(logInterval)
defer logEvery.Stop()
// updating the progress of further stages (but only forward) that are contained inside of snapshots
for _, stage := range []stages.SyncStage{stages.Headers, stages.Bodies, stages.BlockHashes, stages.Senders} {
progress, err := stages.GetStageProgress(tx, stage)
if err != nil {
return fmt.Errorf("get %s stage progress to advance: %w", stage, err)
}
if progress >= blocksAvailable {
continue
}
if err = stages.SaveStageProgress(tx, stage, blocksAvailable); err != nil {
return fmt.Errorf("advancing %s stage: %w", stage, err)
}
switch stage {
case stages.Headers:
h2n := etl.NewCollector("Snapshots", tmpdir, etl.NewSortableBuffer(etl.BufferOptimalSize))
defer h2n.Close()
h2n.LogLvl(log.LvlDebug)
// fill some small tables from snapshots, in future we may store this data in snapshots also, but
// for now easier just store them in db
td := big.NewInt(0)
if err := snapshotsync.ForEachHeader(ctx, sn, func(header *types.Header) error {
blockNum, blockHash := header.Number.Uint64(), header.Hash()
td.Add(td, header.Difficulty)
if err := rawdb.WriteTd(tx, blockHash, blockNum, td); err != nil {
return err
}
if err := rawdb.WriteCanonicalHash(tx, blockHash, blockNum); err != nil {
return err
}
if err := h2n.Collect(blockHash[:], dbutils.EncodeBlockNumber(blockNum)); err != nil {
return err
}
select {
case <-ctx.Done():
return ctx.Err()
case <-logEvery.C:
log.Info(fmt.Sprintf("[%s] Total difficulty index: %dk/%dk", logPrefix, header.Number.Uint64()/1000, sn.BlocksAvailable()/1000))
default:
}
return nil
}); err != nil {
return err
}
if err := h2n.Load(tx, kv.HeaderNumber, etl.IdentityLoadFunc, etl.TransformArgs{}); err != nil {
return err
}
canonicalHash, err := blockReader.CanonicalHash(ctx, tx, blocksAvailable)
if err != nil {
return err
}
if err = rawdb.WriteHeadHeaderHash(tx, canonicalHash); err != nil {
return err
}
case stages.Bodies:
// ResetSequence - allow set arbitrary value to sequence (for example to decrement it to exact value)
ok, err := sn.ViewTxs(blocksAvailable, func(sn *snapshotsync.TxnSegment) error {
lastTxnID := sn.IdxTxnHash.BaseDataID() + uint64(sn.Seg.Count())
if err := rawdb.ResetSequence(tx, kv.EthTx, lastTxnID); err != nil {
return err
}
return nil
})
if err != nil {
return err
}
if !ok {
return fmt.Errorf("snapshot not found for block: %d", blocksAvailable)
}
historyV3, err := rawdb.HistoryV3.Enabled(tx)
if err != nil {
return err
}
if historyV3 {
var toBlock uint64
if sn != nil {
toBlock = sn.BlocksAvailable()
}
toBlock = cmp.Max(toBlock, progress)
if err := rawdb.TxNums.WriteForGenesis(tx, 1); err != nil {
return err
}
if err := sn.Bodies.View(func(bs []*snapshotsync.BodySegment) error {
for _, b := range bs {
if err := b.Iterate(func(blockNum, baseTxNum, txAmount uint64) error {
if blockNum == 0 || blockNum > toBlock {
return nil
}
select {
case <-ctx.Done():
return ctx.Err()
case <-logEvery.C:
log.Info(fmt.Sprintf("[%s] MaxTxNums index: %dk/%dk", logPrefix, blockNum/1000, sn.BlocksAvailable()/1000))
default:
}
maxTxNum := baseTxNum + txAmount - 1
if err := rawdb.TxNums.Append(tx, blockNum, maxTxNum); err != nil {
return fmt.Errorf("%w. blockNum=%d, maxTxNum=%d", err, blockNum, maxTxNum)
}
return nil
}); err != nil {
return err
}
}
return nil
}); err != nil {
return fmt.Errorf("build txNum => blockNum mapping: %w", err)
}
}
}
}
return nil
}
// WaitForDownloader - wait for Downloader service to download all expected snapshots
// for MVP we sync with Downloader only once, in future will send new snapshots also
func WaitForDownloader(s *StageState, ctx context.Context, cfg SnapshotsCfg, tx kv.RwTx) error {
if cfg.snapshots.Cfg().NoDownloader {
if err := cfg.snapshots.ReopenFolder(); err != nil {
return err
}
if cfg.dbEventNotifier != nil { // can notify right here, even that write txn is not commit
cfg.dbEventNotifier.OnNewSnapshot()
}
return nil
}
// Original intent of snInDB was to contain the file names of the snapshot files for the very first run of the Erigon instance
// Then, we would insist to only download such files, and no others (whitelist)
// However, at some point later, the code was incorrectly changed to update this record in each iteration of the stage loop (function WriteSnapshots)
// And so this list cannot be relied upon as the whitelist, because it also includes all the files created by the node itself
// Not sure what to do it is so far, but the temporary solution is to instead use it as a blacklist (existingFilesMap)
snInDB, snHistInDB, err := rawdb.ReadSnapshots(tx)
if err != nil {
return err
}
dbEmpty := len(snInDB) == 0
var missingSnapshots []snapshotsync.Range
var existingFiles []snaptype.FileInfo
if !dbEmpty {
existingFiles, missingSnapshots, err = snapshotsync.Segments(cfg.snapshots.Dir())
if err != nil {
return err
}
}
existingFilesMap := map[string]struct{}{}
for _, existingFile := range existingFiles {
_, fname := filepath.Split(existingFile.Path)
existingFilesMap[fname] = struct{}{}
}
if len(missingSnapshots) > 0 {
log.Warn(fmt.Sprintf("[%s] downloading missing snapshots", s.LogPrefix()))
}
// send all hashes to the Downloader service
preverifiedBlockSnapshots := snapcfg.KnownCfg(cfg.chainConfig.ChainName, snInDB, snHistInDB).Preverified
downloadRequest := make([]snapshotsync.DownloadRequest, 0, len(preverifiedBlockSnapshots)+len(missingSnapshots))
// build all download requests
// builds preverified snapshots request
for _, p := range preverifiedBlockSnapshots {
if _, exists := existingFilesMap[p.Name]; !exists { // Not to download existing files "behind the scenes"
downloadRequest = append(downloadRequest, snapshotsync.NewDownloadRequest(nil, p.Name, p.Hash))
}
}
if cfg.historyV3 {
preverifiedHistorySnapshots := snapcfg.KnownCfg(cfg.chainConfig.ChainName, snInDB, snHistInDB).PreverifiedHistory
for _, p := range preverifiedHistorySnapshots {
downloadRequest = append(downloadRequest, snapshotsync.NewDownloadRequest(nil, p.Name, p.Hash))
}
}
// builds missing snapshots request
for i := range missingSnapshots {
downloadRequest = append(downloadRequest, snapshotsync.NewDownloadRequest(&missingSnapshots[i], "", ""))
}
log.Info(fmt.Sprintf("[%s] Fetching torrent files metadata", s.LogPrefix()))
for {
select {
case <-ctx.Done():
return ctx.Err()
default:
}
if err := snapshotsync.RequestSnapshotsDownload(ctx, downloadRequest, cfg.snapshotDownloader); err != nil {
log.Error(fmt.Sprintf("[%s] call downloader", s.LogPrefix()), "err", err)
time.Sleep(10 * time.Second)
continue
}
break
}
downloadStartTime := time.Now()
logEvery := time.NewTicker(logInterval)
defer logEvery.Stop()
var m runtime.MemStats
// Check once without delay, for faster erigon re-start
stats, err := cfg.snapshotDownloader.Stats(ctx, &proto_downloader.StatsRequest{})
if err == nil && stats.Completed {
goto Finish
}
// Print download progress until all segments are available
Loop:
for {
select {
case <-ctx.Done():
return ctx.Err()
case <-logEvery.C:
if stats, err := cfg.snapshotDownloader.Stats(ctx, &proto_downloader.StatsRequest{}); err != nil {
log.Warn("Error while waiting for snapshots progress", "err", err)
} else if stats.Completed {
if !cfg.snapshots.Cfg().Verify { // will verify after loop
if _, err := cfg.snapshotDownloader.Verify(ctx, &proto_downloader.VerifyRequest{}); err != nil {
return err
}
}
log.Info(fmt.Sprintf("[%s] download finished", s.LogPrefix()), "time", time.Since(downloadStartTime).String())
break Loop
} else {
if stats.MetadataReady < stats.FilesTotal {
log.Info(fmt.Sprintf("[%s] Waiting for torrents metadata: %d/%d", s.LogPrefix(), stats.MetadataReady, stats.FilesTotal))
continue
}
dbg.ReadMemStats(&m)
downloadTimeLeft := calculateTime(stats.BytesTotal-stats.BytesCompleted, stats.DownloadRate)
log.Info(fmt.Sprintf("[%s] download", s.LogPrefix()),
"progress", fmt.Sprintf("%.2f%% %s/%s", stats.Progress, libcommon.ByteCount(stats.BytesCompleted), libcommon.ByteCount(stats.BytesTotal)),
"download-time-left", downloadTimeLeft,
"total-download-time", time.Since(downloadStartTime).Round(time.Second).String(),
"download", libcommon.ByteCount(stats.DownloadRate)+"/s",
"upload", libcommon.ByteCount(stats.UploadRate)+"/s",
)
log.Info(fmt.Sprintf("[%s] download", s.LogPrefix()),
"peers", stats.PeersUnique,
"connections", stats.ConnectionsTotal,
"files", stats.FilesTotal,
"alloc", libcommon.ByteCount(m.Alloc), "sys", libcommon.ByteCount(m.Sys),
)
}
}
}
Finish:
if cfg.snapshots.Cfg().Verify {
if _, err := cfg.snapshotDownloader.Verify(ctx, &proto_downloader.VerifyRequest{}); err != nil {
return err
}
}
if err := cfg.snapshots.ReopenFolder(); err != nil {
return err
}
if err := cfg.agg.ReopenFiles(); err != nil {
return err
}
if err := rawdb.WriteSnapshots(tx, cfg.snapshots.Files(), cfg.agg.Files()); err != nil {
return err
}
if cfg.dbEventNotifier != nil { // can notify right here, even that write txn is not commit
cfg.dbEventNotifier.OnNewSnapshot()
}
firstNonGenesis, err := rawdb.SecondKey(tx, kv.Headers)
if err != nil {
return err
}
if firstNonGenesis != nil {
firstNonGenesisBlockNumber := binary.BigEndian.Uint64(firstNonGenesis)
if cfg.snapshots.SegmentsMax()+1 < firstNonGenesisBlockNumber {
log.Warn(fmt.Sprintf("[%s] Some blocks are not in snapshots and not in db", s.LogPrefix()), "max_in_snapshots", cfg.snapshots.SegmentsMax(), "min_in_db", firstNonGenesisBlockNumber)
}
}
return nil
}
func calculateTime(amountLeft, rate uint64) string {
if rate == 0 {
return "999hrs:99m"
}
timeLeftInSeconds := amountLeft / rate
hours := timeLeftInSeconds / 3600
minutes := (timeLeftInSeconds / 60) % 60
return fmt.Sprintf("%dhrs:%dm", hours, minutes)
}
/* ====== PRUNING ====== */
// snapshots pruning sections works more as a retiring of blocks
// retiring blocks means moving block data from db into snapshots
func SnapshotsPrune(s *PruneState, cfg SnapshotsCfg, ctx context.Context, tx kv.RwTx) (err error) {
useExternalTx := tx != nil
if !useExternalTx {
tx, err = cfg.db.BeginRw(ctx)
if err != nil {
return err
}
defer tx.Rollback()
}
sn := cfg.blockRetire.Snapshots()
if sn != nil && sn.Cfg().Enabled && sn.Cfg().Produce {
if err := cfg.blockRetire.PruneAncientBlocks(tx); err != nil {
return err
}
if err := retireBlocksInSingleBackgroundThread(s, cfg.blockRetire, cfg.agg, ctx, tx); err != nil {
return fmt.Errorf("retireBlocksInSingleBackgroundThread: %w", err)
}
}
if !useExternalTx {
if err := tx.Commit(); err != nil {
return err
}
}
return nil
}
// retiring blocks in a single thread in the brackground
func retireBlocksInSingleBackgroundThread(s *PruneState, blockRetire *snapshotsync.BlockRetire, agg *state.Aggregator22, ctx context.Context, tx kv.RwTx) (err error) {
// if something already happens in background - noop
if blockRetire.Working() {
return nil
}
ok, err := blockRetire.BackgroundResult.GetAndReset()
if err != nil {
log.Warn(fmt.Sprintf("[%s]", s.LogPrefix()), "err", err)
} else if ok {
if err := rawdb.WriteSnapshots(tx, blockRetire.Snapshots().Files(), agg.Files()); err != nil {
return err
}
}
blockRetire.RetireBlocksInBackground(ctx, s.ForwardProgress, log.LvlInfo)
return nil
}