Deploying Aerospike Tools with Docker
Why Containers?
You can use containers to:
- Encapsulate the dependencies for the process you want to run, such as the packages required or the frameworks that need to be present.
- Provide runtime isolation, so that containers with different dependencies or OS kernel versions can co-exist on the same physical host.
Application architectures are evolving, especially with the adoption of micro-server architectures. Your application is no longer one large, static binary or set of packages. It is more like a series of discrete services that are brought together dynamically at runtime. This is a natural fit for containers. But how does this fit with services that require persistence or require long running processes?
Get Started with Docker
Docker supports multiple platforms on Desktop (Microsoft Windows 10 & macOS), Cloud (Amazon Web Service & Microsoft Azure), and Server (CentOS, Debian, Fedora, Ubuntu). For more information on installing Docker on these platforms, see Get Docker.
The examples on this page are for Docker Desktop for Mac.
Install Docker
For information about installing Docker Desktop for Mac, see Install Docker Desktop on Mac.
Run Docker
-
Open Docker Desktop. The Docker Desktop Dashboard displays.
-
In a Terminal window, verify Docker is running using the following command:
Terminal window $ docker --versionIf Docker is running, a Docker version and build is returned in the command output. For example:
Terminal window Docker version 27.4.0, build bde2b89
Available tools
Aerospike provides prepackaged tools images for Docker with the following Aerospike Tools:
- asadm
- asinfo
- aql
- asloglatency
- asbackup
- asrestore
- asbench
- uda
- asconfig
For more information about Aerospike tools, see Aerospike tools.
Usage
docker run [OPTIONS] IMAGE [COMMAND] [ARG...]</code>
docker run -ti -v <host>:<container> --name aerospike-tools --rm aerospike/aerospike-tools <Aerospike Tools commands> -h <Seed_Host_IP> --no-config-file
Option | Description |
---|---|
-t, —tty | Allocate a pseudo-TTY |
-i, —interactive | Keep STDIN open even if not attached |
-v, —volume list | Bind mount a volume |
—name | Container name |
—rm | Remove container after use |
Aerospike admin (asadm
)
Enter the following command to run asadm
:
$ docker run -ti --name aerospike-asadm —-rm aerospike/aerospike-tools asadm <Aerospike Admin Tool commands> --host <Seed_Host_IP> --no-config-file
Example
Enter the following command to run asadm
and enable command line input:
$ docker run -ti --name aerospike-asadm --rm aerospike/aerospike-tools asadm --host 10.0.0.173 --no-config-fileSeed: [('10.0.0.173', 3000, None)]Config_file: NoneAerospike Interactive Shell, version 0.1.18
Found 2 nodesOnline: 10.0.0.171:3000, 10.0.0.173:3000
Admin>
You can inspect the Aerospike Cluster configuration:
$ docker run -ti --name aerospike-asadm --rm aerospike/aerospike-tools asadm -e info --host 10.0.0.173 --no-config-fileSeed: [('10.0.0.173', 3000, None)]Config_file: None~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Network Information (2018-05-10 08:47:57 UTC)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Node Node Ip Build Cluster Migrations Cluster Cluster Principal Client Uptime . Id . . Size . Key Integrity . Conns .10.0.0.171:3000 *BB9BC6479270008 10.0.0.171:3000 E-3.15.0.2 2 0.000 6F420A0B3DA7 True BB9BC6479270008 1 00:16:4510.0.0.173:3000 BB945718C270008 10.0.0.173:3000 E-4.1.0.1 2 0.000 6F420A0B3DA7 True BB9BC6479270008 4 00:14:27Number of rows: 2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Namespace Usage Information (2018-05-10 08:47:57 UTC)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Namespace Node Total Expirations,Evictions Stop Disk Disk HWM Avail% Mem Mem HWM Stop . . Records . Writes Used Used% Disk% . Used Used% Mem% Writes%bar 10.0.0.171:3000 0.000 (0.000, 0.000) false N/E N/E 50 N/E 0.000 B 0 60 90bar 10.0.0.173:3000 0.000 (0.000, 0.000) false N/E N/E 50 N/E 0.000 B 0 60 90bar 0.000 (0.000, 0.000) 0.000 B 0.000 Btest 10.0.0.171:3000 0.000 (0.000, 0.000) false N/E N/E 50 N/E 0.000 B 0 60 90test 10.0.0.173:3000 0.000 (0.000, 0.000) false N/E N/E 50 N/E 0.000 B 0 60 90test 0.000 (0.000, 0.000) 0.000 B 0.000 BNumber of rows: 6
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Namespace Object Information (2018-05-10 08:47:57 UTC)~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Namespace Node Total Repl Objects Tombstones Pending Rack . . Records Factor (Master,Prole,Non-Replica) (Master,Prole,Non-Replica) Migrates ID . . . . . . (tx,rx) .bar 10.0.0.171:3000 0.000 2 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000) 0bar 10.0.0.173:3000 0.000 2 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000) 0bar 0.000 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000)test 10.0.0.171:3000 0.000 2 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000) 0test 10.0.0.173:3000 0.000 2 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000) 0test 0.000 (0.000, 0.000, 0.000) (0.000, 0.000, 0.000) (0.000, 0.000)Number of rows: 6
You can issue asinfo
commands to return the build version for each node on all cluster nodes at the same time:
$ docker run -ti --name aerospike-asadm --rm aerospike/aerospike-tools asadm -e 'enable; asinfo -v build' --host 10.0.0.173 --no-config-fileSeed: [('10.0.0.173', 3000, None)]Config_file: None10.0.0.171:3000 (10.0.0.171) returned:3.15.0.2
10.0.0.173:3000 (10.0.0.173) returned:4.1.0.1
Aerospike information (asinfo
)
Enter the following command to run asinfo
:
$ docker run -ti --name aerospike-asinfo —-rm aerospike/aerospike-tools asinfo <Aerospike Information Tool commands> --host <Seed_Host_IP> --no-config-file
Example
Enter the following command to run asinfo
and display server configuration parameters:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo --host 1.2.3.4 --no-config-fileEnter Password:1 : node 17713AF706CA05682 : statistics cluster_size=1;cluster_key=99D8CA48F383;cluster_generation=1;cluster_principal=17713AF706CA0568;cluster_integrity=true;cluster_is_member=true;cluster_duplicate_nodes=null;cluster_clock_skew_stop_writes_sec=0;cluster_clock_skew_ms=0;cluster_clock_skew_outliers=null;uptime=1889281;system_total_cpu_pct=127;system_user_cpu_pct=49;system_kernel_cpu_pct=78;system_free_mem_pct=16;process_cpu_pct=0;heap_allocated_kbytes=98701;heap_active_kbytes=100524;heap_mapped_kbytes=145408;heap_efficiency_pct=68;heap_site_count=0;objects=0;tombstones=0;info_queue=0;rw_in_progress=0;proxy_in_progress=0;tree_gc_queue=0;client_connections=1;heartbeat_connections=0;fabric_connections=0;heartbeat_received_self=12590090;heartbeat_received_foreign=0;reaped_fds=5;info_complete=992;demarshal_error=0;early_tsvc_client_error=0;early_tsvc_from_proxy_error=0;early_tsvc_batch_sub_error=0;early_tsvc_from_proxy_batch_sub_error=0;early_tsvc_udf_sub_error=0;early_tsvc_ops_sub_error=0;batch_index_initiate=0;batch_index_queue=0:0,0:0,0:0,0:0;batch_index_complete=0;batch_index_error=0;batch_index_timeout=0;batch_index_delay=0;batch_index_unused_buffers=0;batch_index_huge_buffers=0;batch_index_created_buffers=0;batch_index_destroyed_buffers=0;batch_index_proto_uncompressed_pct=0.000;batch_index_proto_compression_ratio=1.000;scans_active=0;query_short_running=0;query_long_running=0;sindex_ucgarbage_found=0;sindex_gc_retries=0;sindex_gc_list_creation_time=594;sindex_gc_list_deletion_time=0;sindex_gc_objects_validated=0;sindex_gc_garbage_found=0;sindex_gc_garbage_cleaned=0;paxos_principal=17713AF706CA0568;time_since_rebalance=1889279;migrate_allowed=true;migrate_partitions_remaining=0;fabric_bulk_send_rate=0;fabric_bulk_recv_rate=0;fabric_ctrl_send_rate=0;fabric_ctrl_recv_rate=0;fabric_meta_send_rate=0;fabric_meta_recv_rate=0;fabric_rw_send_rate=0;fabric_rw_recv_rate=0;dlog_used_objects=0;dlog_free_pct=0;dlog_logged=0;dlog_relogged=0;dlog_processed_main=0;dlog_processed_replica=0;dlog_processed_link_down=0;dlog_overwritten_error=0;xdr_ship_success=0;xdr_ship_delete_success=0;xdr_ship_source_error=0;xdr_ship_destination_error=0;xdr_ship_destination_permanent_error=0;xdr_ship_fullrecord=0;xdr_ship_bytes=0;xdr_ship_inflight_objects=0;xdr_ship_outstanding_objects=0;xdr_ship_latency_avg=0;xdr_ship_compression_avg_pct=0.00;xdr_read_success=0;xdr_read_error=0;xdr_read_notfound=0;xdr_read_latency_avg=0;xdr_read_active_avg_pct=0.00;xdr_read_idle_avg_pct=0.00;xdr_read_reqq_used=0;xdr_read_respq_used=0;xdr_read_reqq_used_pct=0.00;xdr_read_txnq_used=0;xdr_read_txnq_used_pct=0.00;xdr_relogged_incoming=0;xdr_relogged_outgoing=0;xdr_queue_overflow_error=0;xdr_active_failed_node_sessions=0;xdr_active_link_down_sessions=0;xdr_hotkey_fetch=0;xdr_hotkey_skip=0;xdr_unknown_namespace_error=0;xdr_timelag=0;xdr_throughput=0;xdr_global_lastshiptime=184467440737095516153 : features batch-index;blob-bits;cdt-list;cdt-map;cluster-stable;float;geo;sindex-exists;peers;pipelining;relaxed-sc;replicas;replicas-all;replicas-master;truncate-namespace;udf;xdr4 : partition-generation 05 : build_time Fri Jan 3 21:50:01 UTC 20206 : dcs
7 : edition Aerospike Enterprise Edition8 : version Aerospike Enterprise Edition build 4.8.0.39 : compatibility-id 510 : services
11 : services-alumni
12 : build_os el713 : build 4.8.0.3
Enter the following command to run asinfo
and display all namespaces:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo -v "namespaces" -h 10.0.0.173 --no-config-filetest;bar
Enter the following command to run asinfo
and display all statistics:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo -v statistics -h 10.0.0.173 --no-config-filecluster_size=2;cluster_key=BD70190EBEC1;cluster_generation=1;cluster_principal=BB945718C270008;cluster_integrity=true;cluster_is_member=true;cluster_duplicate_nodes=null;cluster_clock_skew_stop_writes_sec=56;cluster_clock_skew_ms=0;cluster_clock_skew_outliers=null;uptime=21500;system_free_mem_pct=88;heap_allocated_kbytes=171468;heap_active_kbytes=173940;heap_mapped_kbytes=322560;heap_efficiency_pct=53;heap_site_count=41;objects=0;tombstones=0;info_queue=0;rw_in_progress=0;proxy_in_progress=0;tree_gc_queue=0;client_connections=1;heartbeat_connections=0;fabric_connections=24;heartbeat_received_self=42987;heartbeat_received_foreign=42986;reaped_fds=7;info_complete=5120;demarshal_error=0;early_tsvc_client_error=0;early_tsvc_from_proxy_error=0;early_tsvc_batch_sub_error=0;early_tsvc_from_proxy_batch_sub_error=0;early_tsvc_udf_sub_error=0;batch_index_initiate=0;batch_index_queue=0:0,0:0;batch_index_complete=0;batch_index_error=0;batch_index_timeout=0;batch_index_delay=0;batch_index_unused_buffers=0;batch_index_huge_buffers=0;batch_index_created_buffers=0;batch_index_destroyed_buffers=0;scans_active=0;query_short_running=0;query_long_running=0;sindex_ucgarbage_found=0;sindex_gc_retries=0;sindex_gc_list_creation_time=861;sindex_gc_list_deletion_time=0;sindex_gc_objects_validated=514;sindex_gc_garbage_found=0;sindex_gc_garbage_cleaned=0;paxos_principal=BB945718C270008;time_since_rebalance=21494;migrate_allowed=true;migrate_partitions_remaining=0;fabric_bulk_send_rate=0;fabric_bulk_recv_rate=0;fabric_ctrl_send_rate=0;fabric_ctrl_recv_rate=0;fabric_meta_send_rate=298;fabric_meta_recv_rate=298;fabric_rw_send_rate=0;fabric_rw_recv_rate=0;dlog_used_objects=61;dlog_free_pct=100;dlog_logged=30761;dlog_relogged=5508;dlog_processed_main=30761;dlog_processed_replica=145;dlog_processed_link_down=0;dlog_overwritten_error=0;xdr_ship_success=0;xdr_ship_delete_success=0;xdr_ship_source_error=5508;xdr_ship_destination_error=0;xdr_ship_destination_permanent_error=0;xdr_ship_fullrecord=5508;xdr_ship_bytes=0;xdr_ship_inflight_objects=0;xdr_ship_outstanding_objects=0;xdr_ship_latency_avg=0;xdr_ship_compression_avg_pct=0.00;xdr_read_success=5508;xdr_read_error=0;xdr_read_notfound=528;xdr_read_latency_avg=0;xdr_read_active_avg_pct=0.00;xdr_read_idle_avg_pct=100.00;xdr_read_reqq_used=0;xdr_read_respq_used=0;xdr_read_reqq_used_pct=0.00;xdr_read_txnq_used=0;xdr_read_txnq_used_pct=0.00;xdr_relogged_incoming=0;xdr_relogged_outgoing=5508;xdr_queue_overflow_error=0;xdr_active_failed_node_sessions=0;xdr_active_link_down_sessions=0;xdr_hotkey_fetch=1638;xdr_hotkey_skip=26363;xdr_unknown_namespace_error=0;xdr_timelag=0;xdr_throughput=0;xdr_global_lastshiptime=1551340161340
Enter the following command to run asinfo
and display all features, replacing semicolons with line breaks in the response:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo -v features -l -h 10.0.0.173 --no-config-filepeerscdt-listcdt-mappipelininggeofloatbatch-indexreplicasreplicas-allreplicas-masterreplicas-proleudfxdr
Enter the following command to get the configuration value of the proto-fd-max
service context, piping the output to grep for the specific configuration value:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo -v "get-config:context=service" -l -h 10.0.0.173 --no-config-file | grep proto-fd-maxproto-fd-max=15000
To set the configuration value for the service context proto-fd-max
, run the following asinfo -v set-config
command:
$ docker run -ti --name aerospike-asinfo --rm aerospike/aerospike-tools asinfo -v 'set-config:context=service;proto-fd-max=100000' -h 10.0.0.173 --no-config-fileok
Aerospike Quick Look (AQL)
Enter the following command to run aql
:
$ docker run -ti --name aerospike-aql —-rm aerospike/aerospike-tools aql <AQL Tool commands> --host <Seed_Host_IP> --no-config-file
Example
Enter the following command to run aql
end enable command line input:
$ docker run -ti --name aerospike-aql --rm aerospike/aerospike-tools aql -h 10.0.0.173 --no-config-fileSeed: 10.0.0.173User: NoneConfig File: NoneAerospike Query ClientVersion 3.15.3.6C Client Version 4.3.11Copyright 2012-2017 Aerospike. All rights reserved.aql>
You can run AQL in a Docker container to insert and query some data into the Aerospike server.
$ docker run -ti --name aerospike-aql --rm aerospike/aerospike-tools aql --host 10.0.0.173 --no-config-fileSeed: 10.0.0.173User: NoneConfig File: NoneAerospike Query ClientVersion 3.15.3.6C Client Version 4.3.11Copyright 2012-2017 Aerospike. All rights reserved.aql> insert into test.foo (PK, foo) values ('123','my string')OK, 1 record affected.
aql> select * from test.foo+-------------+| foo |+-------------+| "my string" |+-------------+1 row in set (0.126 secs)
OK
aql>
To execute aql
directly and insert a record, enter the following command:
$ docker run -ti --name aerospike-aql --rm aerospike/aerospike-tools aql -c "INSERT INTO test.demo (PK, foo, bar) VALUES ('key1', 123, 'abc')" -h 10.0.0.173 --no-config-fileINSERT INTO test.demo (PK, foo, bar) VALUES ('key1', 123, 'abc')OK, 1 record affected.
Enter the following command to run aql
and insert a record:
$ docker run -ti --name aerospike-aql --rm aerospike/aerospike-tools aql -c "explain select * from test.foo where PK='123'" -h 10.0.0.173 --no-config-fileexplain select * from test.foo where PK='123'+-------+--------------------------------------------+-----------+-----------+--------+---------+----------+----------------------------+-------------------+-------------------------+---------+| SET | DIGEST | NAMESPACE | PARTITION | STATUS | UDF | KEY_TYPE | POLICY_REPLICA | NODE | POLICY_KEY | TIMEOUT |+-------+--------------------------------------------+-----------+-----------+--------+---------+----------+----------------------------+-------------------+-------------------------+---------+| "foo" | "44E3571220664C352DFCC7EFD681920D37F414AC" | "test" | 836 | "" | "FALSE" | "STRING" | "AS_POLICY_REPLICA_MASTER" | "BB945718C270008" | "AS_POLICY_KEY_DEFAULT" | 1000 |+-------+--------------------------------------------+-----------+-----------+--------+---------+----------+----------------------------+-------------------+-------------------------+---------+1 row in set (0.001 secs)
OK
To execute aql
directly and truncate the demo
set in the test
namespace,, enter the following command:
$ docker run -ti --name aerospike-aql --rm aerospike/aerospike-tools aql -c "TRUNCATE test.demo" -h 10.0.0.173 --no-config-fileTRUNCATE test.demoOK
Aerospike log latency (asloglatency)
Enter the following command to run asloglatency
:
$ docker run -ti -v host:container --name aerospike-asloglatency —-rm aerospike/aerospike-tools asloglatency <Aerospike Log Latency Tool commands>
Example
In this example, run asloglatency
against an aerospike.log file that is located in the local /tmp
directory. The query performs the following:
- Reads a histogram and analyzes the log time from the beginning of the file against the namespace.
- Displays 10 buckets showing the 0-th and then every n-th bucket that is located on the bind mounted volume of the working
/tmp
directory.
Run the query with the following command:
$ docker run -ti -v ${PWD}/tmp:/tmp --name aerospike-asloglatency --rm aerospike/aerospike-tools asloglatency -l /tmp/aerospike.log -h read -f head -N test -n 10 -e 1Histogram : {test}-readLog : /tmp/aerospike.logFrom : 2018-05-09 00:20:02
May 09 2018 00:20:02 % > (ms)slice-to (sec) 1 2 4 8 16 32 64 128 256 512 ops/sec-------------- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ----------00:20:12 10 0.29 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 103.600:20:22 10 0.26 0.09 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 113.500:20:32 10 0.19 0.09 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 105.900:20:42 10 0.25 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 118.400:20:52 10 0.29 0.19 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 105.000:21:02 10 0.17 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 120.300:21:12 10 0.36 0.27 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 111.000:21:22 10 0.44 0.18 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 112.400:21:32 10 0.45 0.09 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 111.000:21:42 10 0.46 0.09 0.09 0.00 0.00 0.00 0.00 0.00 0.00 0.00 109.500:21:52 10 0.44 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 114.4
Aerospike backup (asbackup)
Enter the following command to run asbackup
:
$ docker run -ti -v host:container --name aerospike-asbackup —-rm aerospike/aerospike-tools asbackup <Aerospike Backup Tool commands> --host <Seed_Host_IP> --no-config-file
Example
In this example, asbackup
generates a back up that is located on the bind mounted volume of the /tmp/asbackup
directory.
For this example, run the following command:
$ docker run -ti -v ${PWD}/asbackup:/tmp/asbackup --name aerospike-asbackup --rm aerospike/aerospike-tools asbackup --namespace test --directory /tmp/asbackup -r --host 10.0.0.173 --no-config-file2018-06-21 02:18:14 GMT [INF] [ 8] Starting 100% backup of 10.0.0.173 (namespace: test, set: [all], bins: [all], after: [none], before: [none]) to /tmp/asbackup2018-06-21 02:18:14 GMT [INF] [ 8] [src/main/aerospike/as_cluster.c:124][as_cluster_add_nodes_copy] Add node BB945718C270008 10.0.0.173:30002018-06-21 02:18:14 GMT [INF] [ 8] [src/main/aerospike/as_cluster.c:124][as_cluster_add_nodes_copy] Add node BB9BC6479270008 10.0.0.171:30002018-06-21 02:18:14 GMT [INF] [ 8] Processing 2 node(s)2018-06-21 02:18:14 GMT [INF] [ 8] Node ID Objects Replication2018-06-21 02:18:14 GMT [INF] [ 8] BB945718C270008 2 22018-06-21 02:18:14 GMT [INF] [ 8] BB9BC6479270008 2 22018-06-21 02:18:14 GMT [INF] [ 8] Namespace contains 2 record(s)2018-06-21 02:18:14 GMT [INF] [ 8] Directory /tmp/asbackup prepared for backup2018-06-21 02:18:14 GMT [INF] [ 27] Starting backup for node BB9BC64792700082018-06-21 02:18:14 GMT [INF] [ 28] Starting backup for node BB945718C2700082018-06-21 02:18:14 GMT [INF] [ 27] Created new backup file /tmp/asbackup/BB9BC6479270008_00000.asb2018-06-21 02:18:14 GMT [INF] [ 28] Created new backup file /tmp/asbackup/BB945718C270008_00000.asb2018-06-21 02:18:14 GMT [INF] [ 28] Backing up 1 secondary index(es)2018-06-21 02:18:14 GMT [INF] [ 28] Backing up 1 UDF file(s)2018-06-21 02:18:14 GMT [INF] [ 27] Completed backup for node BB9BC6479270008, records: 1, size: 137 (~137 B/rec)2018-06-21 02:18:14 GMT [INF] [ 28] Completed backup for node BB945718C270008, records: 1, size: 244 (~244 B/rec)2018-06-21 02:18:15 GMT [INF] [ 26] Backed up 2 record(s), 1 secondary index(es), 1 UDF file(s) from 2 node(s), 381 byte(s) in total (~190 B/rec)
To allow for pipelines, run the following command:
- Specify
-
as the--output-file
;asbackup
writes the backup tostdout
. - Specify
-
as the--input-file
;asrestore
reads the backup fromstdin
.
$ docker run -i --name aerospike-asbackup --rm aerospike/aerospike-tools asbackup --namespace test --output-file - --host 10.0.0.173 --no-config-file | docker run -i --name aerospike-asrestore --rm aerospike/aerospike-tools asrestore --namespace test -g --host 10.0.0.173 --no-config-file --input-file -2018-06-22 03:19:02 GMT [INF] [ 8] Starting 100% backup of 10.0.0.173 (namespace: test, set: [all], bins: [all], after: [none], before: [none]) to [stdout]2018-06-22 03:19:02 GMT [INF] [ 8] Starting restore to 10.0.0.173 (bins: [all], sets: [all]) from [stdin]2018-06-22 03:19:02 GMT [INF] [ 8] [src/main/aerospike/as_cluster.c:124][as_cluster_add_nodes_copy] Add node BB945718C270008 10.0.0.173:30002018-06-22 03:19:03 GMT [INF] [ 8] [src/main/aerospike/as_cluster.c:124][as_cluster_add_nodes_copy] Add node BB9BC6479270008 10.0.0.171:30002018-06-22 03:19:03 GMT [INF] [ 8] Processing 2 node(s)2018-06-22 03:19:03 GMT [INF] [ 8] Node ID Objects Replication2018-06-22 03:19:03 GMT [INF] [ 8] Processing 2 node(s)2018-06-22 03:19:03 GMT [INF] [ 8] Restoring -2018-06-22 03:19:03 GMT [INF] [ 8] BB945718C270008 5 22018-06-22 03:19:03 GMT [INF] [ 8] BB9BC6479270008 5 22018-06-22 03:19:03 GMT [INF] [ 8] Namespace contains 5 record(s)2018-06-22 03:19:03 GMT [INF] [ 27] Starting backup for node BB945718C2700082018-06-22 03:19:03 GMT [INF] [ 28] Starting backup for node BB9BC64792700082018-06-22 03:19:03 GMT [INF] [ 27] Backing up 1 secondary index(es)2018-06-22 03:19:03 GMT [INF] [ 27] Backing up 1 UDF file(s)2018-06-22 03:19:03 GMT [INF] [ 27] Completed backup for node BB945718C270008, records: 2, size: 349 (~174 B/rec)2018-06-22 03:19:03 GMT [INF] [ 28] Completed backup for node BB9BC6479270008, records: 3, size: 315 (~105 B/rec)2018-06-22 03:19:03 GMT [INF] [ 8] Restoring 1 UDF file(s)2018-06-22 03:19:03 GMT [INF] [ 8] Restoring 1 secondary index(es)2018-06-22 03:19:03 GMT [INF] [ 8] Skipped 1 matched index(es)2018-06-22 03:19:03 GMT [INF] [ 8] Restoring records2018-06-22 03:19:04 GMT [INF] [ 26] 1 UDF file(s), 0 secondary index(es), 5 record(s) (0 KiB/s, 5 rec/s, 132 B/rec, backed off: 0)2018-06-22 03:19:04 GMT [INF] [ 26] Expired 0 : skipped 0 : inserted 5 : failed 0 (existed 0, fresher 0)2018-06-22 03:19:04 GMT [INF] [ 26] Backed up 5 record(s), 1 secondary index(es), 1 UDF file(s) from 2 node(s), 664 byte(s) in total (~132 B/rec)2018-06-22 03:19:05 GMT [INF] [ 26] 1 UDF file(s), 0 secondary index(es), 5 record(s) (0 KiB/s, 0 rec/s, 0 B/rec, backed off: 0)2018-06-22 03:19:05 GMT [INF] [ 26] Expired 0 : skipped 0 : inserted 5 : failed 0 (existed 0, fresher 0)
Aerospike restore (asrestore)
To run asrestore
, enter the following:
$ docker run -ti -v host:container --name aerospike-asrestore —-rm aerospike/aerospike-tools asrestore <Aerospike Restore Tool commands> --host <Seed_Host_IP> --no-config-file
Example
In this example, run asrestore
to generate a restore from a backup located on the bind mounted volume of the /tmp/asbackup
directory and then clear the /tmp/asbackup
directory.
$ docker run -ti -v ${PWD}/asbackup:/tmp/asbackup --name aerospike-asrestore --rm aerospike/aerospike-tools asrestore --namespace test --directory /tmp/asbackup -g --host 10.0.0.173 --no-config-file2018-06-21 02:19:25 GMT [INF] [ 8] Starting restore to 10.0.0.173 (bins: [all], sets: [all]) from /tmp/asbackup2018-06-21 02:19:26 GMT [INF] [ 8] Processing 2 node(s)2018-06-21 02:19:26 GMT [INF] [ 8] Found 2 backup file(s) in /tmp/asbackup2018-06-21 02:19:26 GMT [INF] [ 8] Opened backup file /tmp/asbackup/BB945718C270008_00000.asb2018-06-21 02:19:26 GMT [INF] [ 8] Opened backup file /tmp/asbackup/BB9BC6479270008_00000.asb2018-06-21 02:19:26 GMT [INF] [ 8] Restoring 1 UDF file(s)2018-06-21 02:19:26 GMT [INF] [ 8] Restoring 1 secondary index(es)2018-06-21 02:19:26 GMT [INF] [ 8] Skipped 1 matched index(es)2018-06-21 02:19:26 GMT [INF] [ 8] Restoring records2018-06-21 02:19:26 GMT [INF] [ 27] Restoring /tmp/asbackup/BB945718C270008_00000.asb2018-06-21 02:19:26 GMT [INF] [ 28] Restoring /tmp/asbackup/BB9BC6479270008_00000.asb2018-06-21 02:19:26 GMT [INF] [ 28] Opened backup file /tmp/asbackup/BB9BC6479270008_00000.asb2018-06-21 02:19:26 GMT [INF] [ 27] Opened backup file /tmp/asbackup/BB945718C270008_00000.asb2018-06-21 02:19:27 GMT [INF] [ 26] 1 UDF file(s), 0 secondary index(es), 2 record(s) (0 KiB/s, 2 rec/s, 190 B/rec, backed off: 0)2018-06-21 02:19:27 GMT [INF] [ 26] Expired 0 : skipped 0 : inserted 2 : failed 0 (existed 0, fresher 0)2018-06-21 02:19:27 GMT [INF] [ 26] 100% complete, ~0s remaining
Source Code
The source code is available on GitHub.