OpenEBS for Percona

Introduction
Percona is highly scalable and requires underlying persistent storage to be equally scalable and performing. OpenEBS provides scalable storage for Percona for providing a simple and scalable RDS like solution for both On-Premise and cloud environments.
Advantages of using OpenEBS for Percona database:
- Storage is highly available. Data is replicated on to three different nodes, even across zones. Node upgrades, node failures will not result in unavailability of persistent data.
- For each database instance of Percona, a dedicated OpenEBS workload is allocated so that granular storage policies can be applied. OpenEBS storage controller can be tuned with resources such as memory, CPU and number/type of disks for optimal performance.
Deployment model

As shown above, OpenEBS volumes need to be configured with three replicas for high availability. This configuration works fine when the nodes (hence the cStor pool) is deployed across Kubernetes zones.
Configuration workflow
Install OpenEBS
If OpenEBS is not installed in your K8s cluster, this can done from here. If OpenEBS is already installed, go to the next step.
Configure cStor Pool
If cStor Pool is not configured in your OpenEBS cluster, this can be done from here. If cStor pool is already configured, go to the next step. Sample YAML named openebs-config.yaml for configuring cStor Pool is provided in the Configuration details below.
Create Storage Class
You must configure a StorageClass to provision cStor volume on cStor pool. StorageClass is the interface through which most of the OpenEBS storage policies are defined. In this solution we using a StorageClass to consume the cStor Pool which is created using external disks attached on the Nodes. Since Percona-MySQL is a deployment, it requires high availability of data at Storage level. So cStor volume
replicaCountis 3. Sample YAML named openebs-sc-disk.yamlto consume cStor pool with cStor volume replica count as 3 is provided in the configuration details below.Launch and test Percona:
Create a file called
percona-openebs-deployment.yamland add content frompercona-openebs-deployment.yamlgiven in the configuration details section. Runkubectl apply -f percona-openebs-deployment.yamlto deploy Percona application. For more information, see Percona documentation. In other way, you can use stable Percona image with helm to deploy Percona in your cluster using the following command.helm install --name my-release --set persistence.enabled=true,persistence.storageClass=openebs-cstor-disk stable/percona
Reference at openebs.ci
A sample Percona server at https://openebs.ci
Sample YAML for running Percona-mysql using cStor are here
OpenEBS-CI dashboard of Percona
Post deployment Operations
Monitor OpenEBS Volume size
It is not seamless to increase the cStor volume size (refer to the roadmap item). Hence, it is recommended that sufficient size is allocated during the initial configuration.
Monitor cStor Pool size
As in most cases, cStor pool may not be dedicated to just Percona database alone. It is recommended to watch the pool capacity and add more disks to the pool before it hits 80% threshold. See cStorPool metrics.
Maintain volume replica quorum during node upgrades
cStor volume replicas need to be in quorum when applications are deployed as deployment and cStor volume is configured to have 3 replicas. Node reboots may be common during Kubernetes upgrade. Maintain volume replica quorum in such instances. See here for more details.
Configuration details
openebs-config.yaml
#Use the following YAMLs to create a cStor Storage Pool.# and associated storage class.apiVersion: openebs.io/v1alpha1kind: StoragePoolClaimmetadata:name: cstor-diskspec:name: cstor-disktype: diskpoolSpec:poolType: striped# NOTE - Appropriate disks need to be fetched using `kubectl get blockdevices -n openebs`## `Block devices` is a custom resource supported by OpenEBS with `node-disk-manager`# as the disk operator# Replace the following with actual disk CRs from your cluster `kubectl get blockdevices -n openebs`# Uncomment the below lines after updating the actual disk names.blockDevices:blockDeviceList:# Replace the following with actual disk CRs from your cluster from `kubectl get blockdevices -n openebs`# - blockdevice-69cdfd958dcce3025ed1ff02b936d9b4# - blockdevice-891ad1b581591ae6b54a36b5526550a2# - blockdevice-ceaab442d802ca6aae20c36d20859a0b---
openebs-sc-disk.yaml
apiVersion: storage.k8s.io/v1kind: StorageClassmetadata:name: openebs-cstor-diskannotations:openebs.io/cas-type: cstorcas.openebs.io/config: |- name: StoragePoolClaimvalue: "cstor-disk"- name: ReplicaCountvalue: "3"provisioner: openebs.io/provisioner-iscsireclaimPolicy: Delete---
percona-openebs-deployment.yaml
---apiVersion: v1kind: Podmetadata:name: perconalabels:name: perconaspec:securityContext:fsGroup: 999containers:- resources:limits:cpu: 0.5name: perconaimage: perconaargs:- "--ignore-db-dir"- "lost+found"env:- name: MYSQL_ROOT_PASSWORDvalue: k8sDem0ports:- containerPort: 3306name: perconavolumeMounts:- mountPath: /var/lib/mysqlname: demo-vol1volumes:- name: demo-vol1persistentVolumeClaim:claimName: demo-vol1-claim---kind: PersistentVolumeClaimapiVersion: v1metadata:name: demo-vol1-claimspec:storageClassName: openebs-cstor-diskaccessModes:- ReadWriteOnceresources:requests:storage: 30G