Add a Shadow Device to Aerospike on Kubernetes
Overview
You can configure the namespace storage engine in cloud environments to use extremely high-performance cloud-instance-attached local SSDs. Under this setup, writes are duplicated to another network-attached shadow device for persistence in case the cloud instance terminates.
Set up a shadow device
-
Follow the instructions in our storage provisioning guide to create a local volume provisioner and appropriate storage class.
For more information on using a shadow device and other storage configurations, see Namespace Storage Configuration.
-
Add the following storage-specific configuration to the Aerospike cluster’s custom resource (CR) file.
storage:filesystemVolumePolicy:cascadeDelete: trueinitMethod: deleteFilesblockVolumePolicy:cascadeDelete: truevolumes:- name: workdiraerospike:path: /opt/aerospikesource:persistentVolume:storageClass: ssdvolumeMode: Filesystemsize: 1Gi- name: nsvol1aerospike:path: /dev/nvme0n1source:persistentVolume:storageClass: local-ssdvolumeMode: Blocksize: 5Gi- name: nsvol2aerospike:path: /dev/sdfsource:persistentVolume:storageClass: ssdvolumeMode: Blocksize: 5Gi- name: aerospike-config-secretsource:secret:secretName: aerospike-secretaerospike:path: /etc/aerospike/secret...aerospikeConfig:service:feature-key-file: /etc/aerospike/secret/features.confsecurity: {}namespaces:- name: testreplication-factor: 2storage-engine:type: devicedevices:- /dev/nvme0n1 /dev/sdfFor the full CR file, see the example shadow device cluster CR.
This and other example CRs are available in the main Aerospike Kubernetes Operator repository.
-
Save and exit the CR file, then use
kubectl
to apply the change.Terminal window kubectl apply -f aerospike-cluster.yaml