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

I would like to transfer data from MySQL (or mongodb) to Aerospike, does anyone know if there is any tool for this?

+5
source share
2 answers

Aerospike provides something like a csv bootloader.

https://github.com/aerospike/aerospike-loader

So, you can play with mysqldump data, process the dumped file to create csv in accordance with the accepted format of the aerospace loader, and then load the data into aerospace.

+7
source

There is a simple python script that I developed. I use it for my projects, as we move all our databases from MySQL to MongoDB. After a minute, he migrates around 1 Lach. Migrating MySQL to MongoDB

-1
source

Source: https://habr.com/ru/post/1204720/


All Articles