DEV Community

WangXiangUSTC
WangXiangUSTC

Posted on

go-mysql-mongodb: replicate data from MySQL to MongoDB

MySQL to MongoDB
This year’s Spring Festival holiday is relatively idle, so I organized my open source project go-mysql-mongodb.

This tool is used to synchronize MySQL data to MongoDB. It has been developed for a long time, but there has been no maintenance. A few days ago, I suddenly received an email from a user asking about the problems encountered during use. I realized that this tool is still used by some people. I took advantage of the holiday to maintain it, and hope that I can help more people in the future.

Origins

This project goes back to 2017. At that time, my job was mainly to investigate various big data platforms, and I needed to synchronize MySQL data to databases such as Elasticsearch and MongoDB.

tungsten-replicator

I searched for some solutions on Google. At first, I used tungsten-replicator to synchronize MySQL data to MongoDB. This tool is powerful and used for data synchronization between multiple heterogeneous databases. For example, the following is the topology diagram of tungsten-replicator synchronizing MySQL/Oracle data to heterogeneous databases:

Topologies: Heterogeneous Operation<br>

Workflow:

  1. Deploy a Replicator service on the Master and Slave servers respectively.

  2. Master Replicator pulls binlog/CDC data from Master DB and converts it into a common THL format data.

  3. Master Replicator transfers THL data to Slave Replicator.

  4. Slave Replicator converts THL data into SQL and synchronizes it to Slave DB according to the type of Slave DB.

This tool is relatively mature, you can see their Usage Document, a total of more than 300 pages, various scenarios have instructions. But there are mainly these problems in the process of use:

  1. The structure is too heavy. As you can see from the above example, you need to deploy one on the Master and Slave servers, and you need to save THL data, which will take up a lot of disks.

  2. The deployment and configuration are more complicated. It supports very rich functions, but its powerful functions also require complex configurations to support. But in fact, we only need to use a small part of the functions.

  3. Development language (not counting the problem of this tool). This tool was developed in Java, and my group at the time mainly used Python and Golang to develop. If there are new requirements or bugs that need to be fixed, maintenance will be more difficult.

go-mysql-elasticsearch

later I needed to synchronize MySQL data to Elasticsearch, I found another tool go-mysql-elasticsearch, try it After a while, I found that this tool is relatively lightweight and simple to configure and deploy. The workflow of this tool is as follows:

  1. Use mysqldump to export the full data of MySQL.

  2. Import the full amount of data into Elasticsearch.

  3. Pull MySQL binlog data from the binlog postion position of the full data.

  4. Convert binlog to Elasticsearch format data, and synchronize to Elasticsearch in the form of RESTful API.

It can be seen that this tool is relatively lightweight, and only needs to deploy one service for the synchronization of a MySQL instance; in addition, it is developed in the Golang language, which I am familiar with. I can also implement it myself when I encounter new requirements during use.

go-mysql-mongodb

After successfully applied go-mysql-elasticsearch to the quasi-production environment, I got the idea of ​​replacing tungsten-replicator.

MongoDB and Elasticsearch are similar, both belong to NoSQL, and the stored data is all document type. So I reused most of the logic in go-mysql-elasticsearch, just modify the code of the Elasticsearch client in the code to MongoDB and it can basically run. In this way, the project go-mysql-mongodb was formed.

go-mysql-mongodb function

As go-mysql-mongodb mainly refers to go-mysql-elasticsearch, the function is basically the same.

To configure the data source,

you must set which tables to synchronize MySQL to MongoDB. Example configuration:

[[source]]
schema = "test"
tables = ["t1", t2]

[[source]]
schema = "test_1"
tables = ["t3", t4]
Enter fullscreen mode Exit fullscreen mode

It also supports some simple expressions, such as:

[[source]]
schema = "test"
tables = ["test_river_[0-9 ]{4}"]
Enter fullscreen mode Exit fullscreen mode

In this way, tables like test_river_0001 and test_river_0002 in the test library are selected.

Conversion rules

go-mysql-mongodb supports synchronizing tables in MySQL to collections specified in MongoDB, and also support conversion of field names in tables, for example:

[[rule]]
schema = "test"
table = " t1"
database = "t"
collection = "t"

    [rule.field]
    mysql = "title"
    mongodb = "my_title"
Enter fullscreen mode Exit fullscreen mode

This configuration will synchronize the table test.t1 in MySQL to collection t.t in MongoDB, the title field in the table will also be renamed to my_title.

Filter fields

go-mysql-mongodb support to synchronize only the fields specified in the table, for example:

[[rule]]
schema = "test"
table = "tfilter"
database = "test"
collection = "tfilter"

# Only sync following columns
filter = ["id", "name"]
Enter fullscreen mode Exit fullscreen mode

This configuration will only synchronize the data in the two columns of id and name in the table test.tfilter.

For more functions, please refer to the README of the project.

go-mysql-mongodb Status Quo

This project is still under development. The basic functions should be fine, but more tests are needed to ensure it.

In addition, we need to pay attention to the changes of go-mysql-elasticsearch and bring some fixes to go-mysql-mongodb in time.

Hope this gadget can help you. If you encounter problems during use, you can raise an issue, or you can directly email me wx347249478 at gmail.com.

Top comments (0)