QuestionQ139
ArchitectureReview the following commands, which run successfully on the ic1 host:
mysqlsh> dba.createCluster('cluster1', \{memberWeight:35\})
mysqlsh> var mycluster = dba.getCluster()
mysqlsh> mycluster.addInstance('ic@ic2', \{memberWeight:25\})
mysqlsh> mycluster.addInstance('ic@ic3', \{memberWeight:50\})
Now review this configuration setting, which is identical on every node:
group_replication_consistency=BEFORE_ON_PRIMARY_FAILOVER
The primary node ic1 fails.
Which statement is true?
- A Node ic3 becomes the new primary and is ignored until any backlog of transactions is completed.
- B Node ic2 becomes the new primary and current transactions are considered stale and rolled back.
- C Only two nodes remain so the election process is uncertain and must be done manually.
- D Node ic3 becomes the new primary and current transactions are considered stale and rolled back.
- E Node ic2 becomes the new primary and is ignored until any backlog of transactions is completed.
Community Discussion