title | summary | category |
---|---|---|
DM-worker Introduction |
Learn the features of DM-worker. |
reference |
DM-worker is a tool used to replicate data from MySQL/MariaDB to TiDB.
It has the following features:
- Acts as a slave of any MySQL or MariaDB instance
- Reads the binlog events from MySQL/MariaDB and persists them to the local storage
- A single DM-worker supports replicating the data of one MySQL/MariaDB instance to multiple TiDB instances
- Multiple DM-workers support replicating the data of multiple MySQL/MariaDB instances to one TiDB instance
A DM-worker task contains multiple logic units, including relay log, Dumper, Loader, and binlog replication.
The relay log persistently stores the binlog data from the upstream MySQL/MariaDB and provides the feature of accessing binlog events for the binlog replication.
Its rationale and features are similar to the slave relay log of MySQL. For details, see The Slave Relay Log.
Dumper dumps the full data from the upstream MySQL/MariaDB to the local disk.
Loader reads the files of Dumper and then loads these files to the downstream TiDB.
Binlog replication/Syncer reads the binlog events of the relay log, transforms these events to SQL statements, and then applies these statements to the downstream TiDB.
This section describes the upstream and downstream database users' privileges required by DM-worker, and the user privileges required by the respective processing unit.
The upstream database (MySQL/MariaDB) user must have the following privileges:
Privilege | Scope |
---|---|
SELECT |
Tables |
RELOAD |
Global |
REPLICATION SLAVE |
Global |
REPLICATION CLIENT |
Global |
If you need to replicate the data from db1
to TiDB, execute the following GRANT
statement:
GRANT RELOAD,REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'your_user'@'your_wildcard_of_host'
GRANT SELECT ON db1.* TO 'your_user'@'your_wildcard_of_host';
If you also need to replicate the data from other databases into TiDB, make sure the same privileges are granted to the user of the respective databases.
The downstream database (TiDB) user must have the following privileges:
Privilege | Scope |
---|---|
SELECT |
Tables |
INSERT |
Tables |
UPDATE |
Tables |
DELETE |
Tables |
CREATE |
Databases, tables |
DROP |
Databases, tables |
ALTER |
Tables |
INDEX |
Tables |
Execute the following GRANT
statement for the databases or tables that you need to replicate:
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER,INDEX ON db.table TO 'your_user'@'your_wildcard_of_host';
Processing unit | Minimal upstream (MySQL/MariaDB) privilege | Minimal downstream (TiDB) privilege | Minimal system privilege |
---|---|---|---|
Relay log | REPLICATION SLAVE (reads the binlog)REPLICATION CLIENT (show master status , show slave status ) |
NULL | Read/Write local files |
Dumper | SELECT RELOAD (flushes tables with Read lock and unlocks tables) |
NULL | Write local files |
Loader | NULL | SELECT (Query the checkpoint history)CREATE (creates a database/table)DELETE (deletes checkpoint)INSERT (Inserts the Dump data) |
Read/Write local files |
Binlog replication | REPLICATION SLAVE (reads the binlog)REPLICATION CLIENT (show master status , show slave status ) |
SELECT (shows the index and column)INSERT (DML)UPDATE (DML)DELETE (DML)CREATE (creates a database/table)DROP (drops databases/tables)ALTER (alters a table)INDEX (creates/drops an index) |
Read/Write local files |
Note:
These privileges are not immutable and they change as the request changes.