其他分享
首页 > 其他分享> > hashicorp raft 介绍与源代码分析(二): 领导人选举(一)

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

标签:node,Candidate,hashicorp,Follower,Shutdown,Raft,raft,源代码,Leader
来源: https://blog.csdn.net/u013272009/article/details/122531252