Международная конференция разработчиков
и пользователей свободного программного обеспечения

Running MySQL in Kubernetes

Mykola Marzhan, Kyiv, Ukraine; Dmitriy Kostiuk, Brest, Belarus

LVEE 2019

Running databases in Kubernetes attracts a lot of attention today. Orсhestration of MySQL on Kubernetes is no way a straightforward process. There are several good MySQL based solutions in the open-source world, made by Oracle, Presslabs, and Percona. Having a common base, they differ in self-healing capabilities, multimaster and backup/restore support, etc. So let’s make a fair comparison to figure out the pros and cons of their current state.

Without question, Kubernetes is the most popular container orchestration platform, and container orchestration itself is an excellent approach for packaging and deployment, which allows you to deploy a known version of configuration, code, and environment in a deterministic way.

In general, databases easiest for containerization are those which manage their state and make themselves effectively stateless from the point of the scheduler and container orchestration, i.e. ones that provide cluster membership, fault-tolerance, and data replication. Databases that do not do these things on their own require additional services and/or application-specific frameworks to operate reliably.

Thus, deploying MySQL in containerized environment turns out to be a rather complicated task, which involves additional components and their setup. Most known MySQL based solutions for Kubernetes in the open-source world are made by Presslabs 1, Percona 2, and Oracle 3, and all three are based on a specially developed Kubernetes Operator.

Kubernetes Operator extends the Kubernetes API with a new custom resource for deploying, configuring, and managing the application through the whole life cycle. You can compare the Kubernetes Operator to a System Administrator who deploys the application and watches the Kubernetes events related to it, taking administrative/operational actions when needed.

It allows you to launch a new environment with no single point of failure in under 10 minutes, and will reliably orchestrate scaling the environment to meet current requirements if needed, adding or removing nodes quickly and efficiently. Kubernetes Operators also provides self-healing of a failed node in a cluster environment.

The Presslabs MySQL Operator 1 has the most simple architecture – regular MySQL asynchronous replication, with backups support (both scheduled and on-demand ones), and high availability of the database cluster. The operator is still in its alpha stage. HA features are based on the orchestrator project 4, and also, the monitoring capabilities are provided with the use of Prometheus time-series database 5.

Percona Kubernetes Operator for XtraDB Cluster 2 is a Percona solution for managing the Percona XtraDB Cluster deployment in a Kubernetes or OpenShift environment, which also officially supports Minikube. Percona XtraDB Cluster in its turn is a database clustering solution that integrates Percona Server for MySQL running with the XtraDB storage engine, and Percona XtraBackup with the Galera library to enable synchronous multi-master replication. Percona XtraDB Cluster also includes ProxySQL for load balancing. The Operator also adds Percona Monitoring and Management 6 to provide you with deep visibility into the performance and usage of the cluster 7.

The design of the operator is bound to the Percona XtraDB Cluster, but the following diagram shows how it is related to the Kubernetes resources and is similar to all MySQL operators:

To provide high availability operator uses node affinity to run PXC instances on separate worker nodes, with the automatical re-creation of the failed container on another node. Scheduled and on-demand backups can be done on any S3-compatible storage or stored locally. The operator also uses TLS cryptographic protocol as for internal purposes (communication between PXC instances in the cluster) and external ones (communication between the client application and ProxySQL).

The MySQL Operator from Oracle uses a similar approach and is based on MySQL InnoDB Cluster 3. It provides scheduled and on-demand backups and restore, and uses Kubernetes Persistent Volume Claims to store data on local disk or network-attached storage. It is also able to use Prometheus to gather monitoring metrics.

References

1 presslabs/mysql-operator: Bulletproof MySQL on Kubernetes using Percona Server https://github.com/presslabs/mysql-operator

2 percona/percona-xtradb-cluster-operator: Percona Kubernetes Operator for XtraDB Cluster https://github.com/percona/percona-xtradb-cluster-operator

3 oracle/mysql-operator: Create, operate and scale self-healing MySQL clusters in Kubernetes https://github.com/oracle/mysql-operator

4 github/orchestrator: MySQL replication topology management and HA. https://github.com/github/orchestrator

5 Prometheus – Monitoring system & time-series database. https://prometheus.io/

6 Percona Monitoring and Management Documentation https://www.percona.com/doc/percona-monitoring-and-management

7 Percona XtraDB Cluster 5.7 Documentation https://www.percona.com/doc/percona-xtradb-cluster

Abstract licensed under Creative Commons Attribution-ShareAlike 3.0 license

Назад