This is an automated email from the ASF dual-hosted git repository.
diwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push:
new 536aa27523f [load](datasource) change title level for snowflake doc
(#2307)
536aa27523f is described below
commit 536aa27523f1fce73254bd6ed66455efe254858c
Author: wudi <[email protected]>
AuthorDate: Mon Apr 21 17:27:47 2025 +0800
[load](datasource) change title level for snowflake doc (#2307)
## Versions
- [x] dev
- [x] 3.0
- [x] 2.1
- [ ] 2.0
## Languages
- [x] Chinese
- [x] English
## Docs Checklist
- [ ] Checked by AI
- [ ] Test Cases Built
---
docs/data-operate/import/data-source/snowflake.md | 14 ++++++--------
.../current/data-operate/import/data-source/snowflake.md | 14 ++++++--------
.../data-operate/import/data-source/snowflake.md | 14 ++++++--------
.../data-operate/import/data-source/snowflake.md | 14 ++++++--------
.../data-operate/import/data-source/snowflake.md | 14 ++++++--------
.../data-operate/import/data-source/snowflake.md | 14 ++++++--------
6 files changed, 36 insertions(+), 48 deletions(-)
diff --git a/docs/data-operate/import/data-source/snowflake.md
b/docs/data-operate/import/data-source/snowflake.md
index 0d334d0bc6a..78a3509e848 100644
--- a/docs/data-operate/import/data-source/snowflake.md
+++ b/docs/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "en"
}
---
@@ -24,16 +24,14 @@ specific language governing permissions and limitations
under the License.
-->
-# Overview
-
During the migration from Snowflake to Doris, object storage is typically used
as an intermediate medium. The core process is as follows: First, export data
to object storage using Snowflake's [COPY
INTO](https://docs.snowflake.com/en/user-guide/data-unload-overview) statement.
Then, use Doris' S3 Load feature to read data from the object storage and load
it into Doris. For details, refer to [S3 Load](./amazon-s3.md).
-# Considerations
+## Considerations
Before migration, select Doris' [data
model](../../../table-design/data-model/overview.md),
[partitioning](../../../table-design/data-partitioning/dynamic-partitioning.md),
and [bucketing](../../../table-design/data-partitioning/data-bucketing.md)
strategies based on Snowflake's table structure. For more table creation
strategies, refer to [Load Best Practices](../load-best-practices.md).
-# Data type mapping
+## Data type mapping
| SnowFlake | Doris | Comment
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -55,7 +53,7 @@ Before migration, select Doris' [data
model](../../../table-design/data-model/ov
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. Create Table
+## 1. Create Table
To migrate a Snowflake table to Doris, first create the Doris table.
@@ -102,7 +100,7 @@ PROPERTIES (
);
```
-# 2. Export Data from Snowflake
+## 2. Export Data from Snowflake
1. **Export to S3 Parquet Files via COPY INTO**
@@ -127,7 +125,7 @@ PROPERTIES (

-# 3. Load Data to Doris
+## 3. Load Data to Doris
S3 Load is an asynchronous data load method. After execution, Doris actively
pulls data from the data source. The data source supports object storage
compatible with the S3 protocol, including ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md),etc)
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/snowflake.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/snowflake.md
index 56902318342..dd98ceda422 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/snowflake.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "zh-CN"
}
---
@@ -24,15 +24,13 @@ specific language governing permissions and limitations
under the License.
-->
-# 概述
-
在迁移 SnowFlake 的过程中,通常需要借助对象存储作为中间媒介。核心流程如下:首先通过 Snowflake 的 [COPY
INTO](https://docs.snowflake.cn/zh/guides-overview-unloading-data)
语句将数据导出到对象存储;再利用 Doris 的 S3 Load 功能从对象存储中读取数据并导入到 Doris 中,具体可参考 [S3
导入](./amazon-s3.md)。
-# 注意事项
+## 注意事项
在迁移之前,需要根据 SnowFlake 的表结构选择 Doris
的[数据模型](../../../table-design/data-model/overview.md),以及[分区](../../../table-design/data-partitioning/dynamic-partitioning.md)和[分桶](../../../table-design/data-partitioning/data-bucketing.md)的策略,更多创建表策略可参考[导入最佳实践](../load-best-practices.md)。
-# 数据类型映射
+## 数据类型映射
| SnowFlake | Doris | 备注
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -54,7 +52,7 @@ under the License.
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. 创建表
+## 1. 创建表
在迁移 SnowFlake 表到 Doris 中的时候,需要先创建 Doris 表。
@@ -101,7 +99,7 @@ PROPERTIES (
);
```
-# 2. 导出 SnowFlake 数据
+## 2. 导出 SnowFlake 数据
1. **通过 COPY INFO 方式导出到 S3 Parquet 格式的文件**
@@ -126,7 +124,7 @@ PROPERTIES (

-# 3. 导入数据到 Doris
+## 3. 导入数据到 Doris
导入使用 S3 Load 进行导入,**S3 Load 是一种异步的数据导入方式,执行后 Doris 会主动从数据源拉取数据,**数据源支持兼容 S3
协议的对象存储,包括 ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md)等)。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/snowflake.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/snowflake.md
index 56902318342..dd98ceda422 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/snowflake.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "zh-CN"
}
---
@@ -24,15 +24,13 @@ specific language governing permissions and limitations
under the License.
-->
-# 概述
-
在迁移 SnowFlake 的过程中,通常需要借助对象存储作为中间媒介。核心流程如下:首先通过 Snowflake 的 [COPY
INTO](https://docs.snowflake.cn/zh/guides-overview-unloading-data)
语句将数据导出到对象存储;再利用 Doris 的 S3 Load 功能从对象存储中读取数据并导入到 Doris 中,具体可参考 [S3
导入](./amazon-s3.md)。
-# 注意事项
+## 注意事项
在迁移之前,需要根据 SnowFlake 的表结构选择 Doris
的[数据模型](../../../table-design/data-model/overview.md),以及[分区](../../../table-design/data-partitioning/dynamic-partitioning.md)和[分桶](../../../table-design/data-partitioning/data-bucketing.md)的策略,更多创建表策略可参考[导入最佳实践](../load-best-practices.md)。
-# 数据类型映射
+## 数据类型映射
| SnowFlake | Doris | 备注
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -54,7 +52,7 @@ under the License.
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. 创建表
+## 1. 创建表
在迁移 SnowFlake 表到 Doris 中的时候,需要先创建 Doris 表。
@@ -101,7 +99,7 @@ PROPERTIES (
);
```
-# 2. 导出 SnowFlake 数据
+## 2. 导出 SnowFlake 数据
1. **通过 COPY INFO 方式导出到 S3 Parquet 格式的文件**
@@ -126,7 +124,7 @@ PROPERTIES (

-# 3. 导入数据到 Doris
+## 3. 导入数据到 Doris
导入使用 S3 Load 进行导入,**S3 Load 是一种异步的数据导入方式,执行后 Doris 会主动从数据源拉取数据,**数据源支持兼容 S3
协议的对象存储,包括 ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md)等)。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/data-source/snowflake.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/data-source/snowflake.md
index 56902318342..dd98ceda422 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/data-source/snowflake.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "zh-CN"
}
---
@@ -24,15 +24,13 @@ specific language governing permissions and limitations
under the License.
-->
-# 概述
-
在迁移 SnowFlake 的过程中,通常需要借助对象存储作为中间媒介。核心流程如下:首先通过 Snowflake 的 [COPY
INTO](https://docs.snowflake.cn/zh/guides-overview-unloading-data)
语句将数据导出到对象存储;再利用 Doris 的 S3 Load 功能从对象存储中读取数据并导入到 Doris 中,具体可参考 [S3
导入](./amazon-s3.md)。
-# 注意事项
+## 注意事项
在迁移之前,需要根据 SnowFlake 的表结构选择 Doris
的[数据模型](../../../table-design/data-model/overview.md),以及[分区](../../../table-design/data-partitioning/dynamic-partitioning.md)和[分桶](../../../table-design/data-partitioning/data-bucketing.md)的策略,更多创建表策略可参考[导入最佳实践](../load-best-practices.md)。
-# 数据类型映射
+## 数据类型映射
| SnowFlake | Doris | 备注
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -54,7 +52,7 @@ under the License.
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. 创建表
+## 1. 创建表
在迁移 SnowFlake 表到 Doris 中的时候,需要先创建 Doris 表。
@@ -101,7 +99,7 @@ PROPERTIES (
);
```
-# 2. 导出 SnowFlake 数据
+## 2. 导出 SnowFlake 数据
1. **通过 COPY INFO 方式导出到 S3 Parquet 格式的文件**
@@ -126,7 +124,7 @@ PROPERTIES (

-# 3. 导入数据到 Doris
+## 3. 导入数据到 Doris
导入使用 S3 Load 进行导入,**S3 Load 是一种异步的数据导入方式,执行后 Doris 会主动从数据源拉取数据,**数据源支持兼容 S3
协议的对象存储,包括 ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md)等)。
diff --git
a/versioned_docs/version-2.1/data-operate/import/data-source/snowflake.md
b/versioned_docs/version-2.1/data-operate/import/data-source/snowflake.md
index 0d334d0bc6a..78a3509e848 100644
--- a/versioned_docs/version-2.1/data-operate/import/data-source/snowflake.md
+++ b/versioned_docs/version-2.1/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "en"
}
---
@@ -24,16 +24,14 @@ specific language governing permissions and limitations
under the License.
-->
-# Overview
-
During the migration from Snowflake to Doris, object storage is typically used
as an intermediate medium. The core process is as follows: First, export data
to object storage using Snowflake's [COPY
INTO](https://docs.snowflake.com/en/user-guide/data-unload-overview) statement.
Then, use Doris' S3 Load feature to read data from the object storage and load
it into Doris. For details, refer to [S3 Load](./amazon-s3.md).
-# Considerations
+## Considerations
Before migration, select Doris' [data
model](../../../table-design/data-model/overview.md),
[partitioning](../../../table-design/data-partitioning/dynamic-partitioning.md),
and [bucketing](../../../table-design/data-partitioning/data-bucketing.md)
strategies based on Snowflake's table structure. For more table creation
strategies, refer to [Load Best Practices](../load-best-practices.md).
-# Data type mapping
+## Data type mapping
| SnowFlake | Doris | Comment
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -55,7 +53,7 @@ Before migration, select Doris' [data
model](../../../table-design/data-model/ov
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. Create Table
+## 1. Create Table
To migrate a Snowflake table to Doris, first create the Doris table.
@@ -102,7 +100,7 @@ PROPERTIES (
);
```
-# 2. Export Data from Snowflake
+## 2. Export Data from Snowflake
1. **Export to S3 Parquet Files via COPY INTO**
@@ -127,7 +125,7 @@ PROPERTIES (

-# 3. Load Data to Doris
+## 3. Load Data to Doris
S3 Load is an asynchronous data load method. After execution, Doris actively
pulls data from the data source. The data source supports object storage
compatible with the S3 protocol, including ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md),etc)
diff --git
a/versioned_docs/version-3.0/data-operate/import/data-source/snowflake.md
b/versioned_docs/version-3.0/data-operate/import/data-source/snowflake.md
index 0d334d0bc6a..78a3509e848 100644
--- a/versioned_docs/version-3.0/data-operate/import/data-source/snowflake.md
+++ b/versioned_docs/version-3.0/data-operate/import/data-source/snowflake.md
@@ -1,6 +1,6 @@
---
{
- "title": "snowflake",
+ "title": "Snowflake",
"language": "en"
}
---
@@ -24,16 +24,14 @@ specific language governing permissions and limitations
under the License.
-->
-# Overview
-
During the migration from Snowflake to Doris, object storage is typically used
as an intermediate medium. The core process is as follows: First, export data
to object storage using Snowflake's [COPY
INTO](https://docs.snowflake.com/en/user-guide/data-unload-overview) statement.
Then, use Doris' S3 Load feature to read data from the object storage and load
it into Doris. For details, refer to [S3 Load](./amazon-s3.md).
-# Considerations
+## Considerations
Before migration, select Doris' [data
model](../../../table-design/data-model/overview.md),
[partitioning](../../../table-design/data-partitioning/dynamic-partitioning.md),
and [bucketing](../../../table-design/data-partitioning/data-bucketing.md)
strategies based on Snowflake's table structure. For more table creation
strategies, refer to [Load Best Practices](../load-best-practices.md).
-# Data type mapping
+## Data type mapping
| SnowFlake | Doris | Comment
|
| ------------------------------------------------ | -------------- |
-------------------------------------------------- |
@@ -55,7 +53,7 @@ Before migration, select Doris' [data
model](../../../table-design/data-model/ov
| OBJECT | JSON |
|
| GEOGRAPHY/GEOMETRY | STRING |
|
-# 1. Create Table
+## 1. Create Table
To migrate a Snowflake table to Doris, first create the Doris table.
@@ -102,7 +100,7 @@ PROPERTIES (
);
```
-# 2. Export Data from Snowflake
+## 2. Export Data from Snowflake
1. **Export to S3 Parquet Files via COPY INTO**
@@ -127,7 +125,7 @@ PROPERTIES (

-# 3. Load Data to Doris
+## 3. Load Data to Doris
S3 Load is an asynchronous data load method. After execution, Doris actively
pulls data from the data source. The data source supports object storage
compatible with the S3 protocol, including ([AWS
S3](./amazon-s3.md),[GCS](./google-cloud-storage.md),[AZURE](./azure-storage.md),etc)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]