Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 356
Amparo Avatar asked Oct 15 '14 09:10

Amparo


People also ask

Does MongoDB use Migrations?

The Live Migration Service is a free service that we host and operate to make it simple to migrate your database to MongoDB Atlas. This service works by making an initial copy of the data from your source database, and watching for any changes so that it stays in sync until you are ready to cut over.

What is MongoDB used for?

MongoDB is a document database used to build highly available and scalable internet applications. With its flexible schema approach, it's popular with development teams using agile methodologies.


1 Answers

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.

like image 173
Anshu Prateek Avatar answered Sep 23 '22 10:09

Anshu Prateek