In this blog, I will talk about chaos engineering on Cassandra with Litmus. Before jumping in, let's do a quick recap on Litmus. Litmus is a framework for practicing Chaos Engineering in cloud-native environments. Litmus provides a chaos-operator, a large set of chaos experiments in its hub, detailed documentation, quick Demo, and a friendly community.
What Is Cassandra?
Apache Cassandra is a free and open-source, distributed, wide column store, NoSQL database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. Cassandra offers robust support for clusters spanning multiple datacenters with asynchronous masterless replication allowing low latency operations for all clients. Cassandra's support for replicating across multiple datacenters is best-in-class, providing lower latency for your users and the peace of mind of knowing that you can survive regional outages.
Cassandra is using Consistent Hashing, which is a distributed hashing scheme that operates independently of the number of servers or objects in a distributed hash table by assigning them a position on an abstract circle, or hash ring. This allows servers and objects to scale without affecting the overall system. Cassandra uniformly distributes the load over the Cassandra ring and re-distribute the load when the Cassandra Statefulset scales up/down.
With Kubernetes popularity skyrocketing and the adoption of Apache Cassandra growing as a NoSQL database well-suited to matching the high availability and scalability needs of cloud-based applications, it should be no surprise that more developers are looking to run Cassandra databases on Kubernetes. However, many devs are finding that doing so is relatively simple to get going with, but considerably more challenging to execute at a high level. We will discuss the installation part later in this blog.
On the positive side, Kubernetes helpfully offers StatefulSets — workload API objects that can be used to manage stateful applications. StatefulSets provide the requisite components to establish stable and unique network identifiers, stable persistent storage, smooth and ordering deployment and scaling (as well as deletion and termination), and automated rolling updates.
Why do we need chaos engineering on Cassandra?
As Cassandra is using consistent hashing and maintaining the Cassandra ring to distribute the load uniformly. If the number of replicas will scale up/down, the load will be redistributed. But we always have a few questions in our mind:
Does load redistribution always happen with 0 probability of failure in scale-up/down?
How will it behave if the one/multiple replicas of the Cassandra Statefulset are killed?
Is it resilient even if the rate of replica deletion is very high?
In the age of data evolution, data is very important and everyone is looking for a setup where the probability of downtime is least as possible. Here the chaos engineering comes into play. It will help you to find out all the corner cases of failure before they actually happen and if you really believe in "Prevention is better than cure" then the best real-life example award goes to chaos engineering. It can be used to test the resiliency of the Cassandra stateful set. As of now, we have a Cassandra-pod-delete experiment to test the case where one of the replicas of Cassandra Statefulset is deleted. More use-cases/experiments will be added soon.
Chaos On Cassandra: Pod-Delete Experiment
Now that we know the basics of a Cassandra statefulset on Kubernetes, let us execute a chaos experiment to kill one of the replicas of Cassandra while the load is distributed on all the replicas over the Cassandra ring & verify whether the load is redistributed. This example intends to introduce the user to the steps involved in carrying out a chaos experiment using Litmus.
Pre-Requisites
A (preferably) multi-node Kubernetes cluster. Ensure you are in the Kubernetes-admin context to setup RBAC for the various components involved.
Chaos Experiment Approach
The following steps are performed automatically upon execution of the Chaos Experiment:
An external liveness pod will be created, which will ensure the liveness of Cassandra statefulset during chaos execution. It is continuously running the liveness cycles of cqlsh commands. Liveness cycle stands for a set of cqlsh operations (create keyspace, create the table, insert data in the table, delete the tables, delete the keyspaces). It is running a webserver container as a side cart, which is exposing the status of the liveness cycle (cycleInProgress or cycleCompleted). The experiment looks for the status of the webserver service and cleans up the liveness deployment at the end of the cycle. In case of a timeout, the liveness container terminates ungracefully with an exception.
It will ensure that the load is distributed across all the replicas on the Cassandra ring before and after the chaos injection. It ensures that the load is re-distributed across all available replicas after every kill. In case if the load is not distributed on any of the available replicas, this check will be failed.
In its default mode, the experiment derives the random single/multiple replicas of Cassandra statefulset, performs a pod kill (delete), and checks the liveness and load distribution on the Cassandra ring across all replicas, which implies that the Cassandra statefulset remains alive and load redistribution takes place after every kill. If this is true, the experiment verdict is set to “pass,” indicating the current statefulset is tolerant to pod-failures. A terminated statefulset sets the verdict to “fail” and implies that the statefulset is not resilient enough, demanding a closer inspection.
Hypothesis
Upon killing the replica of Cassandra statefulset, the load will be re-distributed over the Cassandra ring.
After the deletion of the replica, the new replica will be created by the replica controller to maintain the desired count of the available replicas.
Preparing the Testbed
Setup the Cassandra Cluster
We are going to discuss two approaches to set up the Cassandra cluster quickly.
This approach will guide you to set up a Cassandra cluster in AWS EKS with OpenEBS as a storage orchestration tool.
Follow the following tutorial to setup the cluster Setup Cassandra Cluster on EKS.
This approach will guide you to set up the Cassandra cluster in Minikube. We can follow the underlying steps to set up the Cassandra cluster.
Step-1: Creating a headless Service for Cassandra
Creating the headless service for Cassandra which is used for DNS lookups between Cassandra Pods and clients within your cluster:
root@demo:~# kubectl create -f cassandra-service.yaml -n cassandraservice/cassandra created
Validation of Cassandra service:root@demo:~# kubectl get svc cassandra -n cassandraThe response is:NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGEcassandra ClusterIP None <none> 9042/TCP 45s
If you don't see a Service named Cassandra, that means creation failed.
Step-2: Using a StatefulSet to create a Cassandra ring
The StatefulSet manifest included below, creates a Cassandra ring that consists of three Pods.
Note: This example uses the default provisioner for Minikube. Please update the following StatefulSet for the cloud you are working with.
root@demo:~# cat <<EOF > cassandra-sts.yamlapiVersion:apps/v1kind:StatefulSetmetadata:name:cassandralabels:app:cassandraspec:serviceName:cassandrareplicas:3selector:matchLabels:app:cassandratemplate:metadata:labels:app:cassandraspec:terminationGracePeriodSeconds:1800containers:-name:cassandraimage:gcr.io/google-samples/cassandra:v13imagePullPolicy:Alwaysports:-containerPort:7000name:intra-node-containerPort:7001name:tls-intra-node-containerPort:7199name:jmx-containerPort:9042name:cqlresources:limits:cpu:"500m"memory:1Girequests:cpu:"500m"memory:1GisecurityContext:capabilities:add:-IPC_LOCKlifecycle:preStop:exec:command:-/bin/sh--c-nodetool drainenv:-name:MAX_HEAP_SIZEvalue:512M-name:HEAP_NEWSIZEvalue:100M-name:CASSANDRA_SEEDSvalue:"cassandra-0.cassandra.cassandra.svc.cluster.local"-name:CASSANDRA_CLUSTER_NAMEvalue:"K8Demo"-name:CASSANDRA_DCvalue:"DC1-K8Demo"-name:CASSANDRA_RACKvalue:"Rack1-K8Demo"-name:POD_IPvalueFrom:fieldRef:fieldPath:status.podIPreadinessProbe:exec:command:-/bin/bash--c-/ready-probe.shinitialDelaySeconds:15timeoutSeconds:5# These volume mounts are persistent. They are like inline claims,# but not exactly because the names need to match exactly one of# the stateful pod volumes.volumeMounts:-name:cassandra-datamountPath:/cassandra_data# These are converted to volume claims by the controller# and mounted at the paths mentioned above.# do not use these in production until ssd GCEPersistentDisk or other ssd pdvolumeClaimTemplates:-metadata:name:cassandra-dataspec:accessModes:["ReadWriteOnce"]storageClassName:fastresources:requests:storage:1Gi---kind:StorageClassapiVersion:storage.k8s.io/v1metadata:name:fastprovisioner:k8s.io/minikube-hostpathparameters:type:pd-ssdEOF
root@demo:~# kubectl create -f cassandra-sts.yaml -n cassandrastatefulset.apps/cassandra createdstorageclass.storage.k8s.io/fast created
Validating the Cassandra StatefulSetroot@demo:~# kubectl get statefulset cassandra -n cassandraThe response should be similar to:NAME DESIRED CURRENT AGEcassandra 3 0 13s
root@demo:~# kubectl get pods -l="app=cassandra" -n cassandraIt can take several minutes for all three Pods to deploy. Once they are deployed, the same command returns output similar to:NAME READY STATUS RESTARTS AGEcassandra-0 1/1 Running 0 10mcassandra-1 1/1 Running 0 9mcassandra-2 1/1 Running 0 8m
Step-3: Run the Cassandra nodetool inside the first Pod, to display the status of the ring.
Step-1: Construct the ChaosEngine for the Cassandra Pod Delete experiment:
root@demo:~# cat <<EOF > cassandra-chaos.yamlapiVersion:litmuschaos.io/v1alpha1kind:ChaosEnginemetadata:name:cassandra-chaosnamespace:defaultspec:appinfo:appns:'default'applabel:'app=cassandra'appkind:'statefulset'# It can be active/stopengineState:'active'#ex. values: ns1:name=percona,ns2:run=nginxauxiliaryAppInfo:''chaosServiceAccount:cassandra-pod-delete-saexperiments:-name:cassandra-pod-deletespec:components:env:# set chaos duration (in sec) as desired-name:TOTAL_CHAOS_DURATIONvalue:'15'# set chaos interval (in sec) as desired-name:CHAOS_INTERVALvalue:'15'# pod failures without '--force' & default terminationGracePeriodSeconds-name:FORCEvalue:'false'# provide cassandra service name# default service: cassandra-name:CASSANDRA_SVC_NAMEvalue:'cassandra'# provide the keyspace replication factor-name:KEYSPACE_REPLICATION_FACTORvalue:'3'# provide cassandra port # default port: 9042-name:CASSANDRA_PORTvalue:'9042'# SET THE CASSANDRA_LIVENESS_CHECK# IT CAN BE `enable` OR `disable`-name:CASSANDRA_LIVENESS_CHECKvalue:''## percentage of total pods to target-name:PODS_AFFECTED_PERCvalue:''EOF
Step-2: Apply the ChaosEngine to launch the experiment
root@demo:~# kubectl apply -f cassandra-chaos.yaml -n litmuschaosengine.litmuschaos.io/cassandra-chaos created
Step-3: Observe experiment execution
Watch the pods on the app namespace (cassandra) to view the chaos actions in progress.
watch -n 1 kubectl get pods -n cassandra
Look out for the following events.
The experiment job, as part of the experiment execution,
launches a liveness pod (cassandra-liveness) that runs few cqlsh queries (create keyspaces, create tables, data insertion, and cleanup of table & keyspaces) running
as separate containers of the same pod.
The liveness pod is failed if it is unable to run cqlsh commands(Cassandra is unavailable). View
the cassandra-liveness pod logs during the pod-delete to verify the Uninterrupted availability of Cassandra statefulset.
kubectl logs -f cassandra-liveness -n litmus
Step-4: Verify Result Of the Chaos Experiment
View the verdict (spec.experimentStatus.verdict)of the cassandra-pod-delete chaos experiment to check whether the Cassandra cluster is resilient to the pod-delete.
The Cassandra chaos experiments are a good way to determine a potential breach of SLAs in terms of data consistency, performance & timeouts due to unexpected replica-kill. It will boost the confidence of the developers for those use-cases for which their setup returns a positive/passed result. In the future even if that chaos happens naturally(finger crossed) then the developers don’t have to worry. They are already trained with chaos management skills as they are chaos engineers/warriors after the adoption of chaos engineering practices.
Do try this experiment & let me know your findings!
Are you an SRE or a Kubernetes enthusiast? Does Chaos Engineering excite you? Join Our Community #litmus channel in Kubernetes Slack
Contribute to LitmusChaos and share your feedback on Github
If you like LitmusChaos, become one of the many stargazers here
Litmus helps SREs and developers practice chaos engineering in a Cloud-native way. Chaos experiments are published at the ChaosHub (https://hub.litmuschaos.io). Community notes is at https://hackmd.io/a4Zu_sH4TZGeih-xCimi3Q
LitmusChaos is an open source Chaos Engineering platform that enables teams to identify weaknesses & potential outages in infrastructures by
inducing chaos tests in a controlled way. Developers & SREs can practice Chaos Engineering with LitmusChaos as it is easy to use, based on modern
Chaos Engineering principles & community collaborated. It is 100% open source & a CNCF project.
LitmusChaos takes a cloud-native approach to create, manage and monitor chaos. The platform itself runs as a set of microservices and uses Kubernetes
custom resources (CRs) to define the chaos intent, as well as the steady state hypothesis.
At a high-level, Litmus comprises of:
Chaos Control Plane: A centralized chaos management tool called chaos-center, which helps construct, schedule and visualize Litmus chaos workflows