Overview
KubeDB is the Kubernetes Native Database Management Solution which simplifies and automates routine database tasks such as Provisioning, Monitoring, Upgrading, Patching, Scaling, Volume Expansion, Backup, Recovery, Failure detection, and Repair for various popular databases on private and public clouds. The databases that KubeDB supports are Elasticsearch, MySQL, MongoDB, MariaDB, Redis, PostgreSQL, ProxySQL, Percona XtraDB, Memcached and PgBouncer. You can find the guides to all the supported databases here
. KubeDB provides support for the Elasticsearch
by Elastic and OpenSearch
under the Elasticsearch CR of KubeDB. The latest version of KubeDB has support for up to Elasticsearch version 8.5.2
and OpenSearch 2.5.0
. It also supports other distributions of Elasticsearch like SearchGuard
and OpenDistro
.
In this tutorial we will deploy Elasticsearch in Google Kubernetes Engine (GKE). We will cover the following steps:
- Install KubeDB
- Deploy Elasticsearch Topology Cluster
- Install Stash
- Backup Elasticsearch Using Stash
- Recover Elasticsearch Using Stash
Get Cluster ID
We need the cluster ID to get the KubeDB License. To get cluster ID, we can run the following command:
$ kubectl get ns kube-system -o jsonpath='{.metadata.uid}'
6c08dcb8-8440-4388-849f-1f2b590b731e
Get License
Go to Appscode License Server to get the license.txt file. For this tutorial we will use KubeDB Enterprise Edition.
Install KubeDB
We will use helm to install KubeDB. Please install helm
, if it is not already installed.
Now, let’s install KubeDB
.
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm search repo appscode/kubedb
NAME CHART VERSION APP VERSION DESCRIPTION
appscode/kubedb v2023.02.28 v2023.02.28 KubeDB by AppsCode - Production ready databases...
appscode/kubedb-autoscaler v0.17.0 v0.17.0 KubeDB Autoscaler by AppsCode - Autoscale KubeD...
appscode/kubedb-catalog v2023.02.28 v2023.02.28 KubeDB Catalog by AppsCode - Catalog for databa...
appscode/kubedb-community v0.24.2 v0.24.2 KubeDB Community by AppsCode - Community featur...
appscode/kubedb-crds v2023.02.28 v2023.02.28 KubeDB Custom Resource Definitions
appscode/kubedb-dashboard v0.8.0 v0.8.0 KubeDB Dashboard by AppsCode
appscode/kubedb-enterprise v0.11.2 v0.11.2 KubeDB Enterprise by AppsCode - Enterprise feat...
appscode/kubedb-grafana-dashboards v2023.02.28 v2023.02.28 A Helm chart for kubedb-grafana-dashboards by A...
appscode/kubedb-metrics v2023.02.28 v2023.02.28 KubeDB State Metrics
appscode/kubedb-ops-manager v0.19.0 v0.19.2 KubeDB Ops Manager by AppsCode - Enterprise fea...
appscode/kubedb-opscenter v2023.02.28 v2023.02.28 KubeDB Opscenter by AppsCode
appscode/kubedb-provisioner v0.32.0 v0.32.1 KubeDB Provisioner by AppsCode - Community feat...
appscode/kubedb-schema-manager v0.8.0 v0.8.0 KubeDB Schema Manager by AppsCode
appscode/kubedb-ui v2022.06.14 0.3.26 A Helm chart for Kubernetes
appscode/kubedb-ui-server v2021.12.21 v2021.12.21 A Helm chart for kubedb-ui-server by AppsCode
appscode/kubedb-webhook-server v0.8.0 v0.8.0 KubeDB Webhook Server by AppsCode
# Install KubeDB Enterprise operator chart
$ helm install kubedb appscode/kubedb \
--version v2023.02.28 \
--namespace kubedb --create-namespace \
--set kubedb-provisioner.enabled=true \
--set kubedb-ops-manager.enabled=true \
--set kubedb-autoscaler.enabled=true \
--set kubedb-dashboard.enabled=true \
--set kubedb-schema-manager.enabled=true \
--set-file global.license=/path/to/the/license.txt
Let’s verify the installation:
$ kubectl get pods --all-namespaces -l "app.kubernetes.io/instance=kubedb"
NAMESPACE NAME READY STATUS RESTARTS AGE
kubedb kubedb-kubedb-autoscaler-f6694f65d-f5cj8 1/1 Running 0 2m
kubedb kubedb-kubedb-dashboard-57f6d5655-dchmt 1/1 Running 0 2m
kubedb kubedb-kubedb-ops-manager-97ff476c8-f8kqr 1/1 Running 4 2m
kubedb kubedb-kubedb-provisioner-7d5d6999-lxnk7 1/1 Running 0 2m
kubedb kubedb-kubedb-schema-manager-7cc94db887-sdgs4 1/1 Running 0 2m
kubedb kubedb-kubedb-webhook-server-68879df9fc-5ml72 1/1 Running 0 2m
We can list the CRD Groups that have been registered by the operator by running the following command:
$ kubectl get crd -l app.kubernetes.io/name=kubedb
NAME CREATED AT
elasticsearchautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
elasticsearchdashboards.dashboard.kubedb.com 2023-03-13T05:10:20Z
elasticsearches.kubedb.com 2023-03-13T05:10:14Z
elasticsearchopsrequests.ops.kubedb.com 2023-03-13T05:10:25Z
elasticsearchversions.catalog.kubedb.com 2023-03-13T05:07:43Z
etcds.kubedb.com 2023-03-13T05:10:42Z
etcdversions.catalog.kubedb.com 2023-03-13T05:07:44Z
kafkas.kubedb.com 2023-03-13T05:11:03Z
kafkaversions.catalog.kubedb.com 2023-03-13T05:07:44Z
mariadbautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
mariadbdatabases.schema.kubedb.com 2023-03-13T05:10:39Z
mariadbopsrequests.ops.kubedb.com 2023-03-13T05:11:07Z
mariadbs.kubedb.com 2023-03-13T05:10:40Z
mariadbversions.catalog.kubedb.com 2023-03-13T05:07:44Z
memcacheds.kubedb.com 2023-03-13T05:10:45Z
memcachedversions.catalog.kubedb.com 2023-03-13T05:07:44Z
mongodbautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
mongodbdatabases.schema.kubedb.com 2023-03-13T05:10:26Z
mongodbopsrequests.ops.kubedb.com 2023-03-13T05:10:37Z
mongodbs.kubedb.com 2023-03-13T05:10:32Z
mongodbversions.catalog.kubedb.com 2023-03-13T05:07:45Z
mysqlautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
mysqldatabases.schema.kubedb.com 2023-03-13T05:10:20Z
mysqlopsrequests.ops.kubedb.com 2023-03-13T05:11:02Z
mysqls.kubedb.com 2023-03-13T05:10:25Z
mysqlversions.catalog.kubedb.com 2023-03-13T05:07:45Z
perconaxtradbautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
perconaxtradbopsrequests.ops.kubedb.com 2023-03-13T05:11:29Z
perconaxtradbs.kubedb.com 2023-03-13T05:10:58Z
perconaxtradbversions.catalog.kubedb.com 2023-03-13T05:07:45Z
pgbouncers.kubedb.com 2023-03-13T05:10:49Z
pgbouncerversions.catalog.kubedb.com 2023-03-13T05:07:46Z
postgresautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:11Z
postgresdatabases.schema.kubedb.com 2023-03-13T05:10:37Z
postgreses.kubedb.com 2023-03-13T05:10:38Z
postgresopsrequests.ops.kubedb.com 2023-03-13T05:11:22Z
postgresversions.catalog.kubedb.com 2023-03-13T05:07:46Z
proxysqlautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:12Z
proxysqlopsrequests.ops.kubedb.com 2023-03-13T05:11:25Z
proxysqls.kubedb.com 2023-03-13T05:11:01Z
proxysqlversions.catalog.kubedb.com 2023-03-13T05:07:46Z
publishers.postgres.kubedb.com 2023-03-13T05:11:43Z
redisautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:12Z
redises.kubedb.com 2023-03-13T05:11:02Z
redisopsrequests.ops.kubedb.com 2023-03-13T05:11:15Z
redissentinelautoscalers.autoscaling.kubedb.com 2023-03-13T05:10:12Z
redissentinelopsrequests.ops.kubedb.com 2023-03-13T05:11:36Z
redissentinels.kubedb.com 2023-03-13T05:11:03Z
redisversions.catalog.kubedb.com 2023-03-13T05:07:47Z
subscribers.postgres.kubedb.com 2023-03-13T05:11:46Z
Deploy Elasticsearch Topology Cluster
Now, We are going to use the KubeDB-provided Custom Resource object Elasticsearch
for deployment. The object will be deployed in demo namespace. So, let’s create the namespace first.
$ kubectl create namespace demo
namespace/demo created
Here is the yaml of the Elasticsearch we are going to use:
apiVersion: kubedb.com/v1alpha2
kind: Elasticsearch
metadata:
name: es-topology-cluster
namespace: demo
spec:
enableSSL: true
version: xpack-8.5.2
storageType: Durable
topology:
master:
replicas: 2
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 512Mi
data:
replicas: 2
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 512Mi
ingest:
replicas: 2
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 512Mi
Let’s save this yaml configuration into es-topology-cluster.yaml
Then create the above Elasticsearch yaml
$ kubectl create -f es-topology-cluster.yaml
elasticsearch.kubedb.com/es-topology-cluster created
- In this yaml we can see in the
spec.version
field specifies the version of Elasticsearch. Here, we are using Elasticsearch versionxpack-8.5.2
which is used to provisionElasticsearch-8.5.2
with xpack auth plugin. You can list the KubeDB supported versions of Elasticsearch CR with x-pack auth-plugin by running$ kubectl get elasticsearchversions | grep xpack
command. If you want to get other distributions, usegrep
command accordingly. spec.storage
specifies PVC spec that will be dynamically allocated to store data for this database. This storage spec will be passed to the StatefulSet created by KubeDB operator to run database pods. You can specify any StorageClass available in your cluster with appropriate resource requests. You can get all the availablestorageclass
in your cluster by runningkubectl get storageclass
command.spec.enableSSL
- specifies whether the HTTP layer is secured with certificates or not.spec.storageType
- specifies the type of storage that will be used for Elasticsearch database. It can beDurable
orEphemeral
. The default value of this field isDurable
. IfEphemeral
is used then KubeDB will create the Elasticsearch database usingEmptyDir
volume. In this case, you don’t have to specifyspec.storage
field. This is useful for testing purposes.spec.topology
- specifies the node-specific properties for the Elasticsearch cluster.topology.master
- specifies the properties of master nodes.master.replicas
- specifies the number of master nodes.master.storage
- specifies the master node storage information that passed to the StatefulSet.
topology.data
- specifies the properties of data nodes.data.replicas
- specifies the number of data nodes.data.storage
- specifies the data node storage information that passed to the StatefulSet.
topology.ingest
- specifies the properties of ingest nodes.ingest.replicas
- specifies the number of ingest nodes.ingest.storage
- specifies the ingest node storage information that passed to the StatefulSet.
However, KubeDB also provides dedicated node support for other node roles like data_hot
, data_warm
, data_cold
, data_frozen
, transform
, coordinating
, data_content
and ml
for Topology clustering
.
Once these are handled correctly and the Elasticsearch object is deployed, you will see that the following resources are created:
$ kubectl get all -n demo
NAME READY STATUS RESTARTS AGE
pod/es-topology-cluster-data-0 1/1 Running 0 4m
pod/es-topology-cluster-data-1 1/1 Running 0 4m
pod/es-topology-cluster-ingest-0 1/1 Running 0 4m
pod/es-topology-cluster-ingest-1 1/1 Running 0 4m
pod/es-topology-cluster-master-0 1/1 Running 0 4m
pod/es-topology-cluster-master-1 1/1 Running 0 4m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/es-topology-cluster ClusterIP 10.8.11.95 <none> 9200/TCP 4m
service/es-topology-cluster-master ClusterIP None <none> 9300/TCP 4m
service/es-topology-cluster-pods ClusterIP None <none> 9200/TCP 4m
NAME READY AGE
statefulset.apps/es-topology-cluster-data 2/2 4m
statefulset.apps/es-topology-cluster-ingest 2/2 4m
statefulset.apps/es-topology-cluster-master 2/2 4m
NAME TYPE VERSION AGE
appbinding.appcatalog.appscode.com/es-topology-cluster kubedb.com/elasticsearch 8.5.2 4m
NAME VERSION STATUS AGE
elasticsearch.kubedb.com/es-topology-cluster xpack-8.5.2 Ready 4m
Let’s check if the database is ready to use,
$ kubectl get elasticsearch -n demo es-topology-cluster
NAME VERSION STATUS AGE
es-topology-cluster xpack-8.5.2 Ready 4m
We have successfully deployed Elasticsearch in Google Kubernetes Engine (GKE). Now we can exec into the container to use the database.
Insert Sample Data
In this section, we are going to create few indexes in Elasticsearch. On the deployment of Elasticsearch yaml, the operator creates a governing service that is named after the Elasticsearch object name itself. We are going to use this service to port-forward and connect with the database from our local machine. Then, we are going to insert some data into the Elasticsearch.
Port-forward the Service
KubeDB will create few Services to connect with the database. Let’s see the Services created by KubeDB for our Elasticsearch,
$ kubectl get service -n demo -l=app.kubernetes.io/instance=es-topology-cluster
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
es-topology-cluster ClusterIP 10.8.11.95 <none> 9200/TCP 4m
es-topology-cluster-master ClusterIP None <none> 9300/TCP 4m
es-topology-cluster-pods ClusterIP None <none> 9200/TCP 4m
Here, we are going to use the es-topology-cluster
Service to connect with the database. Now, let’s port-forward the es-topology-cluster
Service.
# Port-forward the service to local machine
$ kubectl port-forward -n demo svc/es-topology-cluster 9200
Forwarding from 127.0.0.1:9200 -> 9200
Forwarding from [::1]:9200 -> 9200
Export the Credentials
KubeDB will create some Secrets for the database. Let’s check which Secrets have been created by KubeDB for our es-topology-cluster
.
$ kubectl get secret -n demo -l=app.kubernetes.io/instance=es-topology-cluster
NAME TYPE DATA AGE
es-topology-cluster-apm-system-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-beats-system-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-ca-cert kubernetes.io/tls 2 5m
es-topology-cluster-client-cert kubernetes.io/tls 3 5m
es-topology-cluster-config Opaque 1 5m
es-topology-cluster-elastic-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-http-cert kubernetes.io/tls 3 5m
es-topology-cluster-kibana-system-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-logstash-system-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-remote-monitoring-user-cred kubernetes.io/basic-auth 2 5m
es-topology-cluster-transport-cert kubernetes.io/tls 3 5m
Now, we can connect to the database with any of these secret that have the prefix cred
. Here, we are using es-topology-cluster-elastic-cred
which contains the admin level credentials to connect with the database.
Accessing Database Through CLI
To access the database through CLI, we have to get the credentials to access. Let’s export the credentials as environment variable to our current shell :
$ kubectl get secret -n demo es-topology-cluster-elastic-cred -o jsonpath='{.data.username}' | base64 -d
elastic
$ kubectl get secret -n demo es-topology-cluster-elastic-cred -o jsonpath='{.data.password}' | base64 -d
q)UC;l!!euEnk.ZZ
Then login and insert some data into Elasticsearch, you can use curl
for post some sample data into Elasticsearch. Use the -k
flag to disable attempts to verify self-signed certificates for testing purposes.:
$ curl -XPOST -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/music/_doc?pretty" -H 'Content-Type: application/json' -d'
{
"Artist": "Bon Jovi",
"Song": "Its My Life"
}
'
{
"_index" : "music",
"_id" : "oyO52YYBpvYWEhqZyPph",
"_version" : 1,
"result" : "created",
"_shards" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"_seq_no" : 0,
"_primary_term" : 1
}
Now, let’s verify that the index has been created successfully.
$ curl -XGET -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/_cat/indices?v&s=index&pretty"
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open kubedb-system zeIvl0RAQ6uhhcvW5GoWfg 1 1 1 5 834kb 404.9kb
green open music _dAwOpXMSK2eHmc2Un7MNA 1 1 1 0 10.6kb 5.3kb
Also, let’s verify the data in the indexes:
$ curl -XGET -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/music/_search?pretty"
{
"took" : 11,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "music",
"_id" : "oyO52YYBpvYWEhqZyPph",
"_score" : 1.0,
"_source" : {
"Artist" : "Bon Jovi",
"Song" : "Its My Life"
}
}
]
}
}
We’ve successfully inserted some sample data to our Elasticsearch database. More information about Run & Manage Production-Grade Elasticsearch Database on Kubernetes can be found HERE
Backup Elasticsearch Database Using Stash
Here, we are going to use Stash to backup the Elasticsearch database that we have just deployed.
Install Stash
Kubedb Enterprise License works for Stash too. So, we will use the Enterprise license that we have already obtained.
$ helm install stash appscode/stash \
--version v2023.02.28 \
--namespace stash --create-namespace \
--set features.enterprise=true \
--set-file global.license=/path/to/the/license.txt
Let’s verify the installation:
$ watch kubectl get pods --all-namespaces -l app.kubernetes.io/name=stash-enterprise
NAMESPACE NAME READY STATUS RESTARTS AGE
stash stash-stash-enterprise-7d7c9f69d7-nphwv 2/2 Running 0 2m3s
Now, to confirm CRD groups have been registered by the operator, run the following command:
$ kubectl get crd -l app.kubernetes.io/name=stash
NAME CREATED AT
backupbatches.stash.appscode.com 2023-03-13T06:52:55Z
backupblueprints.stash.appscode.com 2023-03-13T06:52:55Z
backupconfigurations.stash.appscode.com 2023-03-13T06:52:53Z
backupsessions.stash.appscode.com 2023-03-13T06:52:54Z
functions.stash.appscode.com 2023-03-13T06:51:27Z
repositories.stash.appscode.com 2023-03-13T05:10:44Z
restorebatches.stash.appscode.com 2023-03-13T06:52:55Z
restoresessions.stash.appscode.com 2023-03-13T05:10:45Z
tasks.stash.appscode.com 2023-03-13T06:51:28Z
Prepare Backend
Stash supports various backends for storing data snapshots. It can be a cloud storage like GCS bucket, AWS S3, Azure Blob Storage etc. or a Kubernetes persistent volume like HostPath, PersistentVolumeClaim, NFS etc.
For this tutorial we are going to use GCS bucket. You can find other setups here .
At first we need to create a secret so that we can access the GCS bucket. We can do that by the following code:
$ echo -n 'YOURPASSWORD' > RESTIC_PASSWORD
$ echo -n 'YOURPROJECTNAME' > GOOGLE_PROJECT_ID
$ cat /PATH/TO/JSONKEY.json > GOOGLE_SERVICE_ACCOUNT_JSON_KEY
$ kubectl create secret generic -n demo gcs-secret \
--from-file=./RESTIC_PASSWORD \
--from-file=./GOOGLE_PROJECT_ID \
--from-file=./GOOGLE_SERVICE_ACCOUNT_JSON_KEY
secret/gcs-secret created
Create Repository
apiVersion: stash.appscode.com/v1alpha1
kind: Repository
metadata:
name: gcs-repo
namespace: demo
spec:
backend:
gcs:
bucket: stash-testing
prefix: /es-topology-backup
storageSecretName: gcs-secret
This repository CRO specifies the gcs-secret
we created before and stores the name and path to the GCS bucket. It also specifies the location to the container where we want to backup our database.
Here, My bucket name is
stash-testing
. Don’t forget to changespec.backend.gcs.bucket
to your bucket name.
Lets create this repository,
$ kubectl create -f gcs-repo.yaml
repository.stash.appscode.com/gcs-repo created
Create BackupConfiguration
Now, we need to create a BackupConfiguration
file that specifies what to backup, where to backup and when to backup.
apiVersion: stash.appscode.com/v1beta1
kind: BackupConfiguration
metadata:
name: es-topology-backup
namespace: demo
spec:
schedule: "*/5 * * * *"
repository:
name: gcs-repo
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: es-topology-cluster
retentionPolicy:
name: keep-last-5
keepLast: 5
prune: true
Create this BackupConfiguration
by following command,
$ kubectl create -f es-topology-cluster-backup.yaml
backupconfiguration.stash.appscode.com/es-topology-cluster-backup created
BackupConfiguration
creates a cronjob that backs up the specified database (spec.target
) every 5 minutes.spec.repository
contains the repository name that we have created before calledgcs-repo
.spec.target.ref
contains the reference to the appbinding that we want to backup.spec.schedule
specifies that we want to backup the database at 5 minutes interval.spec.retentionPolicy
specifies the policy to follow for cleaning old snapshots.- To learn more about
AppBinding
, click here AppBinding . So, after 5 minutes we can see the following status:
$ kubectl get backupsession -n demo
NAME INVOKER-TYPE INVOKER-NAME PHASE DURATION AGE
es-topology-backup-1678702921 BackupConfiguration es-topology-backup Succeeded 22s 31s
$ kubectl get repository -n demo
NAME INTEGRITY SIZE SNAPSHOT-COUNT LAST-SUCCESSFUL-BACKUP AGE
gcs-repo true 5.501 KiB 2 98s 5m22s
Now if we check our GCS bucket, we can see that the backup has been successful.
If you have reached here, CONGRATULATIONS!! 🎊 🎊 🎊 You have successfully backed up Elasticsearch Database using Stash. If you had any problem during the backup process, you can reach out to us via EMAIL .
Recover Elasticsearch Database Using Stash
Let’s think of a scenario in which the database has been accidentally deleted or there was an error in the database causing it to crash.
Temporarily pause backup
At first, let’s stop taking any further backup of the database so that no backup runs after we delete the sample data. We are going to pause the BackupConfiguration
object. Stash will stop taking any further backup when the BackupConfiguration
is paused.
$ kubectl patch backupconfiguration -n demo es-topology-backup --type="merge" --patch='{"spec": {"paused": true}}'
backupconfiguration.stash.appscode.com/es-topology-backup patched
Verify that the BackupConfiguration
has been paused,
$ kubectl get backupconfiguration -n demo es-topology-backup
NAME TASK SCHEDULE PAUSED PHASE AGE
es-topology-backup */2 * * * * true Ready 6m38s
Notice the PAUSED
column. Value true
for this field means that the BackupConfiguration
has been paused.
Stash will also suspend the respective CronJob.
$ kubectl get cronjob -n demo
NAME SCHEDULE SUSPEND ACTIVE LAST SCHEDULE AGE
stash-trigger--es-topology-backup */2 * * * * True 0 104s 7m6s
At first, let’s simulate an accidental database deletion. Here, we are going to delete the music
index that we have created earlier.
$ curl -XDELETE -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/music?pretty"
{
"acknowledged" : true
}
Now, let’s verify that the indexes have been deleted from the database,
$ curl -XGET -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/_cat/indices?v&s=index&pretty"
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open kubedb-system zeIvl0RAQ6uhhcvW5GoWfg 1 1 1 5 1mb 516.3kb
Create a RestoreSession
Below, is the contents of YAML file of the RestoreSession
object that we are going to create.
apiVersion: stash.appscode.com/v1beta1
kind: RestoreSession
metadata:
name: es-topology-restore
namespace: demo
spec:
repository:
name: gcs-repo
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: es-topology-cluster
rules:
- snapshots: [latest]
Now, let’s create RestoreSession
that will initiate restoring from the cloud.
$ kubectl apply -f es-topology-restore.yaml
restoresession.stash.appscode.com/es-topology-restore created
This RestoreSession
specifies where the data will be restored.
Once this is applied, a RestoreSession
will be created. Once it has succeeded, the database has been successfully recovered as you can see below:
$ kubectl get restoresession -n demo
NAME REPOSITORY PHASE DURATION AGE
es-topology-restore gcs-repo Succeeded 10s 27s
Now, let’s check whether the database has been correctly restored:
$ curl -XGET -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/_cat/indices?v&s=index&pretty"
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open kubedb-system zeIvl0RAQ6uhhcvW5GoWfg 1 1 1 5 1mb 516.3kb
green open music nZ_6Se_gQoOPDYVpYmeVFw 1 1 1 0 10.5kb 5.2kb
Also, let’s verify the data in the indexes:
$ curl -XGET -k --user 'elastic:q)UC;l!!euEnk.ZZ' "https://localhost:9200/music/_search?pretty"
{
"took" : 9,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 1,
"relation" : "eq"
},
"max_score" : 1.0,
"hits" : [
{
"_index" : "music",
"_id" : "oyO52YYBpvYWEhqZyPph",
"_score" : 1.0,
"_source" : {
"Artist" : "Bon Jovi",
"Song" : "Its My Life"
}
}
]
}
}
You can see the database has been restored. The recovery of Elasticsearch has been successful. If you faced any difficulties in the recovery process, you can reach out to us through EMAIL .
We have made a tutorial on Provision Elasticsearch Multi-node Combined cluster and Topology Cluster using KubeDB. You can have a look into the video below:
Support
To speak with us, please leave a message on our website .
To receive product announcements, follow us on Twitter .
To watch tutorials of various Production-Grade Kubernetes Tools Subscribe our YouTube channel.
More about Elasticsearch in Kubernetes
If you have found a bug with KubeDB or want to request for new features, please file an issue .