Each member of a replica set has a state.副本集的每个成员都有一个状态。
| 0 | STARTUP | mongod parses the replica set configuration document while in STARTUP.mongod在STARTUP中解析副本集配置文档。 |
| 1 | PRIMARY | |
| 2 | SECONDARY | |
| 3 | RECOVERING | |
| 5 | STARTUP2 | |
| 6 | UNKNOWN | |
| 7 | ARBITER | |
| 8 | DOWN | |
| 9 | ROLLBACK |
|
| 10 | REMOVED |
States状态
Core States核心状态
PRIMARYMembers in处于PRIMARYstate accept write operations. A replica set has at most one primary at a time.PRIMARY状态的成员接受写入操作。副本集一次最多有一个主副本。[1]A选举后,SECONDARYmember becomes primary after an election.SECONDARY成员成为主要成员。Members in thePRIMARYstate are eligible to vote.PRIMARY状态的成员有资格投票。
SECONDARYMembers in处于SECONDARYstate replicate the primary's data set and can be configured to accept read operations. Secondaries are eligible to vote in elections, and may be elected to thePRIMARYstate if the primary becomes unavailable.SECONDARY状态的成员复制主数据集,可以配置为接受读取操作。借调人员有资格在选举中投票,如果初选不可用,他们可能会被选入PRIMARY状态。
ARBITERMembers in处于ARBITERstate do not replicate data or accept write operations. They are eligible to vote, and exist solely to break a tie during elections.ARBITER状态的成员不复制数据或接受写入操作。他们有资格投票,他们的存在只是为了在选举中打破平局。Replica sets should only have a member in the如果副本集的投票成员数量为偶数,并且可能出现平局,则副本集只能有一个处于ARBITERstate if the set would otherwise have an even number of voting members, and could suffer from tied elections.ARBITER(仲裁)状态的成员。There should only be at most one arbiter configured in any replica set. For considerations when using an arbiter, see Replica Set Arbiter.任何副本集中最多只能配置一个仲裁器。有关使用仲裁器时的注意事项,请参阅副本集仲裁器。
See Replica Set Members for more information on core states.有关核心状态的更多信息,请参阅副本集成员。
Other States其他状态
STARTUPEach member of a replica set starts up in副本集的每个成员都以STARTUPstate.mongodthen loads that member's replica set configuration, and transitions the member's state toSTARTUP2orARBITER.STARTUP状态启动。mongod然后加载该成员的副本集配置,并将成员的状态转换为STARTUP2或ARBITER。Members inSTARTUPare not eligible to vote, as they are not yet a recognized member of any replica set.STARTUP中的成员没有资格投票,因为他们还不是任何副本集的公认成员。
STARTUP2Changed in version 5.0.在版本5.0中的更改。Each data-bearing member of a replica set enters the一旦STARTUP2state as soon asmongodfinishes loading that member's configuration.mongod完成加载副本集的每个数据承载成员的配置,该成员就会进入STARTUP2状态。The member then decides whether or not to undertake an initial sync. If a member begins an initial sync, the member remains in然后,成员决定是否进行初始同步。如果成员开始初始同步,则该成员将保持STARTUP2until all data is copied and all indexes are built.STARTUP2状态,直到复制所有数据并构建所有索引。Afterwards, the member transitions to然后,成员转换到RECOVERING.RECOVERING。Newly-added members inSTARTUP2are not eligible to vote and cannot be elected during the initial sync process. Prior to MongoDB 5.0, members inSTARTUP2were eligible to vote.STARTUP2中新添加的成员没有投票资格,在初始同步过程中无法当选。在MongoDB 5.0之前,STARTUP2中的成员有资格投票。
RECOVERINGA member of a replica set enters当副本集的成员未准备好接受读取时,它将进入RECOVERINGstate when it is not ready to accept reads.RECOVERING状态。TheRECOVERINGstate can occur during normal operation, and doesn't necessarily reflect an error condition.RECOVERING状态可能发生在正常操作期间,不一定反映错误情况。Members in theRECOVERINGstate are eligible to vote in elections, but are not eligible to enter thePRIMARYstate.RECOVERING状态的成员有资格在选举中投票,但没有资格进入PRIMARY状态。A member transitions from成员在复制足够的数据以保证客户端读取的数据视图一致后,从RECOVERINGtoSECONDARYafter replicating enough data to guarantee a consistent view of the data for client reads.RECOVERING转换为SECONDARY。The only difference betweenRECOVERINGandSECONDARYstates is thatRECOVERINGprohibits client reads andSECONDARYpermits them.RECOVERING和SECONDARY状态之间的唯一区别是,RECOVERING禁止客户端读取,而SECONDARY允许客户端读取。SECONDARYstate does not guarantee anything about the staleness of the data with respect to the primary.状态不保证数据相对于主数据的陈旧性。Due to overload, a secondary may fall far enough behind the other members of the replica set such that it may need to resync with the rest of the set.由于过载,secondary可能远远落后于副本集的其他成员,因此可能需要与副本集的其余部分重新同步。When this happens, the member enters the当这种情况发生时,成员将进入RECOVERINGstate and requires manual intervention.RECOVERING状态,需要手动干预。
ROLLBACKWhenever the replica set replaces a primary in an election, the old primary may contain documents that did not replicate to the secondary members.每当副本集在选举中替换primary时,旧主副本可能包含未复制到secondary成员的文档。In this case, the old primary member reverts those writes. During rollback, the member will have在这种情况下,旧的主要成员将恢复这些写入。在回滚过程中,成员将处于ROLLBACKstate.ROLLBACK状态。Members in theROLLBACKstate are eligible to vote in elections.ROLLBACK状态的成员有资格在选举中投票。Starting in version 4.2, MongoDB kills all in-progress user operations when a member enters the从4.2版本开始,当成员进入ROLLBACKstate.ROLLBACK状态时,MongoDB会终止所有正在进行的用户操作。
Error States错误状态
Members in any error state can't vote.处于任何错误状态的成员都不能投票。
UNKNOWNMembers that have never communicated status information to the replica set are in the从未向副本集传递状态信息的成员处于UNKNOWNstate.UNKNOWN状态。
DOWNMembers that lose their connection to the replica set are seen as失去与副本集连接的成员被该集的其余成员视为DOWNby the remaining members of the set.DOWN。
REMOVEDMembers that are removed from the replica set enter the从副本集中删除的成员将进入REMOVEDstate. When members enter theREMOVEDstate, the logs will mark this event with areplSet REMOVEDmessage entry.REMOVED状态。当成员进入REMOVED状态时,日志将用replSet REMOVED消息条目标记此事件。
| [1] | { w: "majority" } write concern. { w: "majority" }写操作。{ w: "majority" } writes is the current primary, and the other node is a former primary that has not yet recognized its demotion, typically due to a network partition. { w: "majority" }写入的节点是当前主节点,另一个节点是尚未识别其降级的前主节点,通常是由于网络分区。primary, and new writes to the former primary will eventually roll back.primary,并且对前一个主机的新写入最终将回滚。 |