hashicorp raft 介绍与源代码分析(二): 领导人选举(一)

hashicorp raft 介绍与源代码分析(二): 领导人选举(一),第1张

hashicorp raft 介绍与源代码分析(二): 领导人选举(一) Raft 节点状态

Raft 节点启动后,会在 Follower 、 Candidate 、 Leader 3 个状态间转换,直到关闭 Shutdown

// RaftState captures the state of a Raft node: Follower, Candidate, Leader,
// or Shutdown.
type RaftState uint32

const (
	// Follower is the initial state of a Raft node.
	Follower RaftState = iota

	// Candidate is one of the valid states of a Raft node.
	Candidate

	// Leader is one of the valid states of a Raft node.
	Leader

	// Shutdown is the terminal state of a Raft node.
	Shutdown

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5705114.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存