Use Data on SSD With Aerospike on Kubernetes
Overview
The following storage configuration sets up the Aerospike cluster to store namespace data on a provisioned SSD storage device.
For more information on storing namespace data on SSD and other storage configurations, see the Aerospike documentation for namespace storage configuration.
Configure SSD storage
-
Add the following storage-specific configuration to the Aerospike cluster’s custom resource (CR) file.
storage:filesystemVolumePolicy:initMethod: deleteFilescascadeDelete: trueblockVolumePolicy:cascadeDelete: truevolumes:- name: workdiraerospike:path: /opt/aerospikesource:persistentVolume:storageClass: ssdvolumeMode: Filesystemsize: 1Gi- name: nsaerospike:path: /test/dev/xvdfsource: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:- /test/dev/xvdfFor the full CR file, see the example SSD storage cluster CR.
This and other example CRs are 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