WSREP will block mysql clients when the sum of nodes below quorum.
ERROR 1047 (08S01): WSREP has not yet prepared node for application useThis is true with two nodes one garb. To set the remaining surviving node as master:
SET GLOBAL wsrep_provider_options='pc.bootstrap=YES';To force the surviving node accept connections:
SET GLOBAL wsrep_provider_options='pc.ignore_sb=TRUE';Source:


