2017-03-01 22:04:40 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
2017-03-20 03:48:42 +00:00
|
|
|
"context"
|
2017-03-01 22:04:40 +00:00
|
|
|
"fmt"
|
|
|
|
|
2017-12-13 01:45:03 +00:00
|
|
|
"github.com/armon/go-metrics"
|
2020-11-13 02:12:12 +00:00
|
|
|
"github.com/armon/go-metrics/prometheus"
|
2017-07-06 10:48:37 +00:00
|
|
|
"github.com/hashicorp/consul/agent/metadata"
|
2020-09-25 17:46:38 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2017-03-01 22:04:40 +00:00
|
|
|
"github.com/hashicorp/raft"
|
2020-09-25 17:46:38 +00:00
|
|
|
autopilot "github.com/hashicorp/raft-autopilot"
|
2017-03-01 22:04:40 +00:00
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
)
|
|
|
|
|
2020-11-13 02:12:12 +00:00
|
|
|
var AutopilotGauges = []prometheus.GaugeDefinition{
|
|
|
|
{
|
2020-11-13 21:18:04 +00:00
|
|
|
Name: []string{"autopilot", "failure_tolerance"},
|
2020-11-16 19:02:11 +00:00
|
|
|
Help: "Tracks the number of voting servers that the cluster can lose while continuing to function.",
|
2020-11-13 02:12:12 +00:00
|
|
|
},
|
|
|
|
{
|
2020-11-13 21:18:04 +00:00
|
|
|
Name: []string{"autopilot", "healthy"},
|
2020-11-16 19:02:11 +00:00
|
|
|
Help: "Tracks the overall health of the local server cluster. 1 if all servers are healthy, 0 if one or more are unhealthy.",
|
2020-11-13 02:12:12 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:38:52 +00:00
|
|
|
// AutopilotDelegate is a Consul delegate for autopilot operations.
|
|
|
|
type AutopilotDelegate struct {
|
2017-03-08 19:31:32 +00:00
|
|
|
server *Server
|
|
|
|
}
|
|
|
|
|
2017-12-13 01:45:03 +00:00
|
|
|
func (d *AutopilotDelegate) AutopilotConfig() *autopilot.Config {
|
2020-09-25 17:46:38 +00:00
|
|
|
return d.server.getOrCreateAutopilotConfig().ToAutopilotLibraryConfig()
|
2017-03-16 01:27:17 +00:00
|
|
|
}
|
2017-03-10 00:43:07 +00:00
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (d *AutopilotDelegate) KnownServers() map[raft.ServerID]*autopilot.Server {
|
|
|
|
return d.server.autopilotServers()
|
2017-03-10 00:43:07 +00:00
|
|
|
}
|
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (d *AutopilotDelegate) FetchServerStats(ctx context.Context, servers map[raft.ServerID]*autopilot.Server) map[raft.ServerID]*autopilot.ServerStats {
|
|
|
|
return d.server.statsFetcher.Fetch(ctx, servers)
|
2017-03-01 22:04:40 +00:00
|
|
|
}
|
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (d *AutopilotDelegate) NotifyState(state *autopilot.State) {
|
|
|
|
// emit metrics if we are the leader regarding overall healthiness and the failure tolerance
|
2017-12-13 01:45:03 +00:00
|
|
|
if d.server.raft.State() == raft.Leader {
|
2020-09-25 17:46:38 +00:00
|
|
|
metrics.SetGauge([]string{"autopilot", "failure_tolerance"}, float32(state.FailureTolerance))
|
|
|
|
if state.Healthy {
|
2017-12-13 01:45:03 +00:00
|
|
|
metrics.SetGauge([]string{"autopilot", "healthy"}, 1)
|
|
|
|
} else {
|
|
|
|
metrics.SetGauge([]string{"autopilot", "healthy"}, 0)
|
|
|
|
}
|
|
|
|
}
|
2017-03-15 23:09:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 16:18:59 +00:00
|
|
|
func (d *AutopilotDelegate) RemoveFailedServer(srv *autopilot.Server) {
|
|
|
|
go func() {
|
|
|
|
if err := d.server.RemoveFailedNode(srv.Name, false); err != nil {
|
|
|
|
d.server.logger.Error("failedto remove server", "name", srv.Name, "id", srv.ID, "error", err)
|
|
|
|
}
|
|
|
|
}()
|
2017-03-21 23:36:44 +00:00
|
|
|
}
|
2017-12-13 01:45:03 +00:00
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (s *Server) initAutopilot(config *Config) {
|
|
|
|
apDelegate := &AutopilotDelegate{s}
|
|
|
|
|
|
|
|
s.autopilot = autopilot.New(
|
|
|
|
s.raft,
|
|
|
|
apDelegate,
|
|
|
|
autopilot.WithLogger(s.logger),
|
|
|
|
autopilot.WithReconcileInterval(config.AutopilotInterval),
|
|
|
|
autopilot.WithUpdateInterval(config.ServerHealthInterval),
|
|
|
|
autopilot.WithPromoter(s.autopilotPromoter()),
|
|
|
|
)
|
2017-12-13 01:45:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (s *Server) autopilotServers() map[raft.ServerID]*autopilot.Server {
|
|
|
|
servers := make(map[raft.ServerID]*autopilot.Server)
|
|
|
|
for _, member := range s.serfLAN.Members() {
|
|
|
|
srv, err := s.autopilotServer(member)
|
|
|
|
if err != nil {
|
|
|
|
s.logger.Warn("Error parsing server info", "name", member.Name, "error", err)
|
|
|
|
continue
|
|
|
|
} else if srv == nil {
|
|
|
|
// this member was a client
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
servers[srv.ID] = srv
|
|
|
|
}
|
|
|
|
|
|
|
|
return servers
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) autopilotServer(m serf.Member) (*autopilot.Server, error) {
|
|
|
|
ok, srv := metadata.IsConsulServer(m)
|
|
|
|
if !ok {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.autopilotServerFromMetadata(srv)
|
2017-12-13 01:45:03 +00:00
|
|
|
}
|
2019-06-28 17:40:07 +00:00
|
|
|
|
2020-09-25 17:46:38 +00:00
|
|
|
func (s *Server) autopilotServerFromMetadata(srv *metadata.Server) (*autopilot.Server, error) {
|
|
|
|
server := &autopilot.Server{
|
|
|
|
Name: srv.ShortName,
|
|
|
|
ID: raft.ServerID(srv.ID),
|
|
|
|
Address: raft.ServerAddress(srv.Addr.String()),
|
|
|
|
Version: srv.Build.String(),
|
|
|
|
RaftVersion: srv.RaftVersion,
|
|
|
|
Ext: s.autopilotServerExt(srv),
|
|
|
|
}
|
|
|
|
|
|
|
|
switch srv.Status {
|
|
|
|
case serf.StatusLeft:
|
|
|
|
server.NodeStatus = autopilot.NodeLeft
|
|
|
|
case serf.StatusAlive, serf.StatusLeaving:
|
|
|
|
// we want to treat leaving as alive to prevent autopilot from
|
|
|
|
// prematurely removing the node.
|
|
|
|
server.NodeStatus = autopilot.NodeAlive
|
|
|
|
case serf.StatusFailed:
|
|
|
|
server.NodeStatus = autopilot.NodeFailed
|
|
|
|
default:
|
|
|
|
server.NodeStatus = autopilot.NodeUnknown
|
|
|
|
}
|
|
|
|
|
|
|
|
// populate the node meta if there is any. When a node first joins or if
|
|
|
|
// there are ACL issues then this could be empty if the server has not
|
|
|
|
// yet been able to register itself in the catalog
|
|
|
|
_, node, err := s.fsm.State().GetNodeID(types.NodeID(srv.ID))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error retrieving node from state store: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if node != nil {
|
|
|
|
server.Meta = node.Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
return server, nil
|
2019-06-28 17:40:07 +00:00
|
|
|
}
|