2020-10-29 16:07:31 +00:00
|
|
|
package netmap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2022-01-31 11:58:55 +00:00
|
|
|
netmapclient "github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap"
|
2021-11-10 07:08:33 +00:00
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/netmap"
|
2020-10-29 16:07:31 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2021-09-23 17:13:59 +00:00
|
|
|
func (np *Processor) processNetmapCleanupTick(ev netmapCleanupTick) {
|
2021-03-23 15:20:44 +00:00
|
|
|
if !np.alphabetState.IsAlphabet() {
|
|
|
|
np.log.Info("non alphabet mode, ignore new netmap cleanup tick")
|
2020-10-29 16:07:31 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-23 17:13:59 +00:00
|
|
|
err := np.netmapSnapshot.forEachRemoveCandidate(ev.epoch, func(s string) error {
|
2020-10-29 16:07:31 +00:00
|
|
|
key, err := keys.NewPublicKeyFromString(s)
|
|
|
|
if err != nil {
|
|
|
|
np.log.Warn("can't decode public key of netmap node",
|
|
|
|
zap.String("key", s))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
np.log.Info("vote to remove node from netmap", zap.String("key", s))
|
|
|
|
|
2021-11-10 11:05:51 +00:00
|
|
|
prm := netmapclient.UpdatePeerPrm{}
|
|
|
|
|
|
|
|
prm.SetKey(key.Bytes())
|
|
|
|
prm.SetState(netmap.NodeStateOffline)
|
|
|
|
prm.SetHash(ev.TxHash())
|
2021-09-23 17:13:59 +00:00
|
|
|
|
2021-11-10 11:05:51 +00:00
|
|
|
err = np.netmapClient.UpdatePeerState(prm)
|
2020-10-29 16:07:31 +00:00
|
|
|
if err != nil {
|
|
|
|
np.log.Error("can't invoke netmap.UpdateState", zap.Error(err))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
np.log.Warn("can't iterate on netmap cleaner cache",
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
}
|
|
|
|
}
|