I need a way to temporary pause any replication events, such that any changes made on a node that’s been “paused” will eventually propagate through the cluster (assuming no conflicts are introduced in the mean time).
I have tried setting the wsrep_on variable to 0, however, this appears to ensure any changes are ignored entirely and no attempt is made to replicate these changes once wsrep_on is set to 1.
The difficult part of my requirement is that I need to be able to still connect to the server and perform various tasks (SELECT, UPDATE, INSERT, etc.) while replication is disabled, so simply shutting the server down is not an option.
I cannot seem to locate any useful information in the documentation. Any help would be appreciated.
Thanks!