Zero-Downtime Cluster Maintenance: Comparing the Procedures for Upgrades versus DB/OS Maintenance
Zero-Downtime Cluster Maintenance: Comparing the Procedures for Upgrades versus DB/OS Maintenance
Zero-Downtime Cluster Maintenance: Comparing the Procedures for Upgrades versus DB/OS Maintenance
How to move the Relay role to another node in a Composite Tungsten Cluster
https://github.com/continuent/continuent-puppet-tungsten As user root: vi /root/install.pp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$clusterData = { "myServiceNameHere" => { "topology" => "master-slave", "master" => "myDBHostName1", "slaves" => "myDBHostName2", }, } class { 'tungsten' : installSSHKeys => true, installMysql => true, clusterData => $clusterData, replicatorRepo => "stable", installReplicatorSoftware => true, } |
yum install puppet mkdir -p /etc/puppet/modules puppet module install continuent/tungsten puppet apply /root/install.pp
If you are inserting to the same table at the same time at two or more different sites, and using bi-directional or multi-master replication, then the auto-increment keys need to be offset so they do not conflict or the application needs to be be able to generate it’s own unique keys. Use the auto-increment-increment and […]