I would like to migrate data from MySQL (or mongodb) to Aerospike, anyone knows if exists any tool to do that?
Asked
Active
Viewed 2,278 times
2 Answers
7
Aerospike provides something like a csv loader.
https://github.com/aerospike/aerospike-loader
So you can play around with mysqldump data , process the dumped file to create a csv as per the accepted format of aerospike-loader and then load the data into aerospike.

Anshu Prateek
- 3,011
- 1
- 18
- 33
-1
There is a simple python script I have developed. I have been using it for my projects since we are moving all our databases from MySQL to MongoDB. It migrates around 1 Lakh rows in a minute. Migrate MySQL to MongoDB

anirudh
- 21
- 1
- 5
-
Question is about Mysql/Mongo to Aerospike, not Mysql to Mongodb – Anshu Prateek Mar 03 '15 at 05:13