Use HDD Storage with Data in Memory for Aerospike on Kubernetes
Overview
This example lets you store namespace data both in memory and on the persistent device. For more information on setting up HDD storage with data-in-memory and other storage configurations, see the Aerospike documentation for namespace storage configuration.
Configure HDD storage
-
Add the following storage-specific configuration to the Aerospike cluster’s CR file.
storage:filesystemVolumePolicy:cascadeDelete: falseinitMethod: deleteFilesvolumes:- name: workdiraerospike:path: /opt/aerospikesource:persistentVolume:storageClass: ssdvolumeMode: Filesystemsize: 1Gi- name: nsaerospike:path: /opt/aerospike/datasource:persistentVolume:storageClass: ssdvolumeMode: Filesystemsize: 3Gi- name: aerospike-config-secretsource:secret:secretName: aerospike-secretaerospike:path: /etc/aerospike/secret...aerospikeConfig:service:feature-key-file: /etc/aerospike/secret/features.confsecurity: {}namespace:- name: testreplication-factor: 2storage-engine:type: memoryfile:- /opt/aerospike/data/test.datfilesize: 2000000000For the full CR file, see the example HDD storage with data-in-memory 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