Loader is a data import tool to load data to TiDB.
Since tools like mysqldump will take us days to migrate massive amounts of data, we used the mydumper/myloader suite to multi-thread export and import data. During the process, we found that mydumper works well. However, as myloader lacks functions of error retry and savepoint, it is inconvenient for us to use. Therefore, we developed loader, which reads the output data files of mydumper and imports data to TiDB through the MySQL protocol.
Multi-thread import data
Support table level concurrent import and scattered hot spot write
Support concurrent import of a single large table and scattered hot spot write
Support mydumper data format
Support error retry
Support savepoint
Improve the speed of importing data through system variable
Note:
- Do not import the
mysql
system database from the MySQL instance to the downstream TiDB instance.- If mydumper uses the
-m
parameter, the data is exported without the table structure and the loader can not import the data.- If you use the default
checkpoint-schema
parameter, after importing the data of a database, rundrop database tidb_loader
before you begin to import the next database.- It is recommended to specify the
checkpoint-schema = "tidb_loader"
parameter when importing data.
-L string: the log level setting, which can be set as debug, info, warn, error, fatal (default: "info")
-P int: the port of TiDB (default: 4000)
-V boolean: prints version and exit
-c string: config file
-checkpoint-schema string: the database name of checkpoint. In the execution process, loader will constantly update this database. After recovering from an interruption, loader will get the process of the last run through this database. (default: "tidb_loader")
-d string: the storage directory of data that need to import (default: "./")
-h string: the host of TiDB (default: "127.0.0.1")
-p string: the account and password of TiDB
-pprof-addr string: the pprof address of Loader. It tunes the performance of Loader (default: ":10084")
-t int: the number of thread,increase this as TiKV nodes increase (default: 16)
-u string: the user name of TiDB (default: "root")
Apart from command line parameters, you can also use configuration files. The format is shown as below:
# Loader log level, which can be set as "debug", "info", "warn", "error" and "fatal" (default: "info")
log-level = "info"
# Loader log file
log-file = "loader.log"
# Directory of the dump to import (default: "./")
dir = "./"
# Loader pprof address, used to tune the performance of Loader (default: "127.0.0.1:10084")
pprof-addr = "127.0.0.1:10084"
# The checkpoint data is saved to TiDB, and the schema name is defined here.
checkpoint-schema = "tidb_loader"
# Number of threads restoring concurrently for worker pool (default: 16). Each worker restore one file at a time.
pool-size = 16
# The target database information
[db]
host = "127.0.0.1"
user = "root"
password = ""
port = 4000
# The sharding synchronising rules support wildcharacter.
# 1. The asterisk character (*, also called "star") matches zero or more characters,
# for example, "doc*" matches "doc" and "document" but not "dodo";
# asterisk character must be in the end of the wildcard word,
# and there is only one asterisk in one wildcard word.
# 2. The question mark '?' matches exactly one character.
# [[route-rules]]
# pattern-schema = "shard_db_*"
# pattern-table = "shard_table_*"
# target-schema = "shard_db"
# target-table = "shard_table"
Command line parameter:
./bin/loader -d ./test -h 127.0.0.1 -u root -P 4000
Or use configuration file “config.toml”:
./bin/loader -c=config.toml
Loader supports importing data from sharded tables into one table within one database according to the route-rules. Before synchronising, check the following items:
route-rules
syntax.To combine tables, start the route-rules
parameter in the configuration file of Loader:
pattern-schema
and target-schema
.pattern-table
and target-table
are NULL, the table name is not combined or converted.[[route-rules]]
pattern-schema = "example_db"
pattern-table = "table_*"
target-schema = "example_db"
target-table = "table"
What’s on this page