New to KubeDB? Please start here.
PgBouncer Compute Resource Autoscaling
This guide will give an overview on how KubeDB Autoscaler operator autoscales the database compute resources i.e. cpu and memory using pgbouncerautoscaler
crd.
Before You Begin
- You should be familiar with the following
KubeDB
concepts:
How Compute Autoscaling Works
The following diagram shows how KubeDB Autoscaler operator autoscales the resources of PgBouncer
. Open the image in a new tab to see the enlarged version.
The Auto Scaling process consists of the following steps:
At first, a user creates a
PgBouncer
Custom Resource Object (CRO).KubeDB
Provisioner operator watches thePgBouncer
CRO.When the operator finds a
PgBouncer
CRO, it createsPetSet
and related necessary stuff like secrets, services, etc.Then, in order to set up autoscaling of
PgBouncer
, the user creates aPgBouncerAutoscaler
CRO with desired configuration.KubeDB
Autoscaler operator watches thePgBouncerAutoscaler
CRO.KubeDB
Autoscaler operator generates recommendation using the modified version of kubernetes official recommender for different components of the database, as specified in thePgBouncerAutoscaler
CRO.If the generated recommendation doesn’t match the current resources of the database, then
KubeDB
Autoscaler operator creates aPgBouncerOpsRequest
CRO to scale the pgbouncer to match the recommendation generated.KubeDB
Ops-manager operator watches thePgBouncerOpsRequest
CRO.Then the
KubeDB
Ops-manager operator will scale the pgbouncer vertically as specified on thePgBouncerOpsRequest
CRO.
In the next docs, we are going to show a step-by-step guide on Autoscaling of PgBouncer using PgBouncerAutoscaler
CRD.