mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
c5f186d56f
* Starting a quick PoC * Rate limit to one epoch worth of blocks in memory * Proof of concept working * Quick comment out * Save previous finalized checkpoint * Merge branch 'master' of github.com:prysmaticlabs/prysm into batch-save * Test * Merge branch 'prev-finalized-getter' into batch-save * Minor fixes * Use a map * More run time fixes * Remove panic * Feature flag * Removed unused methods * Fixed tests * E2e test * Merge branch 'master' into batch-save * comment * Merge branch 'master' into batch-save * Compatible with current initial sync * Merge branch 'batch-save' of github.com:prysmaticlabs/prysm into batch-save * Merge refs/heads/master into batch-save * Merge refs/heads/master into batch-save * Merge refs/heads/master into batch-save * Merge branch 'master' of github.com:prysmaticlabs/prysm into batch-save * Feedback * Merge branch 'batch-save' of github.com:prysmaticlabs/prysm into batch-save * Merge refs/heads/master into batch-save
220 lines
7.0 KiB
Go
220 lines
7.0 KiB
Go
package initialsync
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/paulbellamy/ratecounter"
|
|
"github.com/pkg/errors"
|
|
eth "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed"
|
|
blockfeed "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/block"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
prysmsync "github.com/prysmaticlabs/prysm/beacon-chain/sync"
|
|
p2ppb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
"github.com/prysmaticlabs/prysm/shared/mathutil"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const blockBatchSize = 32
|
|
const counterSeconds = 20
|
|
const refreshTime = 6 * time.Second
|
|
|
|
// Round Robin sync looks at the latest peer statuses and syncs with the highest
|
|
// finalized peer.
|
|
//
|
|
// Step 1 - Sync to finalized epoch.
|
|
// Sync with peers of lowest finalized root with epoch greater than head state.
|
|
//
|
|
// Step 2 - Sync to head from finalized epoch.
|
|
// Using the finalized root as the head_block_root and the epoch start slot
|
|
// after the finalized epoch, request blocks to head from some subset of peers
|
|
// where step = 1.
|
|
func (s *Service) roundRobinSync(genesis time.Time) error {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
defer s.chain.ClearCachedStates()
|
|
|
|
if cfg := featureconfig.Get(); cfg.EnableSkipSlotsCache {
|
|
cfg.EnableSkipSlotsCache = false
|
|
featureconfig.Init(cfg)
|
|
defer func() {
|
|
cfg := featureconfig.Get()
|
|
cfg.EnableSkipSlotsCache = true
|
|
featureconfig.Init(cfg)
|
|
}()
|
|
}
|
|
|
|
counter := ratecounter.NewRateCounter(counterSeconds * time.Second)
|
|
highestFinalizedSlot := helpers.StartSlot(s.highestFinalizedEpoch() + 1)
|
|
queue := newBlocksQueue(ctx, &blocksQueueConfig{
|
|
p2p: s.p2p,
|
|
headFetcher: s.chain,
|
|
highestExpectedSlot: highestFinalizedSlot,
|
|
})
|
|
if err := queue.start(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Step 1 - Sync to end of finalized epoch.
|
|
for blk := range queue.fetchedBlocks {
|
|
s.logSyncStatus(genesis, blk.Block, counter)
|
|
if err := s.processBlock(ctx, blk); err != nil {
|
|
log.WithError(err).Info("Block is invalid")
|
|
continue
|
|
}
|
|
}
|
|
|
|
log.Debug("Synced to finalized epoch - now syncing blocks up to current head")
|
|
if err := queue.stop(); err != nil {
|
|
log.WithError(err).Debug("Error stopping queue")
|
|
}
|
|
|
|
if s.chain.HeadSlot() == helpers.SlotsSince(genesis) {
|
|
return nil
|
|
}
|
|
|
|
// Step 2 - sync to head from any single peer.
|
|
// This step might need to be improved for cases where there has been a long period since
|
|
// finality. This step is less important than syncing to finality in terms of threat
|
|
// mitigation. We are already convinced that we are on the correct finalized chain. Any blocks
|
|
// we receive there after must build on the finalized chain or be considered invalid during
|
|
// fork choice resolution / block processing.
|
|
root, _, pids := s.p2p.Peers().BestFinalized(1 /* maxPeers */, s.highestFinalizedEpoch())
|
|
for len(pids) == 0 {
|
|
log.Info("Waiting for a suitable peer before syncing to the head of the chain")
|
|
time.Sleep(refreshTime)
|
|
root, _, pids = s.p2p.Peers().BestFinalized(1 /* maxPeers */, s.highestFinalizedEpoch())
|
|
}
|
|
best := pids[0]
|
|
|
|
for head := helpers.SlotsSince(genesis); s.chain.HeadSlot() < head; {
|
|
req := &p2ppb.BeaconBlocksByRangeRequest{
|
|
HeadBlockRoot: root,
|
|
StartSlot: s.chain.HeadSlot() + 1,
|
|
Count: mathutil.Min(helpers.SlotsSince(genesis)-s.chain.HeadSlot()+1, allowedBlocksPerSecond),
|
|
Step: 1,
|
|
}
|
|
|
|
log.WithField("req", req).WithField("peer", best.Pretty()).Debug(
|
|
"Sending batch block request",
|
|
)
|
|
|
|
resp, err := s.requestBlocks(ctx, req, best)
|
|
if err != nil {
|
|
log.WithError(err).Error("Failed to receive blocks, exiting init sync")
|
|
return nil
|
|
}
|
|
|
|
for _, blk := range resp {
|
|
s.logSyncStatus(genesis, blk.Block, counter)
|
|
if err := s.chain.ReceiveBlockNoPubsubForkchoice(ctx, blk); err != nil {
|
|
log.WithError(err).Error("Failed to process block, exiting init sync")
|
|
return nil
|
|
}
|
|
}
|
|
if len(resp) == 0 {
|
|
break
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// requestBlocks by range to a specific peer.
|
|
func (s *Service) requestBlocks(ctx context.Context, req *p2ppb.BeaconBlocksByRangeRequest, pid peer.ID) ([]*eth.SignedBeaconBlock, error) {
|
|
if s.blocksRateLimiter.Remaining(pid.String()) < int64(req.Count) {
|
|
log.WithField("peer", pid).Debug("Slowing down for rate limit")
|
|
time.Sleep(s.blocksRateLimiter.TillEmpty(pid.String()))
|
|
}
|
|
s.blocksRateLimiter.Add(pid.String(), int64(req.Count))
|
|
log.WithFields(logrus.Fields{
|
|
"peer": pid,
|
|
"start": req.StartSlot,
|
|
"count": req.Count,
|
|
"step": req.Step,
|
|
"head": fmt.Sprintf("%#x", req.HeadBlockRoot),
|
|
}).Debug("Requesting blocks")
|
|
stream, err := s.p2p.Send(ctx, req, pid)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to send request to peer")
|
|
}
|
|
defer stream.Close()
|
|
|
|
resp := make([]*eth.SignedBeaconBlock, 0, req.Count)
|
|
for {
|
|
blk, err := prysmsync.ReadChunkedBlock(stream, s.p2p)
|
|
if err == io.EOF {
|
|
break
|
|
}
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to read chunked block")
|
|
}
|
|
resp = append(resp, blk)
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
// highestFinalizedEpoch returns the absolute highest finalized epoch of all connected peers.
|
|
// Note this can be lower than our finalized epoch if we have no peers or peers that are all behind us.
|
|
func (s *Service) highestFinalizedEpoch() uint64 {
|
|
highest := uint64(0)
|
|
for _, pid := range s.p2p.Peers().Connected() {
|
|
peerChainState, err := s.p2p.Peers().ChainState(pid)
|
|
if err == nil && peerChainState != nil && peerChainState.FinalizedEpoch > highest {
|
|
highest = peerChainState.FinalizedEpoch
|
|
}
|
|
}
|
|
|
|
return highest
|
|
}
|
|
|
|
// logSyncStatus and increment block processing counter.
|
|
func (s *Service) logSyncStatus(genesis time.Time, blk *eth.BeaconBlock, counter *ratecounter.RateCounter) {
|
|
counter.Incr(1)
|
|
rate := float64(counter.Rate()) / counterSeconds
|
|
if rate == 0 {
|
|
rate = 1
|
|
}
|
|
timeRemaining := time.Duration(float64(helpers.SlotsSince(genesis)-blk.Slot)/rate) * time.Second
|
|
log.WithField(
|
|
"peers",
|
|
len(s.p2p.Peers().Connected()),
|
|
).WithField(
|
|
"blocksPerSecond",
|
|
fmt.Sprintf("%.1f", rate),
|
|
).Infof(
|
|
"Processing block %d/%d - estimated time remaining %s",
|
|
blk.Slot,
|
|
helpers.SlotsSince(genesis),
|
|
timeRemaining,
|
|
)
|
|
}
|
|
|
|
func (s *Service) processBlock(ctx context.Context, blk *eth.SignedBeaconBlock) error {
|
|
parentRoot := bytesutil.ToBytes32(blk.Block.ParentRoot)
|
|
if !s.db.HasBlock(ctx, parentRoot) && !s.chain.HasInitSyncBlock(parentRoot) {
|
|
return fmt.Errorf("beacon node doesn't have a block in db with root %#x", blk.Block.ParentRoot)
|
|
}
|
|
s.blockNotifier.BlockFeed().Send(&feed.Event{
|
|
Type: blockfeed.ReceivedBlock,
|
|
Data: &blockfeed.ReceivedBlockData{SignedBlock: blk},
|
|
})
|
|
if featureconfig.Get().InitSyncNoVerify {
|
|
if err := s.chain.ReceiveBlockNoVerify(ctx, blk); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := s.chain.ReceiveBlockNoPubsubForkchoice(ctx, blk); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|