Amparo
Amparo

Reputation: 824

Is there any tool to migrate data from MySQL (or mongodb) to Aerospike?

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

Answers (2)

anirudh
anirudh

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

Anshu Prateek
Anshu Prateek

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

Related Questions