大規模なデータセットをMySQLからTiDBに移行する
移行するデータ量が少ない場合は、完全移行と増分レプリケーションの両方でDMを使用してデータを移行する簡単に実行できます。ただし、DM は低速 (30~50 GiB/h) でデータをインポートするため、データ量が多い場合は移行に時間がかかる可能性があります。このドキュメントの「大規模なデータセット」は通常、約 1 TiB 以上のデータを意味します。
このドキュメントでは、 DumplingとTiDB Lightningを使用して完全な移行を実行する方法について説明します。TiDB TiDB Lightning 物理インポートモード 、最大 500 GiB/h の速度でデータをインポートできます。この速度は、ハードウェア構成、テーブル スキーマ、インデックスの数など、さまざまな要因によって影響を受けることに注意してください。完全な移行が完了したら、DM を使用して増分データを複製できます。
前提条件
- DMをインストールする 。
- DumplingとTiDB Lightningをインストールする 。
- DMに必要なソースデータベースとターゲットデータベースの権限を付与します 。
- TiDB Lightningに必要なターゲットデータベース権限を付与します 。
- Dumplingに必要なソースデータベース権限を付与する 。
リソース要件
オペレーティング システム: このドキュメントの例では、新しい CentOS 7 インスタンスを使用します。仮想マシンは、ローカル ホストまたはクラウドにデプロイできます。TiDB TiDB Lightning は、デフォルトで必要なだけの CPU リソースを消費するため、専用サーバーにデプロイすることをお勧めします。これが不可能な場合は、他の TiDB コンポーネントと一緒に単一のサーバーにデプロイし (たとえば、 tikv-server
)、次にregion-concurrency
を設定してTiDB Lightningからの CPU 使用量を制限できます。通常、サイズは論理 CPU の 75% に設定できます。
メモリと CPU : TiDB Lightning は大量のリソースを消費するため、64 GiB を超えるメモリと 32 を超える CPU コアを割り当てることをお勧めします。最高のパフォーマンスを得るには、CPU コアとメモリ(GiB) の比率が 1:2 より大きいことを確認してください。
ディスクスペース:
- Dumpling には、データ ソース全体を保存できる (またはエクスポートするすべてのアップストリーム テーブルを保存できる) ディスク領域が必要です。SSD が推奨されます。必要な領域を計算するには、 下流のstorageスペース要件参照してください。
- インポート中、 TiDB Lightning はソートされたキーと値のペアを保存するために一時的なスペースを必要とします。ディスク スペースは、データ ソースからの最大の単一テーブルを保持するのに十分な大きさである必要があります。
- 全体のデータ量が大きい場合は、アップストリームのbinlogのstorage時間を長くすることができます。これは、増分レプリケーション中にバイナリログが失われないようにするためです。
注: MySQL からDumplingによってエクスポートされる正確なデータ量を計算することは困難ですが、次の SQL ステートメントを使用してinformation_schema.tables
テーブルのDATA_LENGTH
フィールドを要約することで、データ量を見積もることができます。
-- Calculate the size of all schemas
SELECT
TABLE_SCHEMA,
FORMAT_BYTES(SUM(DATA_LENGTH)) AS 'Data Size',
FORMAT_BYTES(SUM(INDEX_LENGTH)) 'Index Size'
FROM
information_schema.tables
GROUP BY
TABLE_SCHEMA;
-- Calculate the 5 largest tables
SELECT
TABLE_NAME,
TABLE_SCHEMA,
FORMAT_BYTES(SUM(data_length)) AS 'Data Size',
FORMAT_BYTES(SUM(index_length)) AS 'Index Size',
FORMAT_BYTES(SUM(data_length+index_length)) AS 'Total Size'
FROM
information_schema.tables
GROUP BY
TABLE_NAME,
TABLE_SCHEMA
ORDER BY
SUM(DATA_LENGTH+INDEX_LENGTH) DESC
LIMIT
5;
ターゲット TiKV クラスターのディスク容量
ターゲット TiKV クラスターには、インポートされたデータを格納するのに十分なディスク容量が必要です。 標準的なハードウェア要件に加えて、ターゲット TiKV クラスターのstorage容量は、データ ソースのサイズ x レプリカの数x 2よりも大きくする必要があります。たとえば、クラスターがデフォルトで 3 つのレプリカを使用する場合、ターゲット TiKV クラスターには、データ ソースのサイズの 6 倍よりも大きいstorage容量が必要です。次の理由により、式にはx 2
含まれます。
- インデックスは余分なスペースを占める可能性があります。
- RocksDB には空間増幅効果があります。
ステップ1. MySQLからすべてのデータをエクスポートする
次のコマンドを実行して、MySQL からすべてのデータをエクスポートします。
tiup dumpling -h ${ip} -P 3306 -u root -t 16 -r 200000 -F 256MiB -B my_db1 -f 'my_db1.table[12]' -o 's3://my-bucket/sql-backup'Dumpling はデフォルトで SQL ファイルにデータをエクスポートします。1 オプションを追加することで
--filetype
別のファイル形式を指定できます。上記で使用したパラメータは以下の通りです。Dumplingのパラメータの詳細についてはDumplingの概要を参照してください。
パラメーター 説明 -u
または--user
MySQL ユーザー -p
または--password
MySQL ユーザーパスワード -P
または--port
MySQL ポート -h
または--host
MySQL IP アドレス -t
または--thread
エクスポートに使用されるスレッドの数 -o
または--output
エクスポートされたファイルを保存するディレクトリ。ローカルパスまたは外部storageURIサポートします。 -r
または--row
1ファイルあたりの最大行数 -F
単一ファイルの最大サイズ (MiB 単位)。推奨値: 256 MiB。 - B
または--database
エクスポートするデータベースを指定します -f
または--filter
パターンに一致するテーブルをエクスポートします。構文についてはテーブルフィルターを参照してください。 ${data-path}
、エクスポートされたすべてのアップストリーム テーブルを保存できるスペースがあることを確認してください。必要なスペースを計算するには、 下流のstorageスペース要件を参照してください。大きなテーブルがすべてのスペースを消費してエクスポートが中断されるのを防ぐには、-F
オプションを使用して 1 つのファイルのサイズを制限することを強くお勧めします。${data-path}
ディレクトリのmetadata
ファイルをビュー。これは、Dumpling によって生成されたメタデータ ファイルです。手順 3 の増分レプリケーションに必要なbinlog位置情報を記録します。SHOW MASTER STATUS: Log: mysql-bin.000004 Pos: 109227 GTID:
ステップ2. TiDBに全データをインポートする
tidb-lightning.toml
構成ファイルを作成します。[lightning] # log. level = "info" file = "tidb-lightning.log" [tikv-importer] # "local": Default backend. The local backend is recommended to import large volumes of data (1 TiB or more). During the import, the target TiDB cluster cannot provide any service. # "tidb": The "tidb" backend is recommended to import data less than 1 TiB. During the import, the target TiDB cluster can provide service normally. For more information on the backends, refer to https://docs.pingcap.com/tidb/stable/tidb-lightning-backends. backend = "local" # Sets the temporary storage directory for the sorted Key-Value files. The directory must be empty, and the storage space must be greater than the size of the dataset to be imported. For better import performance, it is recommended to use a directory different from `data-source-dir` and use flash storage, which can use I/O exclusively. sorted-kv-dir = "${sorted-kv-dir}" [mydumper] # The data source directory. The same directory where Dumpling exports data in "Step 1. Export all data from MySQL". data-source-dir = "${data-path}" # A local path or S3 path. For example, 's3://my-bucket/sql-backup'. [tidb] # The target TiDB cluster information. host = ${host} # e.g.: 172.16.32.1 port = ${port} # e.g.: 4000 user = "${user_name}" # e.g.: "root" password = "${password}" # e.g.: "rootroot" status-port = ${status-port} # During the import, TiDB Lightning needs to obtain the table schema information from the TiDB status port. e.g.: 10080 pd-addr = "${ip}:${port}" # The address of the PD cluster, e.g.: 172.16.31.3:2379. TiDB Lightning obtains some information from PD. When backend = "local", you must specify status-port and pd-addr correctly. Otherwise, the import will be abnormal.TiDB Lightning構成の詳細については、 TiDB Lightningコンフィグレーションを参照してください。
tidb-lightning
実行してインポートを開始します。コマンドラインでプログラムを直接起動すると、SIGHUP シグナルを受け取った後にプロセスが予期せず終了する可能性があります。この場合、nohup
またはscreen
ツールを使用してプログラムを実行することをお勧めします。例:S3 からデータをインポートする場合は、S3storageパスにアクセスできる SecretKey と AccessKey を環境変数としてTiDB Lightningノードに渡します
~/.aws/credentials
から資格情報を読み取ることもできます。export AWS_ACCESS_KEY_ID=${access_key} export AWS_SECRET_ACCESS_KEY=${secret_key} nohup tiup tidb-lightning -config tidb-lightning.toml > nohup.out 2>&1 &インポートが開始されたら、次のいずれかの方法でインポートの進行状況を確認できます。
grep
ログにキーワードprogress
記録されます。デフォルトでは、進行状況は 5 分ごとに更新されます。- 監視ダッシュボードの進捗状況を確認します。
- TiDB Lightningウェブインターフェースの進捗状況を確認します。
TiDB Lightning はインポートを完了すると、自動的に終了します。最後の行の
tidb-lightning.log
にthe whole procedure completed
が含まれているかどうかを確認します。含まれている場合は、インポートは成功です。含まれていない場合は、インポートでエラーが発生します。エラー メッセージの指示に従ってエラーに対処してください。
注記:
インポートが成功したかどうかに関係なく、ログの最後の行には
tidb lightning exit
が表示されます。これは、 TiDB Lightning が正常に終了したことを意味しますが、必ずしもインポートが成功したことを意味するわけではありません。
インポートに失敗した場合は、トラブルシューティングについてはTiDB LightningFAQを参照してください。
ステップ3. 増分データをTiDBに複製する
データソースを追加する
次のように
source1.yaml
ファイルを作成します。# Must be unique. source-id: "mysql-01" # Configures whether DM-worker uses the global transaction identifier (GTID) to pull binlogs. To enable this mode, the upstream MySQL must also enable GTID. If the upstream MySQL service is configured to switch master between different nodes automatically, GTID mode is required. enable-gtid: true from: host: "${host}" # e.g.: 172.16.10.81 user: "root" password: "${password}" # Supported but not recommended to use a plaintext password. It is recommended to use `dmctl encrypt` to encrypt the plaintext password before using it. port: 3306次のコマンドを実行して、
tiup dmctl
を使用してデータ ソース構成を DM クラスターにロードします。tiup dmctl --master-addr ${advertise-addr} operate-source create source1.yaml上記のコマンドで使用されるパラメータは次のように記述されます。
パラメータ 説明 --master-addr
dmctl
が接続されるクラスタ内の任意の DM マスターの{advertise-addr}
、例: 172.16.10.71:8261operate-source create
データ ソースを DM クラスターにロードします。
レプリケーションタスクを追加する
task.yaml
ファイルを編集します。増分レプリケーション モードと各データ ソースの開始点を構成します。name: task-test # Task name. Must be globally unique. task-mode: incremental # Task mode. The "incremental" mode only performs incremental data replication. # Configures the target TiDB database. target-database: # The target database instance. host: "${host}" # e.g.: 127.0.0.1 port: 4000 user: "root" password: "${password}" # It is recommended to use `dmctl encrypt` to encrypt the plaintext password before using it. # Use block and allow lists to specify the tables to be replicated. block-allow-list: # The collection of filtering rules that matches the tables in the source database instance. If the DM version is earlier than v2.0.0-beta.2, use black-white-list. bw-rule-1: # The block-allow-list configuration item ID. do-dbs: ["${db-name}"] # Name of databases to be replicated. # Configures the data source. mysql-instances: - source-id: "mysql-01" # Data source ID, i.e., source-id in source1.yaml block-allow-list: "bw-rule-1" # You can use the block-allow-list configuration above. # syncer-config-name: "global" # You can use the syncers incremental data configuration below. meta: # The position where the binlog replication starts when `task-mode` is `incremental` and the downstream database checkpoint does not exist. If the checkpoint exists, the checkpoint is used. If neither the `meta` configuration item nor the downstream database checkpoint exists, the migration starts from the latest binlog position of the upstream. # binlog-name: "mysql-bin.000004" # The binlog position recorded in "Step 1. Export all data from MySQL". If the upstream database service is configured to switch master between different nodes automatically, GTID mode is required. # binlog-pos: 109227 binlog-gtid: "09bec856-ba95-11ea-850a-58f2b4af5188:1-9" # (Optional) If you need to incrementally replicate data that has already been migrated in the full data migration, you need to enable the safe mode to avoid the incremental data replication error. # This scenario is common in the following case: the full migration data does not belong to the data source's consistency snapshot, and after that, DM starts to replicate incremental data from a position earlier than the full migration. # syncers: # The running configurations of the sync processing unit. # global: # Configuration name. # safe-mode: true # If this field is set to true, DM changes INSERT of the data source to REPLACE for the target database, and changes UPDATE of the data source to DELETE and REPLACE for the target database. This is to ensure that when the table schema contains a primary key or unique index, DML statements can be imported repeatedly. In the first minute of starting or resuming an incremental replication task, DM automatically enables the safe mode.上記の YAML は、移行タスクに必要な最小限の構成です。その他の構成項目については、 DM 高度なタスクコンフィグレーションファイルを参照してください。
移行タスクを開始する前に、エラーの可能性を減らすために、
check-task
コマンドを実行して、構成が DM の要件を満たしていることを確認することをお勧めします。tiup dmctl --master-addr ${advertise-addr} check-task task.yaml次のコマンドを実行して移行タスクを開始します。
tiup dmctl --master-addr ${advertise-addr} start-task task.yaml上記のコマンドで使用されるパラメータは次のように記述されます。
パラメータ 説明 --master-addr
dmctl
が接続されるクラスタ内の任意の DM マスターの {advertise-addr}、例: 172.16.10.71:8261start-task
移行タスクを開始します。 タスクの開始に失敗した場合は、プロンプト メッセージを確認し、構成を修正してください。その後、上記のコマンドを再実行してタスクを開始できます。
移行タスクのステータスを確認する
DM クラスターに進行中の移行タスクがあるかどうかを確認し、タスクのステータスを表示するには、 tiup dmctl
使用してquery-status
コマンドを実行します。
tiup dmctl --master-addr ${advertise-addr} query-status ${task-name}
結果の詳細な解釈についてはクエリステータスを参照してください。
タスクを監視してログを表示する
移行タスクの履歴ステータスやその他の内部メトリックを表示するには、次の手順を実行します。
TiUPを使用して DM をデプロイしたときに Prometheus、Alertmanager、および Grafana をデプロイしていた場合は、デプロイ中に指定した IP アドレスとポートを使用して Grafana にアクセスできます。その後、DM ダッシュボードを選択して、DM 関連の監視メトリックを表示できます。
DM が実行中の場合、DM-worker、DM-master、dmctl は関連情報をログに出力します。これらのコンポーネントのログ ディレクトリは次のとおりです。
- DM-master: DM-master プロセス パラメータ
--log-file
で指定されます。TiUPを使用して DM を展開する場合、ログ ディレクトリはデフォルトで/dm-deploy/dm-master-8261/log/
なります。 - DM-worker: DM-worker プロセス パラメータ
--log-file
で指定されます。TiUPを使用して DM をデプロイする場合、ログ ディレクトリはデフォルトで/dm-deploy/dm-worker-8262/log/
になります。