How to insert bulk data in Membase Server 1.6 using some client tool

I am using Membase Server 1.6.5-win64 . I need to save 400 million rows from a database. Right now I have a C # .Net windows application that performs parallel tasks for writing to a server. What are my best options for bulk uploading data as quickly as possible in Membase Server using any existing tools. Can I use some csv / other format that can just read the data and store in membase key value pairs? Suggest.

My key values ​​are in string format. I have a machine with an 8-core processor and 12 GB of RAM .

+3
source share
1 answer

Since Membase 1.6.5 uses sqlite3.7 to save data, you can convert the database files to sqlite db files. After that, you can use the mbrestore tool from membase to load data into membase.

+1
source

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


All Articles