Skip to content
Visit booth 3171 at Google Cloud Next to see how to unlock real-time decisions at scaleMore info

ABS Configuration

Aerospike Backup Service (ABS) reads the configuration file aerospike-backup-service.yml to create connections to Aerospike Database namespaces and storage destinations, as well as backup policies, routines, and schedules.

This page explains two sample configuration files included in the ABS GitHub repository and provides details and examples for the configuration parameters.

For the parameter list in OpenAPI format, see the Schemas section in the REST API specification.

Example configuration files

Default Docker Compose ABS Configuration:

The following sample backup service configuration supplied with the Docker Compose stack for ABS consists of four sections:

  • aerospike-clusters defines the location and access credentials for ABS to communicate to the Aerospike database, calling that cluster absCluster1. 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.
  • storage defines the location of the storage for database backups. Here, it creates a storage type called minioStorage that uses the s3-endpoint-override parameter 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 called keepFilesPolicy is 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-routines specifies a routine called minioKeepFilesRoutine that runs the keepFilesPolicy policy 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 the storage section, 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:
keepFilesPolicy:
# Run backup operations in a single thread.
parallel: 1
# Previous full backups are not deleted when a new one is created.
remove-files: KeepAll
backup-routines:
minioKeepFilesRoutine:
# 24 hours interval for full backups.
interval-cron: "@daily"
# 1 hour interval for incremental backups.
incr-interval-cron: "@hourly"
source-cluster: absCluster1
storage: minioStorage
namespace: test
backup-policy: keepFilesPolicy
Default 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 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:
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:
type: 1
parallel: 1
backup-routines:
routine1:
interval-cron: "@weekly"
incr-interval-cron: "@daily"
backup-policy: "policy1"
source-cluster: "cluster1"
storage: "local1"
namespace: "test"

Configuration options

Search here for individual configuration options. Expand the cards to see more details and/or usage examples.

Options

aerospike-clusters.CLUSTER_NAME.conn-timeout
integer
description

Connection timeout in milliseconds.

introduced
1.0
removed
default
example

conn-timeout

Terminal window
5000
aerospike-clusters.CLUSTER_NAME.credentials.auth-mode
string
description

The authentication mode used by the cluster.

introduced
1.0
removed
default
values

INTERNAL, EXTERNAL, PKI

aerospike-clusters.CLUSTER_NAME.credentials.password-path
string
description

File path with the password string. Mutually exclusive with password field.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
user: "admin"
password-path: "/path/to/pass.txt"
aerospike-clusters.CLUSTER_NAME.credentials.password
string
description

Plaintext password for cluster authentication. If it starts with secrets, path to password stored in Aerospike Secret Agent. Only use this plaintext authentication method for testing, never in production.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
user: "admin"
password: "admin"
aerospike-clusters.CLUSTER_NAME.credentials.secret-agent-name
string
description

Name of secret agent to use to fetch password. Use a previously configured secret agent in the secret-agents configuration stanza.

introduced
3.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
secret-agent-name: "demoSa"
aerospike-clusters.CLUSTER_NAME.credentials.secret-agent
object
description

Configuration for one or more secret agents to use to fetch the password.

introduced
3.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
secret-agent:
... <secret agent config here> ...
aerospike-clusters.CLUSTER_NAME.credentials.user
string
description

Plaintext username for cluster authentication.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
user: "admin"
password: "admin"
aerospike-clusters.CLUSTER_NAME.credentials
object
description

Authentication details in plain text for the Aerospike cluster.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
credentials:
user: "admin"
password: "admin"
aerospike-clusters.CLUSTER_NAME.label
string
description

A user-selected name for the cluster. It is used only in logs and error messages.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.max-parallel-scans
integer
description

Maximum number of simultaneous allowed data reads, or scans, from the cluster during backup. This is a cluster-scope limit for all backup policies to prevent cluster overload.

introduced
2.0
removed
default
No limit if parameter is not provided.
example
Terminal window
aerospike-clusters:
absDefaultCluster:
seed-nodes:
- host-name: "localhost"
port: 3000
credentials:
user: "tester"
password: "psw"
max-parallel-scans: 8
values

Any non-negative integer

aerospike-clusters.CLUSTER_NAME.seed-nodes.host-name
string
description

Host name to connect to the seed node for communication with the Aerospike Database cluster.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
absCluster1:
seed-nodes:
- host-name: "aerospike-cluster"
port: 3000
credentials:
user: admin
password: admin
aerospike-clusters.CLUSTER_NAME.seed-nodes.port
integer
description

Port to connect to the seed node for communication with the Aerospike Database cluster.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
absCluster1:
seed-nodes:
- host-name: "aerospike-cluster"
port: 3000
credentials:
user: admin
password: admin
aerospike-clusters.CLUSTER_NAME.seed-nodes.tls-name
string
description

Optional TLS certificate name used for secure connections.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.seed-nodes
array
description

A stanza with connection details of the seed nodes, or the nodes that Aerospike Backup Service uses to communicate with the cluster. On a multi-node cluster, you can supply connection information for a single node and the rest of the nodes will automatically be discovered.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
absCluster1:
seed-nodes:
- host-name: "aerospike-cluster"
port: 3000
aerospike-clusters.CLUSTER_NAME.tls.ca-file
string
description

Path to a trusted CA certificate file.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.ca-path
string
description

Path to a directory of trusted CA certificates.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.cert-file
string
description

Path to the chain file for mutual authentication if the Aerospike cluster supports it.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.cipher-suite
string
description

TLS cipher selection criteria. The format is the same as OpenSSL’s Cipher List Format.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.key-file-password
string
description

Password to load protected TLS-keyfile (env:VAR, file:PATH, PASSWORD).

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.key-file
string
description

Path to the key for mutual authentication if the Aerospike cluster supports it.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.name
string
description

Default TLS name used to authenticate each TLS socket connection.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls.protocols
string
description

TLS protocol selection criteria. This format is the same as Apache’s SSL Protocol.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.tls
object
description

A sub-stanza of a particular cluster with details about the cluster TLS configuration.

introduced
1.0
removed
default
aerospike-clusters.CLUSTER_NAME.use-services-alternate
boolean
description

Whether to use “services-alternate” instead of “services” in info request during cluster tending.

introduced
1.0
removed
default
false
backup-policies.POLICY_NAME.bandwidth
integer
description

Throttles backup write operations to the backup file(s) to not exceed the given bandwidth in MiB/s.

introduced
1.0
removed
default
example
Terminal window
bandwidth: 10000
backup-policies.POLICY_NAME.compression.level
integer
description

Compression level to use, or -1 if unspecified.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.compression.mode
string
description

Compression mode to use. Options are NONE (default) or ZSTD.

introduced
1.0
removed
default
`NONE`
example
Terminal window
`NONE`
values

NONE, ZSTD

backup-policies.POLICY_NAME.compression
object
description

Compression details.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.encryption.key-env
string
description

Name of the environment variable containing the encryption key.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.encryption.key-file
string
description

Path to the file containing the encryption key.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.encryption.key-secret
string
description

Secret keyword in Aerospike Secret Agent containing the encryption key.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.encryption.mode
string
description

Encryption mode to use. Options are NONE, AES128, or AES256.

introduced
1.0
removed
default
`NONE`
example
Terminal window
`NONE`
values

NONE, AES128, AES256

backup-policies.POLICY_NAME.encryption
object
description

Controls backup encryption information like the location of an encryption key or the keyword for Aerospike Secret Agent.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.file-limit
integer
description

File size limit (in MB) for the backup file. If an .asb backup file crosses this size threshold, a new backup file is created.

introduced
1.0
removed
default
example
Terminal window
file-limit: 1024
backup-policies.POLICY_NAME.max-records
integer
description

Approximate limit for the number of records to process. Available in Database 4.9 and later.

introduced
1.0
removed
2.0
default
example
Terminal window
max-records: 10000
backup-policies.POLICY_NAME.max-retries
integer
description

Maximum number of retries before aborting the current transaction. Removed in 3.0 and replaced with the retry-policy substanza.

introduced
1.0
removed
3.0
default
example
Terminal window
"parallel":1,
"remove-files":"KeepAll",
"max-retries": 3
backup-policies.POLICY_NAME.no-bins
boolean
description

Only back up record metadata; digest, TTL, generation count, key.

introduced
1.0
removed
2.0
default
backup-policies.POLICY_NAME.no-indexes
boolean
description

Whether to back up secondary index definitions.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.no-records
boolean
description

Whether to back up record data, metadata or bin data.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.no-udfs
boolean
description

Whether to back up UDF modules.

introduced
1.0
removed
default
backup-policies.POLICY_NAME.node-list
string
description

List of nodes to back up. Formatted as a list of IP addresses and/or host names followed by port numbers. Empty list implies backup of the whole cluster.

introduced
1.0
removed
default
example
Terminal window
node-list: IP_ADDRESS:3000,HOSTNAME:3000
values

IP_ADDRESS:PORT(,IP_ADDRESS:PORT,...) or IP_ADDRESS:TLS_NAME:PORT(,IP_ADDRESS:TLS_NAME:PORT,...)

backup-policies.POLICY_NAME.parallel
integer
description

Maximum number of scan calls to run in parallel. This value should always be equal to or lower than aerospike-clusters.CLUSTER_NAME.max-parallel-scans.

introduced
1.0
removed
default
example
Terminal window
1
backup-policies.POLICY_NAME.records-per-second
integer
description

Limit total returned records per second (RPS). If RPS is zero (the default), the records-per-second limit is not applied.

introduced
1.0
removed
default
example
Terminal window
1000
backup-policies.POLICY_NAME.remove-artifacts
boolean
description

Clear directory or remove output file.

introduced
1.0
removed
2.0
default
backup-policies.POLICY_NAME.remove-files
object
description

Whether to clear the output directory when a backup is written to it.

introduced
1.0
removed
3.0
default
values

KeepAll - do not remove any existing files in the directory

RemoveAll- clear the directory before writing a backup

RemoveIncremental - remove any incremental backups when a full backup is performed, leaving any existing full backups untouched

backup-policies.POLICY_NAME.retention.full
integer
description

The total number of full backups to retain. The minimum is 1, meaning each new full backup deletes the previous one. If not specified, all full backups are kept.

introduced
3.0
removed
default
example
Terminal window
full: 5
values

Any integer equal to or greater than 1

backup-policies.POLICY_NAME.retention.incremental
integer
description

The number of most recent full backups for which incremental backups are retained. Cannot exceed the value of full. If omitted, all incremental backups are kept. A value of 0 means that all previous incremental backups will be deleted after each full backup is made.

introduced
3.0
removed
default
example
Terminal window
incremental: 3
values

Integer values equal to or less than 0 and equal to or less than full.

backup-policies.POLICY_NAME.retention
integer
description

A stanza that optionally specifies retention rules for a given backup policy.

introduced
3.0
removed
default
example
Terminal window
removeFilesPolicy:
retention:
full: 5
incremental: 3
backup-policies.POLICY_NAME.retry-delay
integer
description

Delay in milliseconds to wait before retrying a failed operation.

introduced
1.0
removed
3.0
default
example
Terminal window
500
backup-policies.POLICY_NAME.retry-policy.base-timeout
integer
description

Initial delay between retry attempts, in milliseconds.

introduced
3.0
removed
default
1000
example
backup-policies.POLICY_NAME.retry-policy.max-retries
integer
description

Maximum number of retry attempts that will be made. If set to 0, no retries will be performed.

introduced
3.0
removed
default
5
example
backup-policies.POLICY_NAME.retry-policy.multiplier
integer
description

Increases the delay between subsequent retry attempts. The actual delay is calculated as: BaseTimeout * (Multiplier ^ attemptNumber)

introduced
3.0
removed
default
1
example
backup-policies.POLICY_NAME.retry-policy
description

Define a policy in this section for the initial waiting time before a retry, number of retries, and a multiplier that extends the wait interval. A retry policy can also be sent as part of a JSON restore request.

introduced
3.0
removed
default
example
Terminal window
backup-policies:
example-backup-policy:
... # additional stanzas
retry-policy:
base-timeout: 1000 # 1000 milliseconds
max-retries: 4
multiplier: 2
... # additional stanzas
backup-policies.POLICY_NAME.sealed
boolean
description

Whether backup should include keys updated during the backup process. When true, the backup contains only records that last modified before backup started. When false, records updated during backup may be included in the backup.

introduced
1.0
removed
default
false
backup-policies.POLICY_NAME.socket-timeout
integer
description

Socket timeout in milliseconds. If this value is 0, it is set to total-timeout. If both socket-timeout and total-timeout are 0, there is no socket idle time limit.

introduced
1.0
removed
default
example
Terminal window
1000
backup-policies.POLICY_NAME.total-timeout
integer
description

Total socket timeout in milliseconds.

introduced
1.0
removed
default
0 (no timeout)
example
Terminal window
2000
backup-routines.ROUTINE_NAME.backup-policy
string
description

Name of the corresponding backup policy.

introduced
1.0
removed
default
example

Example backup routine containing a policy called keepFilesPolicy

Terminal window
backup-routines:
minioKeepFilesRoutine:
interval-cron: "@daily"
incr-interval-cron: "@hourly"
source-cluster: absCluster1
storage: minioStorage
namespace: test
backup-policy: keepFilesPolicy
backup-routines.ROUTINE_NAME.bin-list
array
description

List of bin names to back up. An empty list backs up all bins.

introduced
1.0
removed
default
[]
example
Terminal window
["dataBin"]
backup-routines.ROUTINE_NAME.incr-interval-cron
string
description

Interval for incremental backup as a cron expression string. Intervals are extended cron (7 symbols: year, month, week, day, hour, minute, second). Supported reserved words: @yearly, @monthly, @weekly, @daily, @hourly

introduced
1.0
removed
default
example
Terminal window
*/10 * * * * *
backup-routines.ROUTINE_NAME.interval-cron
string
description

Interval for full backup as a cron expression string. Intervals are extended cron (7 symbols: year, month, week, day, hour, minute, second). Supported reserved words: @yearly, @monthly, @weekly, @daily, @hourly

introduced
1.0
removed
default
example
Terminal window
0 0 * * * *
backup-routines.ROUTINE_NAME.namespaces
array
description

List of namespaces to back up. Empty list implies backup of whole cluster.

introduced
1.0
removed
default
[]
example
Terminal window
["source-ns1"]
backup-routines.ROUTINE_NAME.node-list
array
description

List of nodes to back up. Formatted as a list of IP addresses and/or host names followed by port numbers. Empty list implies backup of whole cluster.

introduced
1.0
removed
default
[]
example
Terminal window
IP_ADDRESS:PORT(,IP_ADDRESS:PORT,...)
backup-routines.ROUTINE_NAME.partition-list
string
description

Back up list of partition filters. Partition filters can be ranges, individual partitions, or records after a specific digest within a single partition. Default number of partitions to back up: 0 to 4095: all partitions.

introduced
1.0
removed
default
example
Terminal window
0-1000
backup-routines.ROUTINE_NAME.prefer-racks
array
description

List of Aerospike Database rack IDs to prefer when reading records for a backup.

introduced
1.0
removed
default
[]
example
Terminal window
[0]
backup-routines.ROUTINE_NAME.secret-agent
string
description

The Secret Agent configuration for the routine (optional).

introduced
1.0
removed
default
[]
example
Terminal window
secret-agent-configuration
backup-routines.ROUTINE_NAME.set-list
array
description

List of set names to back up. An empty list backs up all sets.

introduced
1.0
removed
default
[]
example
Terminal window
["set1"]
backup-routines.ROUTINE_NAME.source-cluster
string
description

Name of the corresponding source cluster.

introduced
1.0
removed
default
example
Terminal window
testCluster
backup-routines.ROUTINE_NAME.storage
string
description

Name of the corresponding storage provider configuration.

introduced
1.0
removed
default
example

Example using minIO storage

Terminal window
storage: minioStorage
backup-routines
string
description

A top-level stanza specifying the details of one or more backup routines.

introduced
1.0
removed
default
example

Example routine called routine1

Terminal window
backup-routines:
routine1:
interval-cron: "1/30 * * * * *"
incr-interval-cron: "1/5 * * * * *"
backup-policy: "policy1"
source-cluster: "cluster1"
storage: "local1"
namespace: "test"
cluster
required
description

A top-level stanza containing cluster objects for each of the Aerospike clusters that ABS is connected to.

introduced
1.0
removed
default
example
Terminal window
aerospike-clusters:
cluster1:
use-services-alternate: false
seed-nodes:
- host-name: "127.0.0.1"
port: 3000
credentials:
user: "admin"
password: "admin"
storage.STORAGE_NAME.azure-storage.account-key
description

Azure storage account key for Shared Key authentication. This is sensitive information. Can be a path in secret agent or an actual value.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.account-name
description

Azure storage account name for Shared Key authentication.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.client-id
description

Azure Active Directory client ID for AAD authentication.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.client-secret
description

Azure Active Directory client secret for AAD authentication. This is sensitive information. Can be a path in secret agent or an actual value.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.container-name
required
description

Name of the Azure Blob container.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.endpoint
required
description

Azure Blob service endpoint URL.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.path
description

Root path for the backup repository within the container. If not specified, backups will be saved in the container’s root.

introduced
3.0
removed
default
example
Terminal window
path: backups
values

string

storage.STORAGE_NAME.azure-storage.secret-agent-name
description

Secret Agent configuration (optional). Link to a preconfigured agent. Mutually exclusive with secret-agent.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage.secret-agent
description

Secret Agent object definition. Mutually exclusive with secret-agent-name.

introduced
3.0
removed
default
example
storage.STORAGE_NAME.azure-storage.tenant-id
description

Azure Active Directory tenant ID for AAD authentication.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.azure-storage
description

Stanza defining Azure storage options. Mutually exclusive with other storage objects. Can also take a secret-agent substanza.

introduced
3.0
removed
default
example
Terminal window
storage:
azure-blob-storage-example:
azure-storage:
endpoint: http://127.0.0.1:6000/devstoreaccount1
container-name: testcontainer
path: backups
account-name: devstoreaccount1
storage.STORAGE_NAME.gcp-storage.bucket-name
required
description

GCP storage bucket name.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.gcp-storage.endpoint
description

Alternative URL. It is not recommended to use an alternate URL in a production environment.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.gcp-storage.key-file-path
description

Path to the file containing the service account key in JSON format.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.gcp-storage.key
description

Service account key in JSON format. This is sensitive information. Can be a path in secret agent or an actual value.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.gcp-storage.path
description

Root path for the backup repository. If not specified, backups will be saved in the bucket’s root.

introduced
3.0
removed
default
example
Terminal window
path: backups
values

string

storage.STORAGE_NAME.gcp-storage.secret-agent-name
description

Secret Agent configuration (optional). Link to one of preconfigured agents. Mutually exclusive with secret-agent.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.gcp-storage.secret-agent
description

Secret Agent object definition. Mutually exclusive with secret-agent-name.

introduced
3.0
removed
default
example
values

object

storage.STORAGE_NAME.gcp-storage
description

Stanza defining GCP storage options. Mutually exclusive with other storage objects. Can also take a secret-agent substanza.

introduced
3.0
removed
default
example
Terminal window
storage:
gcp-storage-example:
gcp-storage:
key-file-path: key-file.json
bucket-name: gcp-backup-bucket
path: backups
endpoint: http://127.0.0.1:9020
storage.STORAGE_NAME.local-storage.path
required
description

Root path for the backup directory when backing up locally.

introduced
3.0
removed
default
example
Terminal window
storage:
example-local-storage-object:
local-storage:
path: backups
storage.STORAGE_NAME.local-storage
description

Stanza defining local storage options. Mutually exclusive with other storage objects.

introduced
3.0
removed
default
example
Terminal window
storage:
example-local-storage-object:
local-storage:
path: backups
storage.STORAGE_NAME.path
description

Root path for the backup directory.

introduced
1.0
removed
3.0
default
example
Terminal window
path: backups
storage.STORAGE_NAME.s3-endpoint-override
string
description

Alternative endpoint for the S3 SDK to communicate (AWS S3 optional).

introduced
1.0
removed
3.0
default
example
Terminal window
s3-endpoint-override: http://host.docker.internal:9000
storage.STORAGE_NAME.s3-log-level
string
description

Log level of the AWS S3 SDK (AWS S3 optional).

introduced
1.0
removed
3.0
default
example
Terminal window
s3-log-level: FATAL
storage.STORAGE_NAME.s3-profile
string
description

The S3 profile name (AWS S3 optional).

introduced
1.0
removed
3.0
default
example
Terminal window
s3-profile: default
storage.STORAGE_NAME.s3-region
string
description

S3 region string (AWS S3 optional).

introduced
1.0
removed
3.0
default
example
Terminal window
s3-region: eu-central-1
storage.STORAGE_NAME.s3-storage.access-key-id
description

Access Key ID for authentication with S3 StaticCredentialsProvider. This is sensitive information. Can be a path in secret agent or an actual value.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.s3-storage.bucket
required
description

The S3 bucket name.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.s3-storage.max_async_connections
description

The maximum number of simultaneous requests allowed from S3.

introduced
3.0
removed
default
example
values

integer

storage.STORAGE_NAME.s3-storage.min_part_size
description

The minimum size in bytes of individual S3 UploadParts.

introduced
3.0
removed
default
example
values

integer

storage.STORAGE_NAME.s3-storage.path
description

The root path for the backup repository within the bucket. If not specified, backups will be saved in the bucket’s root.

introduced
3.0
removed
default
example
Terminal window
path: backups
values

string

storage.STORAGE_NAME.s3-storage.s3-endpoint-override
description

An alternative endpoint for the S3 SDK to communicate (AWS S3 optional).

introduced
3.0
removed
default
example
Terminal window
s3-endpoint-override: http://host.docker.internal:9000
values

string

storage.STORAGE_NAME.s3-storage.s3-log-level
description

The log level of the AWS S3 SDK (AWS S3 optional).

introduced
3.0
removed
default
FATAL
example
values

string

storage.STORAGE_NAME.s3-storage.s3-profile
description

The S3 profile name (AWS S3 optional).

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.s3-storage.s3-region
required
description

The S3 region string.

introduced
3.0
removed
default
example
Terminal window
region: eu-central-1
values

string

storage.STORAGE_NAME.s3-storage.secret-access-key
description

Secret Access Key for authentication with S3 StaticCredentialsProvider. This is sensitive information. Can be a path in Aerospike Secret Agent or an actual value.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.s3-storage.secret-agent-name
description

Secret Agent configuration (optional). Link to one of preconfigured agents. Mutually exclusive with secret-agent.

introduced
3.0
removed
default
example
values

string

storage.STORAGE_NAME.s3-storage.secret-agent
description

Secret Agent object definition. Mutually exclusive with secret-agent-name.

introduced
3.0
removed
default
example
storage.STORAGE_NAME.s3-storage
description

Stanza defining AWS S3 storage options. Mutually exclusive with other storage objects. Can also take a secret-agent substanza.

introduced
3.0
removed
default
example
Terminal window
storage:
aws-s3-example-object:
s3-storage:
bucket: as-backup-bucket
path: backups
s3-region: eu-central-1
storage.STORAGE_NAME.type
string
description

Type of the storage provider.

introduced
1.0
removed
3.0
default
example
Terminal window
type: local
storage
required
description

A top-level stanza with options for configuring local or remote storage. Define a custom name for each storage object you create, then use further parameters to define each object’s details.

introduced
1.0
removed
default
example
Terminal window
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
Feedback

Was this page helpful?

What type of feedback are you giving?

What would you like us to know?

+Capture screenshot

Can we reach out to you?