Skip to content

Commit a72ecfb

Browse files
authored
remove docs/en/guides/41-migrate, redirect to the tutorials (#2274)
* remove docs/en/guides/41-migrate, redirect to the tutorials * fix broken link
1 parent ef221de commit a72ecfb

File tree

8 files changed

+30
-116
lines changed

8 files changed

+30
-116
lines changed

docs/en/guides/40-load-data/02-load-db/flink-cdc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
title: Flink CDC
33
---
44

5-
See [Flink CDC](/guides/migrate/mysql#flink-cdc).
5+
See [Flink CDC](/tutorials/migrate/migrating-from-mysql-with-flink-cdc).

docs/en/guides/41-migrate/_category_.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/en/guides/41-migrate/index.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/en/guides/41-migrate/mysql.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

docs/en/guides/41-migrate/snowflake.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

docs/en/tutorials/migrate/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ Select your source database and migration requirements to find the most suitable
88

99
## MySQL to Databend
1010

11+
Databend supports two main migration approaches from MySQL:
12+
13+
| Migration Approach | Recommended Tool | Supported MySQL versions |
14+
|--------------------------|------------------------------|--------------------------|
15+
| Batch Loading | db-archiver | All MySQL versions |
16+
| Continuous Sync with CDC | Debezium | All MySQL versions |
17+
1118
### When to Choose Real-time Migration (CDC)
1219

1320
> **Recommendation**: For real-time migration, we recommend **Debezium** as the default choice.
@@ -37,6 +44,12 @@ Select your source database and migration requirements to find the most suitable
3744

3845
## Snowflake to Databend
3946

47+
Migrating from Snowflake to Databend involves a three-step process:
48+
49+
1. **Configuring Snowflake Storage Integration for Amazon S3**: Set up secure access between Snowflake and S3
50+
2. **Preparing & Exporting Data to Amazon S3**: Export your Snowflake data to S3 in Parquet format
51+
3. **Loading Data into Databend**: Import the data from S3 into Databend
52+
4053
### When to Choose Snowflake Migration
4154

4255
| Tool | Capabilities | Best For | Choose When |

docs/en/tutorials/migrate/migrating-from-snowflake.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ sidebar_label: Snowflake → Databend
66

77
> **Capabilities**: Full Load
88
9+
This tutorial walks you through the process of migrating your data from Snowflake to Databend. The migration involves exporting data from Snowflake to an Amazon S3 bucket and then loading it into Databend. The process is broken down into three main steps:
10+
11+
![alt text](@site/static/img/load/snowflake-databend.png)
12+
913
In this tutorial, we'll walk you through the process of exporting data from Snowflake in Parquet format to an Amazon S3 bucket, and then loading it into Databend Cloud.
1014

1115
## Before You Start

docusaurus.config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,18 @@ const config: Config = {
221221
{
222222
from: '/sql/sql-functions/ai-functions/ai-cosine-distance',
223223
to: '/sql/sql-functions/vector-distance-functions/vector-cosine-distance/'
224+
},
225+
{
226+
from: '/guides/migrate/',
227+
to: '/tutorials/migrate/'
228+
},
229+
{
230+
from: '/guides/migrate/mysql',
231+
to: '/tutorials/migrate/migrating-from-mysql-with-db-archiver'
232+
},
233+
{
234+
from: '/guides/migrate/snowflake',
235+
to: '/tutorials/migrate/migrating-from-snowflake'
224236
}
225237
],
226238
createRedirects(existingPath) {

0 commit comments

Comments
 (0)