Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migration: add ticdc in migration overview #10099

Merged
merged 2 commits into from
Aug 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions migration-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ This document gives an overview of the data migration solutions that you can use

- Data replication between TiDB clusters. TiDB supports backup and restore. This feature can initialize a snapshot in an existing TiDB cluster to a new TiDB cluster.

- Incremental replication between TiDB clusters. TiDB supports disaster recovery between homogeneous databases to ensure eventual data consistency of primary and secondary databases after a disaster event. It works only when both primary and secondary clusters are TiDB.

You might choose different migration solutions according to the database type, deployment location, application data size, and application needs. The following sections introduce some common migration scenarios, and you can refer to these sections to determine the most suitable solution according to your needs.

## Migrate data from Aurora MySQL to TiDB
Expand Down Expand Up @@ -51,6 +53,10 @@ If the data size of the sharded tables is large (for example, larger than 1 TiB)
- [Migrate data from CSV files to TiDB](/migrate-from-csv-files-to-tidb.md)
- [Migrate data from SQL files to TiDB](/migrate-from-sql-files-to-tidb.md)

## Incremental replication between TiDB clusters

You can use TiCDC for incremental data replication between TiDB clusters. For details, refer to [TiCDC Overview](/ticdc/ticdc-overview.md).

## More advanced migration solutions

The following features can improve the migration process and might meet more needs in your application.
Expand Down