Some checks failed
DCO action / DCO (pull_request) Successful in 59s
Vulncheck / Vulncheck (pull_request) Successful in 1m4s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m55s
Build / Build Components (pull_request) Successful in 2m4s
Tests and linters / Staticcheck (pull_request) Successful in 2m38s
Tests and linters / Lint (pull_request) Successful in 3m16s
Tests and linters / Run gofumpt (pull_request) Successful in 3m54s
Tests and linters / Tests (pull_request) Successful in 4m12s
Tests and linters / gopls check (pull_request) Successful in 4m31s
Tests and linters / Tests with -race (pull_request) Successful in 4m38s
OCI image / Build container images (push) Failing after 18s
Vulncheck / Vulncheck (push) Successful in 1m2s
Pre-commit hooks / Pre-commit (push) Successful in 1m39s
Build / Build Components (push) Successful in 1m45s
Tests and linters / Staticcheck (push) Successful in 2m18s
Tests and linters / Run gofumpt (push) Successful in 2m46s
Tests and linters / Lint (push) Successful in 3m5s
Tests and linters / Tests with -race (push) Successful in 3m23s
Tests and linters / Tests (push) Successful in 3m52s
Tests and linters / gopls check (push) Successful in 4m18s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
73 lines
2 KiB
Go
73 lines
2 KiB
Go
package netmap
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/innerring/processors/governance"
|
|
netmapEvent "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event/netmap"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Process new epoch notification by setting global epoch value and resetting
|
|
// local epoch timer.
|
|
func (np *Processor) processNewEpoch(ctx context.Context, ev netmapEvent.NewEpoch) bool {
|
|
epoch := ev.EpochNumber()
|
|
|
|
epochDuration, err := np.netmapClient.EpochDuration(ctx)
|
|
if err != nil {
|
|
np.log.Warn(ctx, logs.NetmapCantGetEpochDuration,
|
|
zap.Error(err))
|
|
} else {
|
|
np.epochState.SetEpochDuration(epochDuration)
|
|
}
|
|
|
|
np.epochState.SetEpochCounter(epoch)
|
|
|
|
h, err := np.netmapClient.MorphTxHeight(ev.TxHash())
|
|
if err != nil {
|
|
np.log.Warn(ctx, logs.NetmapCantGetTransactionHeight,
|
|
zap.String("hash", ev.TxHash().StringLE()),
|
|
zap.Error(err))
|
|
}
|
|
|
|
if err := np.epochTimer.ResetEpochTimer(h); err != nil {
|
|
np.log.Warn(ctx, logs.NetmapCantResetEpochTimer,
|
|
zap.Error(err))
|
|
}
|
|
|
|
// get new netmap snapshot
|
|
networkMap, err := np.netmapClient.NetMap(ctx)
|
|
if err != nil {
|
|
np.log.Warn(ctx, logs.NetmapCantGetNetmapSnapshotToPerformCleanup,
|
|
zap.Error(err))
|
|
|
|
return false
|
|
}
|
|
|
|
np.netmapSnapshot.update(*networkMap, epoch)
|
|
np.handleCleanupTick(ctx, netmapCleanupTick{epoch: epoch, txHash: ev.TxHash()})
|
|
np.handleAlphabetSync(ctx, governance.NewSyncEvent(ev.TxHash()))
|
|
np.handleNotaryDeposit(ctx, ev)
|
|
|
|
return true
|
|
}
|
|
|
|
// Process new epoch tick by invoking new epoch method in network map contract.
|
|
func (np *Processor) processNewEpochTick(ctx context.Context) bool {
|
|
if !np.alphabetState.IsAlphabet(ctx) {
|
|
np.log.Info(ctx, logs.NetmapNonAlphabetModeIgnoreNewEpochTick)
|
|
return true
|
|
}
|
|
|
|
nextEpoch := np.epochState.EpochCounter() + 1
|
|
np.log.Debug(ctx, logs.NetmapNextEpoch, zap.Uint64("value", nextEpoch))
|
|
|
|
err := np.netmapClient.NewEpoch(ctx, nextEpoch)
|
|
if err != nil {
|
|
np.log.Error(ctx, logs.NetmapCantInvokeNetmapNewEpoch, zap.Error(err))
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|