nrvnrvn / k8dis

Redis Operator for Kubernetes
Apache License 2.0
5 stars 0 forks source link

Redis Operator

Build Status Go Report Card GolangCI LICENSE GoDoc Releases

Project status: alpha

The basic features have been completed, and while no breaking API changes are currently planned, the API can change in a backwards incompatible way before the project is declared stable.

Overview

Redis Operator can be considered a Kubernetes-native replacement for Redis Sentinel. It creates the Redis instances and maintains high availability and automatic failover.

Fundamental things to know about Redis Operator:

Getting Started

Deploying the Redis operator

  1. Create all the necessary resources and deploy the operator:

    kubectl apply -k deploy
  2. Verify that the operator is running:

    $ kubectl -n redis-operator get deployment
    NAME             DESIRED   CURRENT   UP-TO-DATE   AVAILABLE   AGE
    redis-operator   1         1         1            1           5m

Deploying Redis

Redis can be deployed by creating a Redis Custom Resource(CR).

  1. Create a Redis CR that deploys a 3 node Redis replication in high availablilty mode:

    kubectl apply -f example/k8s_v1alpha1_redis_cr.yaml
  2. Wait until the redis-example-... pods for the Redis replication are up and check the status of 'redis'. It will show the name for the Pod of the current master instance and the total number of replicas in the setup:

    $ kubectl get redis example
    NAME      MASTER            REPLICAS   DESIRED   AGE
    example   redis-example-0   3          3         5m
  3. Verify that Redis is working as expected:

    $ kubectl exec $(k get redis example -o jsonpath={.status.master}) -c redis redis-cli set lol woot
    OK
    $ kubectl delete pod -l redis=example,role=master
    pod "redis-example-0" deleted
    $ kubectl exec $(k get redis example -o jsonpath={.status.master}) -c redis redis-cli get lol
    woot
  4. Scale the deployment:

    $ kubectl scale redis example --replicas 4
    redis.k8s.amaiz.com/example scaled
    $ kubectl get redis
    NAME      MASTER            REPLICAS   DESIRED   AGE
    example   redis-example-1   4          4         10m
  5. Redis Operator creates the following resources owned by the corresponding Redis CR. Please note that the name of Redis (example in this case) is used as an infix or suffix for the names of the generated resources:

    • Secret redis-example (in case the password is set up)
    • ConfigMap redis-example
    • PodDisruptionBudget redis-example
    • StatefulSet redis-example
    • Services:
      • redis-example - covers all instances
      • redis-example-headless - covers all instances, headless
      • redis-example-master - service for access to the master instance
  6. Finally, to remove this particular example instance of the Redis CR, you can simply delete it, and Redis Operator will take care of cleanup for you.

    $ kubectl get redis
    NAME      MASTER            REPLICAS   DESIRED   AGE
    example   redis-example-1   4          4         10m
    $ kubectl delete redis example
    redis.k8s.amaiz.com "example" deleted

Configuring Redis

All configuration of Redis is done via editing the Redis resourse file. Fully annotated example can be found in the examples directory of the repo.

Uninstalling Redis operator

Delete the operators and CRDs. Kubernetes will garbage collect all operator-managed resources:

kubectl delete namespace redis-operator
kubectl delete crd redis.k8s.amaiz.com

Design and goals

The main goal of the project is to create a Kubernetes native service for managing highly available Redis deployments. Sentinel is great for simple Redis replication but it does not fit into Kubernetes model for a number of reasons:

Another imporatant goal of this project is to resist failures even with persistence turned off. In some scenarios persisting data on disk is not permitted and all the data should reside only in-memory no matter what. And at the same time losing this data is undesirable.

Automatic failover algorithm details

Redis Operator is not a distributed system. Instead it leverages the Kuberenetes API to perform a leader election upon startup. Current implementation of the leader election algorithm precludes the possibility of 2 instances mistakenly running as leaders (split brain).

Redis Operator watches for changes to the Redis resource as well as the resources managed by the operator and owned by Redis, e.g. ConfigMaps, Secrets, Services, PodDisruptionBudgets and StatefulSets. Should anything happen to any of the above the operator will check the state of the Kubernetes resources along with the state of Redis replication and reconfigure them if needed.

All the managed resources are created or updated in the first place. The resources already present are always compared to the resources generated by the operator and updated if they differ.

Once all the resources are in sync the list of Redis instances is compiled from the list of Pods owned by the corresponding StatefulSet. Only Pods with all containers running and ready are taken into account.

Minimum failover size is 2. 2 represents a simple master-replica pair essential for running replication. If the number of instances is less than the minimum failover size no reconfiguration will be performed. With this in mind it is absolutely normal to lose all instances but one at the same time. Even with persistence turned off the data will be preserved and replicated across all Pods that come in place of the terminated ones.

Redis Operator is stateless. It means that the state of replication is determined every time the list of Redis instances is analyzed.

The state of replication is determined based on the INFO REPLICATION output of every instance from the list.

A healthy replication is the state when there is a single master and all other instances are connected to it. In this case the operator will do nothing.

Master is an instance with at least one connected replica. If there is no masters found then there is one of two cases met:

In case the master has been lost the list of candidate instances are sorted according to their replica priority and replication offset. Instances with replica priority equal to 0 are filtered out prior to sorting.

A replica with the lowest priority and/or higher replication offset is promoted to master.

With the master in place all other instances that do not report themselves as the master's replicas are reconfigured appropriately. All replicas in question are reconfigured simultaneously.

Once the reconfiguration has been finished all Pods are labeled appropriately with role=master or role=replica labels. Current master's Pod name and the total quantity of connected instances are written to the status field of the Redis resource. The ConfigMap is updated with the master's IP address.

Plans

Short term