Backup and Restore InFluxDB to Filebase with TrilioVault
Learn how to backup and restore an InFluxDB to Filebase using TrilioVault deployed on a Kubernetes cluster.
What is InFluxDB?
InFluxDB is an open source database developed in the Go programming language. It is developed to handle high write and query loads using time series data.
What is TrilioVault?
TrilioVault is a backup and restore service that natively integrates with OpenStack clouds. Trilio a leader in cloud-native data protection for Kubernetes containers, OpenStack clouds and Red Hat Virtualization hypervisors.
What is Kubernetes?
Kubernetes is an open-source container system designed for automating computer application deployment, scaling, and management.
Read below to learn how to backup InFluxDB to Filebase using TrilioVault for Kubernetes.
Note: This guide assumes you already have a Kubernetes cluster deployed with networking enabled.
Kubernetes has a wide range of implementations, deployments, and environment configurations. The examples used in this guide use a basic example Kubernetes cluster that does not include packages or configurations other than the ones displayed in this guide. Filebase is unable to provide troubleshooting or custom configurations for custom Kubernetes environments due to their individualized nature.
Create and Apply Backup Target
The Backup Target specifies the backup storage location. TrilioVault supports S3-compatible object storage such as Filebase. Save the following configuration (with your Filebase access and secret keys) as tv-backup-target.yaml
:
Then, run the following command to apply the backup target configuration:
kubectl create -f tv-backup-target.yaml
Deploy an InfluxDB database
InfluxDB databases can be deployed using Helm charts. In the following example below, a database is deployed using the helm install command with the name filebase-database
from the helm chart bitnami/influxdb.
helm repo add bitnami <https://charts.bitnami.com/bitnami
>
helm repo update
helm install name bitnami/influxdb
Add Test Data To The Database
To add test data to the InfluxDB database, follow the commands below that create a test database, table and records.
Create Hooks
Hooks create the ability to inject commands into Kubernetes pods or containers before or after a backup through pre-backup or post-backup commands.
InfluxDB has native backup and restore abilities. The scope of these backups can range from individual databases to shards and policies.
A backup creates a copy of the metastore and shard data at a specific point in time and stores the copy in the specified directory.
A full backup creates a copy of the metastore and shard data.
An incremental backup creates a copy of whatever metastore and shard data has changed since the last incremental backup.
If there are no existing incremental backups, the system automatically performs a complete backup.
Save the following code as tv-test-hook.yaml
:
Then, use the following command to create the hook:
kubectl create -f tv-test-hook.yaml
Create a Backup Plan
The Backup Plan specifies the backup job, which includes the backup schedule, backup target and the resources to backup.
Save the following configuration as tv-test-backupplan.yaml
:
Then, use the following command to apply the backup plan:
kubectl create -f tv-test-backupplan.yaml
Create Backups
The first backup will always be a full backup, even if the backup plan specifies the backup type as incremental.
Save the following configuration as tvk-test-backup.yaml
:
Then, use the following command to run the backup:
kubectl create -f tv-test-restore.yaml
The Restore
The restore specifies which resources should be restored from the backup. These resources can be restored to the same location or a new one.
Save the following configuration as tvk-test-restore.yaml
:
Then, use the following command to run the restore:
kubectl create -f tv-test-restore.yaml
Last updated