ABS configuration file examples
For the complete documentation index see: llms.txt
All documentation pages available in markdown.
This page explains the sections of an example Aerospike Backup Service (ABS) configuration file, illustrating the basic requirements for a backup configuration.
Aerospike publishes a JSON schema for this configuration file that enables autocomplete and validation in the VSCode and IntelliJ editors.
View full configuration file
# yaml-language-server: $schema=https://raw.githubusercontent.com/aerospike/aerospike-backup-service/refs/tags/v3.5.0/docs/config.schema.jsonaerospike-clusters: abs-cluster: # <--- Custom user-defined cluster name seed-nodes: - host-name: localhost port: 3000 credentials: user: tester password: secrets:asbackup:psw # Password will be fetched from the secret agent secret-agent-name: secret-agent # <--- Refers to the secret agent name under secret-agents
secret-agents: secret-agent: # <--- Custom user-defined secret agent name address: localhost port: 5000 connection-type: tcp
storage: s3: # <--- Custom user-defined storage name s3-storage: # Storage type; can be one of "local-storage", "s3-storage", "azure-storage", "gcp-storage" path: backups bucket: as-backup-bucket s3-region: eu-central-1 min-part-size: 50_000_000 # Upload chunk size in bytes (May affect performance)
backup-policies: dailyBackupPolicy: # <--- Custom user-defined policy name parallel: 8 # Parallelism level (May affect performance) parallel-write: 8 # Write parallelism level (May affect performance) file-limit: 1000 # Max backup file size in MB (May affect performance) compression: # Backup files will be compressed before uploading (May affect performance) mode: ZSTD level: 3 retention: full: 10 # Retain 10 full backups incremental: 5 # Retain incremental backups for the 5 latest full backups
backup-routines: dailyLocalBackupRoutine: # <--- Custom routine name interval-cron: "@daily" # Full backup will be triggered daily at midnight incr-interval-cron: "0 */2 * * * *" # Incremental backups every 2 hours source-cluster: abs-cluster # <--- Refers to the cluster name under aerospike-clusters storage: s3 # <--- Refers to the storage name under storage backup-policy: dailyBackupPolicy # <--- Refers to the policy name under backup-policies namespaces: ["test"] # <--- Required field; use [] to back up the whole clusterConfiguration file components
aerospike-clusters
This example configuration connects to the Aerospike Database cluster named abs-cluster.
The seed-nodes parameter defines the host and port for the Aerospike cluster on the network.
The credentials parameter passes a plaintext username and a reference to a password stored in the Secret Agent.
You can also use a plaintext username and password without the Secret Agent reference for testing purposes. If a credential value starts with secrets:, ABS interprets it as a Secret Agent path.
max-parallel-scans
max-parallel-scans sets a per-cluster limit on the number of concurrent scans across all routines.
aerospike-clusters: abs-cluster: max-parallel-scans: 4prefer-racks
Set prefer-racks on a cluster for routines that do not set rack-list, node-list, or partition-list.
prefer-racks only affects which replica is read for each partition. ABS prefers nodes in prefer-racks[0] first, then prefer-racks[1], and so on, but reads from other racks when a replica is not available on a preferred rack.
Each backup is complete and independently restorable. This setting is mutually exclusive with rack-list, node-list, and partition-list on any routine that uses this cluster.
Use prefer-racks on a single ABS deployment when you want a full backup that prefers local rack reads and reduces cross-datacenter traffic. For parallel backup sliced by rack, use rack-list on separate routines. See Rack-aware backup: prefer-racks vs rack-list.
aerospike-clusters: abs-cluster: # <--- Custom user-defined cluster name seed-nodes: - host-name: localhost port: 3000 credentials: user: tester password: secrets:abs:psw # Password will be fetched from the Secret Agent secret-agent-name: secret-agent # <--- Refers to the Secret Agent name under secret-agents prefer-racks: [100, 101]secret-agents
The secret-agents section defines one or more connections to the Aerospike Secret Agent.
secret-agents: secret-agent: # <--- Custom user-defined secret agent name address: localhost port: 5000 connection-type: tcpTo configure TLS, use ca-file alone for server verification, or add cert-file, key-file, and name together for mutual TLS authentication:
secret-agents: secure-agent: address: secret-agent.example.com port: 3005 connection-type: tcp ca-file: /etc/ssl/certs/ca.pem # CA certificate to verify the server cert-file: /etc/ssl/certs/client-cert.pem # Client certificate for mutual TLS key-file: /etc/ssl/private/client-key.pem # Client private key for mutual TLS name: secret-agent.example.com # Required for mutual TLS (SNI)storage
The storage section sets up four different storage destinations: local, S3, Azure, and GCP.
Each one has a separate label, here storage1, storage2, and so on.
You can set up as many or as few destinations as you want in your own configuration.
Note the specific authentication requirements for the different cloud storage providers.
storage: s3: # <--- Custom user-defined storage name s3-storage: # Storage type; can be one of "local-storage", "s3-storage", "azure-storage", "gcp-storage" path: backups bucket: as-backup-bucket s3-region: eu-central-1 min-part-size: 50_000_000 # Upload chunk size in bytes (May affect performance)Additional storage examples:
storage: # Example 1: Local Storage storage1: local-storage: path: /local/backups
# Example 2: S3 Storage storage2: s3-storage: bucket: my-backup-bucket path: backups s3-profile: default s3-region: eu-central-1
# Example 3: Azure Storage storage3: azure-storage: account-name: my-storage-account account-key: my-secret-key container-name: my-container endpoint: 'https://my-storage-account.blob.core.windows.net' path: backups
# Example 4: GCP Storage storage4: gcp-storage: bucket-name: my-gcp-bucket key-file: /path/to/service-account-key.json endpoint: 'https://storage.googleapis.com' path: backupsbackup-policies
A backup policy is a set of parameters that define how to perform a backup. You can create many different policies, then schedule each to run at different times or under different circumstances.
This example section defines a policy called dailyBackupPolicy, which is later scheduled to run daily in the backup-routines stanza.
With parallel, it specifies the number of parallel reader threads that read Aerospike partitions.
You can also specify the size of each backup file with file-limit in MB, as well as a compression algorithm and compression level with compression.
In the retention section, this example specifies that the previous 10 full backups are retained in storage, in addition to any incremental backups made during the last 5 full backups.
ABS 3.4 introduces two additional optional scan controls: max-concurrent-nodes limits how many nodes ABS scans at
once, and use-scan-compression enables server-side scan compression (Aerospike Database Enterprise Edition only).
Omit these fields to preserve the existing behavior of scanning every node in parallel without compression.
backup-policies: dailyBackupPolicy: # <--- Custom user-defined policy name parallel: 8 # Parallelism level (May affect performance) parallel-write: 8 # Write parallelism level (May affect performance) file-limit: 1000 # Max backup file size in MB (May affect performance) compression: # Backup files will be compressed before uploading (May affect performance) mode: ZSTD level: 3 retention: full: 10 # Retain 10 full backups incremental: 5 # Retain incremental backups for the 5 latest full backupsbackup-routines
The backup-routines section schedules one or more routines to run from specified sources at specified intervals.
In this example, the routine dailyLocalBackupRoutine backs up the test namespace from source cluster abs-cluster to the storage destination s3, following the rules defined in dailyBackupPolicy.
This routine performs full and incremental backups based on cron intervals.
It performs an incremental backup every two hours and a full backup each day at midnight (UTC+0).
backup-routines: dailyLocalBackupRoutine: # <--- Custom routine name interval-cron: "@daily" # Full backup will be triggered daily at midnight incr-interval-cron: "0 */2 * * * *" # Incremental backups every 2 hours source-cluster: abs-cluster # <--- Refers to the cluster name under aerospike-clusters storage: s3 # <--- Refers to the storage name under storage backup-policy: dailyBackupPolicy # <--- Refers to the policy name under backup-policies namespaces: ["test"] # <--- Required field; use [] to back up the whole clusternode-list
Set node-list on a routine to back up partitions whose master is on one of the listed nodes when the job starts.
Each node can be an IP address, hostname, or node ID with port. See node-list in the configuration reference.
Each routine with node-list is potentially partial: assign non-overlapping node slices across parallel ABS instances so together they cover every partition you intend to back up. See Parallel backups.
node-list is mutually exclusive with partition-list, rack-list, and the cluster’s prefer-racks setting.
If partition ownership changes during a long backup, scans can read from the current master outside the listed node, and partitions whose masters migrate onto a listed node after the job starts are not included in that routine’s backup. See the topology note under rack-list.
rack-list
Set rack-list on a routine to back up partitions whose master is on a node in one of the listed racks when the job starts. Rack IDs are integers, such as rack-list: [1] or rack-list: [1, 2].
A single routine can list multiple rack IDs. ABS backs up the union of primary partitions whose masters are on nodes in any listed rack. For parallel deployment, assign one rack ID per routine so non-overlapping slices together cover the namespace.
Each routine with rack-list is potentially partial. In a cluster with N racks and evenly distributed masters, one routine per rack often backs up about 1/N of the namespace. In namespaces with active rack enabled, all masters sit on the active rack; routines that target other racks may back up few or no partitions. Parallel backup by rack assumes masters are spread across racks. With active rack, use a single full backup with prefer-racks, or slice by node-list or partition-list instead.
Run one routine per rack (on separate ABS instances or schedules) and restore all slices to recover the full data set. See Parallel backups.
rack-list is mutually exclusive with node-list, partition-list, and the cluster’s prefer-racks setting.
:::caution Topology changes during backup When the job starts, ABS resolves primary (master) partitions for nodes in the listed racks and scans that fixed partition set. If partition ownership changes during a long backup, scans can read from the current master for a selected partition, which may be on a different rack than when the job started. Plan capacity and cross-zone traffic accordingly. If a partition’s master migrates onto a listed rack after the job starts, that partition was not in the initial slice and is not included in that routine’s backup. Verify behavior for your cluster layout with ABS engineering if migrations run during backups. :::
backup-routines: rack1Backup: interval-cron: "@daily" source-cluster: abs-cluster storage: s3 backup-policy: dailyBackupPolicy namespaces: ["test"] rack-list: [1] rack2Backup: interval-cron: "@daily" source-cluster: abs-cluster storage: s3 backup-policy: dailyBackupPolicy namespaces: ["test"] rack-list: [2]Rack-aware backup: prefer-racks vs rack-list
In a rack-aware namespace, each partition has one master copy on a single node. Other nodes may hold replica copies of the same partition. ABS uses your settings to decide which copy to read:
prefer-racks: Back up every partition in the namespace. For each partition, read from a replica on a preferred rack when one exists; otherwise read from another rack.rack-listornode-list: Back up partitions whose master is on the listed racks or nodes when the job starts. Each routine covers a slice of the namespace; restore all slices for a full data set.
See Rack awareness for more information on masters, replicas, and racks.
| Goal | Use | Do not use |
|---|---|---|
| Full backup with preferred local rack reads | prefer-racks on the cluster (single routine) | prefer-racks on N parallel ABS instances |
| Parallel backup sliced by rack | rack-list per routine (N routines) | prefer-racks per ABS instance |
| Parallel backup sliced by host | node-list | — |
For CLI equivalents, see absctl backup (--prefer-racks vs --rack-list).
GitHub repository example files
This section explains the two sample configuration files included in the ABS GitHub repository.
Default Docker Compose ABS Configuration:
The following sample backup service configuration supplied with the Docker Compose stack for ABS consists of four sections:
aerospike-clustersdefines the location and access credentials for ABS to communicate with Aerospike Database, calling that clusterabsCluster1. Since this is a Docker Compose stack, it uses the Aerospike Database Docker container name"aerospike-cluster"as the hostname instead of an IP address.storagedefines the location of the storage for database backups. Here, it creates a storage type calledminioStoragethat uses thes3-endpoint-overrideparameter to send backed up data to MinIO instead of Amazon S3. You can define multiple storage types that can later be used in multiple backup policies.- In
backup-policies, a new policy calleddefaultPolicyis defined with simple instructions to run in a single thread and keep all previous backups. A policy is a set of instructions defining how to do a specific type of backup. You can define multiple policies that can be used in various backup routines. backup-routinesspecifies a routine calledminioRoutinethat runs thedefaultPolicypolicy daily for full backups and hourly for incremental backups. Routines specify the source cluster to back up data from, a storage type as defined under thestoragesection, and a namespace from the source cluster to back up. You can define multiple routines that can be run according to different schedules or on demand.
aerospike-clusters: absCluster1: seed-nodes: - host-name: "aerospike-cluster" port: 3000 credentials: user: admin password: admin
storage: s3-storage: bucket: my-backup-bucket path: backups s3-profile: default s3-region: eu-central-1 s3-endpoint-override: http://minio:9000
backup-policies: defaultPolicy: # Run backup operations in a single thread. parallel: 1
backup-routines: minioRoutine: # 24 hours interval for full backups. interval-cron: "@daily" # 1 hour interval for incremental backups. incr-interval-cron: "@hourly" source-cluster: absCluster1 storage: minioStorage namespaces: ["test"] backup-policy: defaultPolicyDefault Linux ABS Configuration:
The default configuration file supplied with Linux distributions is smaller and simpler than the configuration in the Docker Compose setup.
By default, it sets up a connection to a namespace called "test" in an Aerospike Database cluster accessible at 127.0.0.1:3000.
It stores backup files locally at /var/lib/aerospike-backup-service.
aerospike-clusters: cluster1: use-services-alternate: false seed-nodes: - host-name: "127.0.0.1" port: 3000 credentials: user: "admin" password: "admin"
storage: minioStorage: s3-storage: bucket: my-backup-bucket path: backups s3-profile: default s3-region: eu-central-1 s3-endpoint-override: http://minio:9000
backup-policies: policy1: parallel: 1
backup-routines: routine1: interval-cron: "@weekly" incr-interval-cron: "@daily" backup-policy: "policy1" source-cluster: "cluster1" storage: "local1" namespaces: ["test"]