Should I use k8s statefulsets directly or mysql-operator to deploy master-slave mysql cluster?

8/3/2020

So I want to deploy a master-slaves MySQL cluster in k8s. I found 2 ways that seem popular: 1. The first one is to use statefulsets directly from k8s official document: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/ 2. The second one is to use operator, i.e. https://github.com/oracle/mysql-operator

Which way is most commonly used?

Also, in statefulsets, if my MySQL master dies, will k8s automatically promote the slave to be the master?

Lastly, when my logic backend app performs an operation (CRUD) to MySQL cluster, how does k8s know which pod to route to, i.e. write operation can only be sent to master while read is sent to all?

-- Tran Ly Vu
kubernetes
kubernetes-operator
kubernetes-statefulset
master-slave
mysql

1 Answer

8/5/2020

Users can deploy and maintain a set of highly available MySQL services in k8s based on StatefulSets, the process is relatively complex. This process requires users to familiarize themselves with various k8s resource objects, learn many MySQL operation details and maintain a set of complex management scripts. Kubernetes Operators are designed to reduce the threshold for deploying complex applications on k8s.

Operator hides the orchestration details of complex applications and greatly reduces the threshold to use them in k8s. If you need to deploy other complex applications, we recommend that you use the Operator.

Speaking about master election while using StatefulSet. Electing potential slave to be a master is not an automatic process - you have to configure this manually using Xtrabackup - here is more information - setting_up_replication.

Take a look: cloning-existing-data, starting-replication, mysql-statefulset-operator.

Useful tools: vitess for better MySQL networking management and percona-xtradb-cluster that provides superior performance, scalability and instrumentation.

-- Malgorzata
Source: StackOverflow