frostfs-node/pkg/innerring/processors/netmap/handlers.go

80 lines
2.1 KiB
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package netmap
import (
"encoding/hex"
2020-07-24 13:54:03 +00:00
timerEvent "github.com/nspcc-dev/neofs-node/pkg/innerring/timers"
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
netmapEvent "github.com/nspcc-dev/neofs-node/pkg/morph/event/netmap"
"go.uber.org/zap"
)
func (np *Processor) handleNewEpochTick(ev event.Event) {
_ = ev.(timerEvent.NewEpochTick)
2020-07-24 13:54:03 +00:00
np.log.Info("tick", zap.String("type", "epoch"))
// send event to the worker pool
err := np.pool.Submit(func() { np.processNewEpochTick() })
if err != nil {
// there system can be moved into controlled degradation stage
2020-07-24 13:54:03 +00:00
np.log.Warn("netmap worker pool drained",
zap.Int("capacity", np.pool.Cap()))
}
}
func (np *Processor) handleNewEpoch(ev event.Event) {
epochEvent := ev.(netmapEvent.NewEpoch)
2020-07-24 13:54:03 +00:00
np.log.Info("notification",
zap.String("type", "new epoch"),
zap.Uint64("value", epochEvent.EpochNumber()))
// send event to the worker pool
err := np.pool.Submit(func() {
np.processNewEpoch(epochEvent.EpochNumber())
})
if err != nil {
// there system can be moved into controlled degradation stage
2020-07-24 13:54:03 +00:00
np.log.Warn("netmap worker pool drained",
zap.Int("capacity", np.pool.Cap()))
}
}
func (np *Processor) handleAddPeer(ev event.Event) {
newPeer := ev.(netmapEvent.AddPeer)
np.log.Info("notification",
zap.String("type", "add peer"),
)
// send event to the worker pool
err := np.pool.Submit(func() {
np.processAddPeer(newPeer.Node())
})
if err != nil {
// there system can be moved into controlled degradation stage
np.log.Warn("netmap worker pool drained",
zap.Int("capacity", np.pool.Cap()))
}
}
func (np *Processor) handleUpdateState(ev event.Event) {
updPeer := ev.(netmapEvent.UpdatePeer)
np.log.Info("notification",
zap.String("type", "update peer state"),
zap.String("key", hex.EncodeToString(updPeer.PublicKey().Bytes())))
// send event to the worker pool
err := np.pool.Submit(func() {
np.processUpdatePeer(updPeer)
})
if err != nil {
// there system can be moved into controlled degradation stage
np.log.Warn("netmap worker pool drained",
zap.Int("capacity", np.pool.Cap()))
}
}