├── .gitignore ├── .gitmodules ├── Creating-Appliance.md ├── README.MD ├── README_AWS.md ├── README_OPENSTACK.md ├── Vagrantfile ├── Vagrantfile.aws ├── Vagrantfile.master_slave ├── Vagrantfile.pxc ├── instructions ├── 01-Migrate Master Slave to Cluster.rst ├── 02-Essential Topics.rst ├── 03-Node Failure and Arbitration.rst ├── 04-Avoiding SST.rst ├── 05-High Availability.rst ├── 06-Tuning Replication.rst ├── Auto Increments.rst ├── Cluster Limitations.rst ├── Multicast Replication.rst ├── Other SST Methods.rst ├── README.rst └── SSL Replication.rst ├── lib ├── manifests ├── modules ├── ms-setup.pl ├── multi-ms-setup.sh ├── neuter-internet-repos.pl ├── puppet ├── manifests │ ├── pxc.pp │ └── standalone.pp └── modules └── xtradb-tutorial.key /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .DS_Store 3 | ._* 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/.gitmodules -------------------------------------------------------------------------------- /Creating-Appliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/Creating-Appliance.md -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/README.MD -------------------------------------------------------------------------------- /README_AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/README_AWS.md -------------------------------------------------------------------------------- /README_OPENSTACK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/README_OPENSTACK.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- 1 | Vagrantfile.master_slave -------------------------------------------------------------------------------- /Vagrantfile.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/Vagrantfile.aws -------------------------------------------------------------------------------- /Vagrantfile.master_slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/Vagrantfile.master_slave -------------------------------------------------------------------------------- /Vagrantfile.pxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/Vagrantfile.pxc -------------------------------------------------------------------------------- /instructions/01-Migrate Master Slave to Cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/01-Migrate Master Slave to Cluster.rst -------------------------------------------------------------------------------- /instructions/02-Essential Topics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/02-Essential Topics.rst -------------------------------------------------------------------------------- /instructions/03-Node Failure and Arbitration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/03-Node Failure and Arbitration.rst -------------------------------------------------------------------------------- /instructions/04-Avoiding SST.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/04-Avoiding SST.rst -------------------------------------------------------------------------------- /instructions/05-High Availability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/05-High Availability.rst -------------------------------------------------------------------------------- /instructions/06-Tuning Replication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/06-Tuning Replication.rst -------------------------------------------------------------------------------- /instructions/Auto Increments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/Auto Increments.rst -------------------------------------------------------------------------------- /instructions/Cluster Limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/Cluster Limitations.rst -------------------------------------------------------------------------------- /instructions/Multicast Replication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/Multicast Replication.rst -------------------------------------------------------------------------------- /instructions/Other SST Methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/Other SST Methods.rst -------------------------------------------------------------------------------- /instructions/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/README.rst -------------------------------------------------------------------------------- /instructions/SSL Replication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/instructions/SSL Replication.rst -------------------------------------------------------------------------------- /lib: -------------------------------------------------------------------------------- 1 | vagrant-percona/lib -------------------------------------------------------------------------------- /manifests: -------------------------------------------------------------------------------- 1 | vagrant-percona/manifests -------------------------------------------------------------------------------- /modules: -------------------------------------------------------------------------------- 1 | vagrant-percona/modules -------------------------------------------------------------------------------- /ms-setup.pl: -------------------------------------------------------------------------------- 1 | vagrant-percona/ms-setup.pl -------------------------------------------------------------------------------- /multi-ms-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/multi-ms-setup.sh -------------------------------------------------------------------------------- /neuter-internet-repos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/neuter-internet-repos.pl -------------------------------------------------------------------------------- /puppet/manifests/pxc.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/puppet/manifests/pxc.pp -------------------------------------------------------------------------------- /puppet/manifests/standalone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/puppet/manifests/standalone.pp -------------------------------------------------------------------------------- /puppet/modules: -------------------------------------------------------------------------------- 1 | ../vagrant-percona/modules -------------------------------------------------------------------------------- /xtradb-tutorial.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percona/xtradb-cluster-tutorial/HEAD/xtradb-tutorial.key --------------------------------------------------------------------------------