-
Notifications
You must be signed in to change notification settings - Fork 688
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issues of weekly meeting (#6048)
- Loading branch information
1 parent
1327ee8
commit 6e10f3f
Showing
24 changed files
with
110 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
data-migration/aurora/increment.md → data-migration/aurora/increment-aurora.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Migrate from Amazon Aurora MySQL to TiDB | ||
summary: Learn how to migrate full data from Amazon Aurora MySQL to TiDB. | ||
--- | ||
|
||
# Overview of migration from Aurora to TiDB | ||
|
||
This document introduces how to migrate full data from Amazon Aurora MySQL to TiDB. | ||
|
||
[Dumpling](https://github.com/pingcap/dumpling) exports data stored in TiDB/MySQL as SQL or CSV data files and can be used to make a logical full backup or export. | ||
|
||
[Lightning](/tidb-lightning/tidb-lightning-overview.md) is a tool used for fast full import of large amounts of data into a TiDB cluster. | ||
|
||
[Data Migration](https://github.com/pingcap/dm) (DM) is an data migration task management platform, supports the full data migration and incremental data replication into TiDB. | ||
|
||
Using Aurora's existing snapshot mechanism is the most convenient way, but beacuse [DM](https://github.com/pingcap/dm) does not yet support the parquet format, so we need to use [Lightning](https://docs.pingcap.com/tidb/stable/tidb-lightning-overview) for full data import first, and then use [DM](https://github.com/pingcap/dm) for incremental data synchronization. | ||
|
||
*** | ||
|
||
## Topics | ||
|
||
- [Migrate from Aurora snapshot to TiDB](/data-migration/aurora/from-snapshot.md) | ||
- [Incrementally synchronize data to TiDB](/data-migration/aurora/increment-aurora.md) |
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: | ||
summary: | ||
--- | ||
# How to migrate from AWS to TiDB | ||
|
||
TODO: quick instruction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: | ||
summary: | ||
--- | ||
# How to migrate from Google to TiDB | ||
|
||
TODO: quick instruction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: | ||
summary: | ||
--- |
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: | ||
summary: | ||
--- | ||
# How to migrate from CSV file to TiDB | ||
|
||
TODO: quick instruction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: | ||
summary: | ||
--- |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: | ||
summary: | ||
--- | ||
# How to migrate from SQL file to TiDB | ||
|
||
TODO: quick instruction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
data-migration/mysql/increment.md → data-migration/mysql/increment-mysql.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: Migrate from MySQL to TiDB | ||
summary: Learn how to migrate full data from MySQL to TiDB. | ||
--- | ||
|
||
# Overview of migration from MySQL to TiDB | ||
|
||
This document introduces how to migrate full data from MySQL to TiDB. | ||
|
||
[Dumpling](https://github.com/pingcap/dumpling) exports data stored in TiDB/MySQL as SQL or CSV data files and can be used to make a logical full backup or export. | ||
|
||
[Lightning](/tidb-lightning/tidb-lightning-overview.md) is a tool used for fast full import of large amounts of data into a TiDB cluster. | ||
|
||
[Data Migration](https://github.com/pingcap/dm) (DM) is an data migration task management platform, supports the full data migration and incremental data replication into TiDB. | ||
|
||
It is recommended to use [Dumpling](https://github.com/pingcap/dumpling) and [Lightning](/tidb-lightning/tidb-lightning-overview.md) in large data import scenarios, [DM](https://github.com/pingcap/dm) in small and incremental data synchronization scenarios because of the data import speed of DM is not fast. | ||
|
||
## Topics | ||
|
||
- [MySQL ≥ 1TB](/data-migration/mysql/huge-data.md) | ||
- [MySQL < 1TB](/data-migration/mysql/small-data.md) | ||
- [Incrementally synchronize data to TiDB](/data-migration/mysql/increment-mysql.md) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
--- | ||
title: | ||
summary: | ||
--- | ||
# Incrementally synchronize data from MySQL to TiDB | ||
|
||
TODO: quick instruction of DM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: | ||
summary: | ||
--- |