Sign InTry Free

Data Migration Cluster Operations

This document introduces the DM cluster operations and considerations when you administer a DM cluster using DM-Ansible.

Start a cluster

Run the following command to start all the components (including DM-master, DM-worker and the monitoring component) of the whole DM cluster:

ansible-playbook start.yml

Stop a cluster

Run the following command to stop all the components (including DM-master, DM-worker and the monitoring component) of the whole DM cluster:

ansible-playbook stop.yml

Restart cluster components

You need to update the DM cluster components in the following cases:

  • You want to upgrade the component version.
  • A serious bug occurs and you have to restart the component for temporary recovery.
  • The machine that the DM cluster is located in is restarted for certain reasons.

Restarting considerations

This sections describes the considerations that you need to know when you restart DM components.

Restarting DM-worker considerations

In the process of full data loading:

For the SQL files during full data import, DM uses the downstream database to record the checkpoint information, and DM-worker records the subtask information in the local meta file. When DM-worker is restarted, it checks the checkpoint information and the subtask information in the local record, and the running task before restarting recovers the data migration automatically.

In the process of incremental data replication:

For the binlog during incremental data import, DM uses the downstream database to record the checkpoint information, and enables the safe mode within the first 5 minutes after the replication task is started or recovered.

  • Sharding DDL statements migration is not enabled

    If the sharding DDL statements migration is not enabled in the task running on DM-worker, when DM-worker is restarted, it checks the checkpoint information and the subtask information in the local record, and the running task before restarting recovers the data migration automatically.

  • Sharding DDL statements migration is enabled

    • When DM is migrating the sharding DDL statements, if DM-worker successfully executes (or skips) the sharding DDL binlog event, then the checkpoints of all tables related to sharding DDL in the DM-worker are updated to the position after the binlog event corresponding to the DDL statement.

    • When DM-worker is restarted before or after migrating sharding DDL statements, it recovers the data migration automatically according to the checkpoint information and the subtask information in the local record.

    • When DM-worker is restarted during the process of migrating sharding DDL statements, the issue might occur that the owner (one of DM-worker instances) has executed the DDL statement and successfully changed the downstream database table schema, while other DM-worker instances are restarted but fail to skip the DDL statement and update the checkpoints.

      At this time, DM tries again to migrate these DDL statements that are not skipped. However, the restarted DM-worker instances will be blocked at the position of the binlog event corresponding to the DDL binlog event, because the DM-worker instance that is not restarted has executed to the place after this DDL binlog event.

      To resolve this issue, follow the steps described in Handle Sharding DDL Locks Manually.

Conclusion: Try to avoid restarting DM-worker in the process of sharding DDL migration.

Restarting DM-master considerations

The information maintained by DM-master includes the following two major types, and these data is not being persisted when you restart DM-master.

  • The corresponding relationship between the task and DM-worker
  • The sharding DDL lock related information

When DM-master is restarted, it automatically requests the task information from each DM-worker instance, rebuilds the corresponding relationship between the task and DM-worker, and also re-fetches the sharding DDL information from each DM-worker instance. So the corresponding DDL lock can be correctly rebuilt and the sharding DDL lock can be automatically resolved.

Restart DM-worker

To restart the DM-worker component, you can use either of the following two approaches:

  • Perform a rolling update on DM-worker

    ansible-playbook rolling_update.yml --tags=dm-worker
  • Stop DM-worker first and then restart it

    ansible-playbook stop.yml --tags=dm-worker && ansible-playbook start.yml --tags=dm-worker

Restart DM-master

To restart the DM-master component, you can use either of the following two approaches:

  • Perform a rolling update on DM-master

    ansible-playbook rolling_update.yml --tags=dm-master
  • Stop DM-master first and then restart it

    ansible-playbook stop.yml --tags=dm-master && ansible-playbook start.yml --tags=dm-master

Upgrade the component version

  1. Download the DM binary file.

    1. Delete the existing file in the downloads directory.

      cd /home/tidb/dm-ansible && rm -rf downloads
    2. Use Playbook to download the version of DM binary file as specified in inventory.ini, and replace the existing binary in the /home/tidb/dm-ansible/resource/bin/ directory with it automatically.

      ansible-playbook local_prepare.yml
  2. Use DM-Ansible to perform the rolling update.

    1. Perform a rolling update on the DM-worker instance:

      ansible-playbook rolling_update.yml --tags=dm-worker
    2. Perform a rolling update on the DM-master instance:

      ansible-playbook rolling_update.yml --tags=dm-master
    3. Upgrade dmctl:

      ansible-playbook rolling_update.yml --tags=dmctl
    4. Perform a rolling update on DM-worker, DM-master and dmctl:

      ansible-playbook rolling_update.yml

Add a DM-worker instance

Assuming that you want to add a DM-worker instance on the 172.16.10.74 machine and the alias of the instance is dm_worker3, perform the following steps:

  1. Configure the SSH mutual trust and sudo rules on the Control Machine.

    1. Refer to Configure the SSH mutual trust and sudo rules on the Control Machine, log in to the Control Machine using the tidb user account and add 172.16.10.74 to the [servers] section of the hosts.ini file.

      cd /home/tidb/dm-ansible && vi hosts.ini
      [servers] 172.16.10.74 [all:vars] username = tidb
    2. Run the following command and enter the root user password for deploying 172.16.10.74 according to the prompt.

      ansible-playbook -i hosts.ini create_users.yml -u root -k

      This step creates a tidb user on the 172.16.10.74 machine, and configures sudo rules and the SSH mutual trust between the Control Machine and the 172.16.10.74 machine.

  2. Edit the inventory.ini file and add the new DM-worker instance dm_worker3.

    [dm_worker_servers] dm_worker1 source_id="mysql-replica-01" ansible_host=172.16.10.72 server_id=101 mysql_host=172.16.10.81 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 dm_worker2 source_id="mysql-replica-02" ansible_host=172.16.10.73 server_id=102 mysql_host=172.16.10.82 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 dm_worker3 source_id="mysql-replica-03" ansible_host=172.16.10.74 server_id=103 mysql_host=172.16.10.83 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306
  3. Deploy the new DM-worker instance.

    ansible-playbook deploy.yml --tags=dm-worker -l dm_worker3
  4. Start the new DM-worker instance.

    ansible-playbook start.yml --tags=dm-worker -l dm_worker3
  5. Configure and restart the DM-master service.

    ansible-playbook rolling_update.yml --tags=dm-master
  6. Configure and restart the Prometheus service.

    ansible-playbook rolling_update_monitor.yml --tags=prometheus

Remove a DM-worker instance

Assuming that you want to remove the dm_worker3 instance, perform the following steps:

  1. Stop the DM-worker instance that you need to remove.

    ansible-playbook stop.yml --tags=dm-worker -l dm_worker3
  2. Edit the inventory.ini file and comment or delete the line where the dm_worker3 instance exists.

    [dm_worker_servers] dm_worker1 source_id="mysql-replica-01" ansible_host=172.16.10.72 server_id=101 mysql_host=172.16.10.81 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 dm_worker2 source_id="mysql-replica-02" ansible_host=172.16.10.73 server_id=102 mysql_host=172.16.10.82 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 # dm_worker3 source_id="mysql-replica-03" ansible_host=172.16.10.74 server_id=103 mysql_host=172.16.10.83 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 # Comment or delete this line
  3. Configure and restart the DM-master service.

    ansible-playbook rolling_update.yml --tags=dm-master
  4. Configure and restart the Prometheus service.

    ansible-playbook rolling_update_monitor.yml --tags=prometheus

Replace/migrate a DM-master instance

Assuming that the 172.16.10.71 machine needs to be maintained or this machine breaks down, and you need to migrate the DM-master instance from 172.16.10.71 to 172.16.10.80, perform the following steps:

  1. Configure the SSH mutual trust and sudo rules on the Control machine.

    1. Refer to Configure the SSH mutual trust and sudo rules on the Control Machine, log in to the Control Machine using the tidb user account, and add 172.16.10.80 to the [servers] section of the hosts.ini file.

      cd /home/tidb/dm-ansible && vi hosts.ini
      [servers] 172.16.10.80 [all:vars] username = tidb
    2. Run the following command and enter the root user password for deploying 172.16.10.80 according to the prompt.

      ansible-playbook -i hosts.ini create_users.yml -u root -k

      This step creates the tidb user account on 172.16.10.80, configures the sudo rules and the SSH mutual trust between the Control Machine and the 172.16.10.80 machine.

  2. Stop the DM-master instance that you need to replace.

    ansible-playbook stop.yml --tags=dm-master
  3. Edit the inventory.ini file, comment or delete the line where the DM-master instance that you want to replace exists, and add the information of the new DM-master instance.

    [dm_master_servers] # dm_master ansible_host=172.16.10.71 dm_master ansible_host=172.16.10.80
  4. Deploy the new DM-master instance.

    ansible-playbook deploy.yml --tags=dm-master
  5. Start the new DM-master instance.

    ansible-playbook start.yml --tags=dm-master
  6. Update the dmctl configuration file.

    ansible-playbook rolling_update.yml --tags=dmctl

Replace/migrate a DM-worker instance

Assuming that the 172.16.10.72 machine needs to be maintained or this machine breaks down, and you need to migrate dm_worker1 from 172.16.10.72 to 172.16.10.75, perform the following steps:

  1. Configure the SSH mutual trust and sudo rules on the Control Machine.

    1. Refer to Configure the SSH mutual trust and sudo rules on the Control Machine, log in to the Control Machine using the tidb user account, and add 172.16.10.75 to the [servers] section of the hosts.ini file.

      cd /home/tidb/dm-ansible && vi hosts.ini
      [servers] 172.16.10.75 [all:vars] username = tidb
    2. Run the following command and enter the root user password for deploying 172.16.10.75 according to the prompt.

      ansible-playbook -i hosts.ini create_users.yml -u root -k

      This step creates the tidb user account on 172.16.10.75, and configures the sudo rules and the SSH mutual trust between the Control Machine and the 172.16.10.75 machine.

  2. Stop the DM-worker instance that you need to replace.

    ansible-playbook stop.yml --tags=dm-worker -l dm_worker1
  3. Edit the inventory.ini file and add the new DM-worker instance.

    Edit the inventory.ini file, comment or delete the line where the original dm_worker1 instance (172.16.10.72) that you want to replace exists, and add the information for the new dm_worker1 instance (172.16.10.75).

    To pull the relay log from a different binlog position or GTID Sets, you also need to update corresponding {relay_binlog_name} or {relay_binlog_gtid}.

    [dm_worker_servers] dm_worker1 source_id="mysql-replica-01" ansible_host=172.16.10.75 server_id=101 mysql_host=172.16.10.81 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 # dm_worker1 source_id="mysql-replica-01" ansible_host=172.16.10.72 server_id=101 mysql_host=172.16.10.81 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306 dm_worker2 source_id="mysql-replica-02" ansible_host=172.16.10.73 server_id=102 mysql_host=172.16.10.82 mysql_user=root mysql_password='VjX8cEeTX+qcvZ3bPaO4h0C80pe/1aU=' mysql_port=3306
  4. Deploy the new DM-worker instance.

    ansible-playbook deploy.yml --tags=dm-worker -l dm_worker1
  5. Migrate the relay log.

    • If the 172.16.10.72 machine is still accessible, you can directly copy all data from the {dm_worker_relay_dir} directory to the corresponding directory of the new DM-worker instance.

    • If 172.16.10.72 machine is no longer accessible, you may need to manually recover data such as the relay log directories in Step 9.

  6. Start the new DM-worker instance.

    ansible-playbook start.yml --tags=dm-worker -l dm_worker1
  7. Configure and restart the DM-master service.

    ansible-playbook rolling_update.yml --tags=dm-master
  8. Configure and restart the Prometheus service.

    ansible-playbook rolling_update_monitor.yml --tags=prometheus
  9. Start and verify data migration task.

    Execute start-task command to start data migration task. If no error is reported, then DM-worker migration completes successfully. If the following error is reported, you need to manually fix the relay log directory.

    fail to initial unit Sync of subtask test-task : UUID suffix 000002 with UUIDs [1ddbf6d3-d3b2-11e9-a4e9-0242ac140003.000001] not found

    This error occurs because the upstream MySQL of the DM-worker instance to be replaced has been switched. You can fix this by following these steps:

    1. Use stop-task to stop data migration task.

    2. Use ansible-playbook stop.yml --tags=dm-worker -l dm_worker1 to stop the DM-worker instance.

    3. Update the suffix of the subdirectory of the relay log, such as renaming 1ddbf6d3-d3b2-11e9-a4e9-0242ac140003.000001 to 1ddbf6d3-d3b2-11e9-a4e9-0242ac140003.000002.

    4. Update the index file server-uuid.index in the subdirectory of the relay log, such as changing 1ddbf6d3-d3b2-11e9-a4e9-0242ac140003.000001 to 1ddbf6d3-d3b2-11e9-a4e9-0242ac140003.000002.

    5. Use ansible-playbook start.yml --tags=dm-worker -l dm_worker1 to start the DM-worker instance.

    6. Restart and verify data migration task.

Download PDF
Playground
New
One-stop & interactive experience of TiDB's capabilities WITHOUT registration.
Products
TiDB
TiDB Dedicated
TiDB Serverless
Pricing
Get Demo
Get Started
© 2024 PingCAP. All Rights Reserved.
Privacy Policy.