Skip to content

tarantool/mysql-tarantool-replication

 
 

Repository files navigation

Build Status

MySQL slave replication daemon for Tarantool


Key features:

  • Listens to a MySQL server as a replication client and translates incoming replication events into Tarantool space operations.
  • Handles a mapping between MySQL tables and Tarantool spaces.

Note: MySQL binary log should be in the row-based format. Will not work with a MariaDB master. Tested with MySQL 5.6 and lower. Not tested with MySQL 5.7 with new replication protocol improvements.

About Tarantool

Contents


Compilation and installation


Build from source

bash
git clone https://github.com/tarantool/mysql-tarantool-replication.git mysql_tarantool-replication
cd mysql-tarantool-replication
git submodule update --init --recursive
cmake .
make

Back to contents

MySQL configuration


  1. Set the binlog_format to ROW.
    That can be done by editing the MySQL configuration file at /etc/mysql/my.cnf:
binlog_format = ROW
  1. Create a user for replication, for example:
CREATE USER <username>@'<host>' IDENTIFIED BY '<password>';
  1. Grant replication privileges to the new user:
GRANT REPLICATION CLIENT ON '<db>'.'<table>' TO <username>@'<domain>';
GRANT REPLICATION SLAVE ON '<db>'.'<table>' TO <username>@'<domain>';
GRANT SELECT ON '<db>'.'<table>' TO <username>@'<domain>';

Note: you can use an asterisk (*) as a wildcard instead of specifying a database and a table.

  1. Flush the changes:
FLUSH PRIVILEGES

Back to contents

Tarantool configuration


  1. Create one space for replication daemon purposes.
    This space will store the current replication state.

  2. Create more spaces to store replicated data.

  3. Create a user for the replication daemon and enable read/write operations on target spaces.

Back to contents

Replicator configuration


  1. Set up MySQL connection parameters: host, port, login and password.

  2. Set up Tarantool connection options: host, port, login and password.

  3. Set binlog_pos_space to the space id created for the replication state and binlog_pos_key to identify the corresponding tuple in a given space.

Mappings


Replicator can map MySQL tables to one or more Tarantool spaces. Each mapping item contains the names of a database and a table, a list of replicated columns, a space id (if the space id is the same as for the previous item, it is left blank) and space key fields numbers.

Multiple MySQL tables can be mapped to one Tarantool space, and the first table in the mapping is primary. In this case, each subsequent mapping item adds its columns to the end of the list of replicated columns for the space. When a non-primary table deletes its row, the corresponding fields in the tuple are reset to NULL. When a row is inserted into a non-primary table, the corresponding tuple is updated if it already exists or inserted if not, and all the fields before the field mapping are set to NULL.

Note: the configuration file contains a Spaces section, where you can set default values for tuples - for example, for indexed fields.

Back to contents

About

A standalone MySQL -> Tarantool replication daemon

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 88.0%
  • Shell 7.8%
  • CMake 3.2%
  • Lua 1.0%