What's desired
For replicating database(MySQL) in SDN-C following things were needed:
- Have a Master and at least 1 Slave.
- Reuse MySQL inbuilt data replication for replicating data between Master and Slaves.
- Using Kubernetes scaling mechasism to scale the pods.
How Kubernetes enabled it
- StatefulSet:
- Used to manage Stateful applications.
- Guarantees fixed numbering for a POD.
- Also using headless service, PODs were registered with there own unique FQDN in DNS; this makes it possible for other PODs to find a POD even after restart (with different IPAddress).
- Since we were using a single Kubernetes VM, hosting a volume dynamically on the local-store VM for newly spun slaves was not straight-forward (support wasn't inbuilt). However, Kubernetes does support writing external provisioners which did the job for us. This provisioner actually created a virtual NFS Server on top of a local store.The instance of nfs-provisioner will watch for
PersistentVolumeClaims
that ask for theStorageClass
and automatically create NFS-backedPersistentVolumes
for them.
We used Kubernetes example to replicate MySQL server; this was modified to suit the needs for SDN-C DB.
Internals
For each MYSQL POD, 2 init-containers and 2 containers are spawned.
- 2 init containers:
- init-mysql
- Generates special Mysql config files based on Ordinal index. (Save ordinal index in server-id.cnf)
- Uses config-map to copy the master.cnf/slave.cnf files to conf.d directory.
- clone-mysql:
- Performs clone operation first time the Slave comes up - assuming that Master already has some data on it when the Slave starts.
- Uses Opensource tool Percona for this job
- init-mysql
- 2 containers:
- mysqld:
- Actual mysql server
- xtrabackup sidecar:
- Handles all the replication between this server and Master.
- Handles request from other Pods for data cloning.
- mysqld:
As mentioned above, used nfs-provisioner to dynamically create Persistent Volume Claims to enable dynamic scaling of slaves.
Master Failure
Unfortunately if a master fails, we need to write a script (or an application) to promote one of the slaves to be the master and instruct other slaves and applications to change to the new master. You can see more details here.
Other way is to use GTID based replication.
Advantages
- Can have multiple slaves with a Master server.
- Allows scaling slaves dynamically.
- Any data write is done to Master but data-read can happen on Slaves as well. Hence a 'DBHost-Read' Service was introduced which should be used by Clients for data fetch operations.
- For any write operation. the write service - DBHost - can be used.
- Once a Slave is replicated from master, that Slave is then used to replicate data on any new Slave; Low impact on the Master server.
Examples:
Running mysql client to create DB and Table and fetch it using DBHost-Read service:
To demonstrate that DBHost-read distributes service across slaves, see the ServerID changing in it's response
Can scale (up or down) mysql dynamically: