You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
New to KubeDB? Please start here.
Redis Horizontal Scaling
This guide will give an overview on how KubeDB Enterprise operator scales up or down of Redis
cluster database for both the number of replicas and masters.
Before You Begin
- You should be familiar with the following
KubeDB
concepts:
How Horizontal Scaling Process Works
The following diagram shows how KubeDB Enterprise operator scales up or down Redis
database components. Open the image in a new tab to see the enlarged version.
The Horizontal scaling process consists of the following steps:
At first, a user creates a
Redis
Custom Resource (CR).KubeDB
Community operator watches theRedis
CR.When the operator finds a
Redis
CR, it creates required number ofStatefulSets
and related necessary stuff like secrets, services, appbindings, etc.Then, in order to scale the number of replica or master for the
Redis
cluster database the user creates aRedisOpsRequest
CR with desired information.KubeDB
Enterprise operator watches theRedisOpsRequest
CR.When it finds a
RedisOpsRequest
CR, it patches theRedis
object which is referred from theRedisOpsRequest
. After that, theKubeDB
Community operator tries to reconcile the state of theRedis
object during the horizontal scaling process.KubeDB
Enterprise operator will watch theRedis
object, continuously checking if theRedis
cluster has been configured as described in theRedisOpsRequest
.After the
Redis
cluster is configured as desired,KubeDB Enterprise
operator will declare the OpsRequest as successful.
In the next docs, we are going to show a step by step guide on horizontal scaling of Redis database using RedisOpsRequest
CRD.