How to parse aerospike backup file to regenerate d

2019-06-28 09:03发布

问题:

In the backup file there are a lot of encoded values. How do I get back the original data.
For example there is

+ d q+LsiGs1gD9duJDbzQSXytajtCY=

which is of the format ["+"] [SP] ["d"] [SP] [{digest}] [LF] where q+LsiGs1gD9duJDbzQSXytajtCY= is the key digest. How would the get the primary key from this?

Also Map and List values are represented as opaque byte values. How do we restore the original Map and List?

I would currently need to do all this if I wanted to make a CSV dump out of the backup.

回答1:

The tool asbackup is an open source tool, as is asrestore. The file format is described in the repo aerospike/aerospike-tools-backup on GitHub.

Alternatively, you could use the Kafka connector to move data from Aerospike to another database via Kafka.

The easiest way to do what you're looking for is still to write a program that scans the target namespace, and parses each record into a csv format. You can use predicate filtering to only get records whose last-update-time is greater than a specific timestamp, giving you the progressive backup you want. See the PredExp class of the Java client and its examples.



标签: aerospike