2015-11-25 21:02:11.0|分类: MongoDB|浏览量: 1731
An arbiter does not have a copy of data set and cannot become a primary. Replica sets may have arbiters to add a vote in elections of for primary. Arbiters allow replica sets to have an uneven number of members, without the overhead of a member that replicates data. IMPORTANT Do not run an arbiter on systems that also host the primary or the secondary members of the replica set. Only add an arbiter to sets with even numbers of members. If you add an arbiter to a set with an odd number of members, the set may suffer from tied elections. To add an arbiter, see Add an Arbiter to Replica Set. 只能把arbiter 增加到偶数个成员的副本集,如果你把arbiter 增加到奇数成员的副本集中,可能造成捆绑选举,造成选择不出primary副本集。 ExampleFor example, in the following replica set, an arbiter allows the set to have an odd number of votes for elections: SecurityAuthenticationWhen running with authorization, arbiters exchange credentials with other members of the set to authenticate. MongoDB encrypts the authentication process. The MongoDB authentication exchange is cryptographically secure. Arbiters use keyfiles to authenticate to the replica set. CommunicationThe only communication between arbiters and other set members are: votes during elections, heartbeats, and configuration data. These exchanges are not encrypted. However, if your MongoDB deployment uses TLS/SSL, MongoDB will encrypt all communication between replica set members. See Configure mongod and mongos for TLS/SSL for more information. As with all MongoDB components, run arbiters in trusted network environments. |