forked from extern/smegmesh
64885f1055
Using statistical testing to test whether the node has failed.
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package sync
|
|
|
|
import (
|
|
logging "github.com/tim-beatham/wgmesh/pkg/log"
|
|
"github.com/tim-beatham/wgmesh/pkg/mesh"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// SyncErrorHandler: Handles errors when attempting to sync
|
|
type SyncErrorHandler interface {
|
|
Handle(meshId string, endpoint string, err error) bool
|
|
}
|
|
|
|
// SyncErrorHandlerImpl Is an implementation of the SyncErrorHandler
|
|
type SyncErrorHandlerImpl struct {
|
|
meshManager mesh.MeshManager
|
|
}
|
|
|
|
func (s *SyncErrorHandlerImpl) handleFailed(meshId string, nodeId string) bool {
|
|
mesh := s.meshManager.GetMesh(meshId)
|
|
mesh.Mark(nodeId)
|
|
return true
|
|
}
|
|
|
|
func (s *SyncErrorHandlerImpl) Handle(meshId string, nodeId string, err error) bool {
|
|
errStatus, _ := status.FromError(err)
|
|
|
|
logging.Log.WriteInfof("Handled gRPC error: %s", errStatus.Message())
|
|
|
|
switch errStatus.Code() {
|
|
case codes.Unavailable, codes.Unknown, codes.DeadlineExceeded, codes.Internal, codes.NotFound:
|
|
return s.handleFailed(meshId, nodeId)
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func NewSyncErrorHandler(m mesh.MeshManager) SyncErrorHandler {
|
|
return &SyncErrorHandlerImpl{meshManager: m}
|
|
}
|