2020-10-29 16:07:31 +00:00
|
|
|
package netmap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2020-11-16 10:26:35 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
2020-10-29 16:07:31 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (np *Processor) processNetmapCleanupTick(epoch uint64) {
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
err := np.netmapSnapshot.forEachRemoveCandidate(epoch, func(s string) error {
|
|
|
|
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-05-31 11:50:11 +00:00
|
|
|
err = np.netmapClient.UpdatePeerState(key.Bytes(), netmap.NodeStateOffline)
|
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()))
|
|
|
|
}
|
|
|
|
}
|