Storage
In the ArangoDeployment
resource, one can specify the type of storageused by groups of servers using the spec.<group>.storageClassName
setting.
This is an example of a Cluster
deployment that stores its agent & dbserverdata on PersistentVolumes
that use the my-local-ssd
The amount of storage needed is configured using thespec.<group>.resources.requests.storage
setting.
This is an example of a Cluster
deployment that requests volumes of 80GBfor every dbserver, resulting in a total storage capacity of 240GB (with 3 dbservers).
Local storage
For optimal performance, ArangoDB should be configured with locally attachedSSD storage.
The easiest way to accomplish this is to deploy an.The ArangoDB Storage Operator will use it to provide PersistentVolumes
for you.
Note that using local storage required VolumeScheduling
to be enabled in yourKubernetes cluster. ON Kubernetes 1.10 this is enabled by default, on version1.9 you have to enable it with a —feature-gate
setting.
The alternative is to create PersistentVolumes
manually, for all servers thatneed persistent storage (single, agents & dbservers).E.g. for a Cluster
with 3 agents and 5 dbservers, you must create 8 volumes.
Note that each volume must have a capacity that is equal to or higher than thecapacity needed for each server.
For Kubernetes 1.9 and up, you should create a which is configuredto bind volumes on their first use as shown in the example below.This ensures that the Kubernetes scheduler takes all constraints on a Pod
that into consideration before binding the volume to a claim.