Reputation: 824
I would like to migrate data from MySQL (or mongodb) to Aerospike, anyone knows if exists any tool to do that?
Upvotes: 5
Views: 2304
Reputation: 21
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
Upvotes: -1
Reputation: 3055
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.
Upvotes: 7