This is an automated email from the ASF dual-hosted git repository.

vinoth pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 2008fa3  [DOC] Move cloud to a separate page (#1743)
2008fa3 is described below

commit 2008fa37f7c4913c2f52e4bf80b0c881096844a1
Author: Gary Li <[email protected]>
AuthorDate: Thu Jun 18 22:02:41 2020 -0700

    [DOC] Move cloud to a separate page (#1743)
---
 docs/_data/navigation.yml                 |  8 ++++++++
 docs/_docs/0.5.3/2_4_configurations.cn.md | 13 -------------
 docs/_docs/0.5.3/2_4_configurations.md    | 14 --------------
 docs/_docs/0.5.3/2_7_cloud.cn.md          | 22 ++++++++++++++++++++++
 docs/_docs/0.5.3/2_7_cloud.md             | 22 ++++++++++++++++++++++
 docs/_docs/2_4_configurations.cn.md       | 14 +-------------
 docs/_docs/2_4_configurations.md          | 15 +--------------
 docs/_docs/2_7_cloud.cn.md                | 22 ++++++++++++++++++++++
 docs/_docs/2_7_cloud.md                   | 22 ++++++++++++++++++++++
 9 files changed, 98 insertions(+), 54 deletions(-)

diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml
index f8f7b81..08ff527 100644
--- a/docs/_data/navigation.yml
+++ b/docs/_data/navigation.yml
@@ -40,6 +40,8 @@ docs:
         url: /docs/performance.html
       - title: "Deployment"
         url: /docs/deployment.html
+      - title: "Cloud Storage"
+        url: /docs/cloud.html
   - title: INFO
     children:
       - title: "Docs Versions"
@@ -87,6 +89,8 @@ cn_docs:
         url: /cn/docs/performance.html
       - title: "管理"
         url: /cn/docs/deployment.html
+      - title: "云储存"
+        url: /cn/docs/cloud.html
   - title: 其他信息
     children:
       - title: "文档版本"
@@ -326,6 +330,8 @@ cn_docs:
         url: /docs/0.5.3-performance.html
       - title: "Deployment"
         url: /docs/0.5.3-deployment.html
+      - title: "Cloud Storage"
+        url: /docs/0.5.3-cloud.html
   - title: INFO
     children:
       - title: "Docs Versions"
@@ -360,6 +366,8 @@ cn_docs:
         url: /cn/docs/0.5.3-performance.html
       - title: "管理"
         url: /cn/docs/0.5.3-deployment.html
+      - title: "云储存"
+        url: /cn/docs/0.5.3-cloud.html
   - title: 其他信息
     children:
       - title: "文档版本"
diff --git a/docs/_docs/0.5.3/2_4_configurations.cn.md 
b/docs/_docs/0.5.3/2_4_configurations.cn.md
index e3d2425..0b1f1a5 100644
--- a/docs/_docs/0.5.3/2_4_configurations.cn.md
+++ b/docs/_docs/0.5.3/2_4_configurations.cn.md
@@ -21,19 +21,6 @@ language: cn
    RecordPayload定义了如何根据传入的新记录和存储的旧记录来产生新值以进行插入更新。
    Hudi提供了诸如`OverwriteWithLatestAvroPayload`的默认实现,该实现仅使用最新或最后写入的记录来更新存储。
    在数据源和WriteClient级别,都可以将其重写为扩展`HoodieRecordPayload`类的自定义类。
- 
-## 与云存储连接
-
-无论使用RDD/WriteClient API还是数据源,以下信息都有助于配置对云存储的访问。
-
- * [AWS S3](/cn/docs/0.5.3-s3_hoodie.html) <br/>
-   S3和Hudi协同工作所需的配置。
- * [Google Cloud Storage](/cn/docs/0.5.3-gcs_hoodie.html) <br/>
-   GCS和Hudi协同工作所需的配置。
- * [Alibaba Cloud OSS](/cn/docs/0.5.3-oss_hoodie.html) <br/>
-   阿里云和Hudi协同工作所需的配置。
- * [Microsoft Azure](/cn/docs/0.5.3-azure_hoodie.html) <br/>
-   Azure和Hudi协同工作所需的配置。
 
 ## Spark数据源配置 {#spark-datasource}
 
diff --git a/docs/_docs/0.5.3/2_4_configurations.md 
b/docs/_docs/0.5.3/2_4_configurations.md
index 65c0a15..a51d451 100644
--- a/docs/_docs/0.5.3/2_4_configurations.md
+++ b/docs/_docs/0.5.3/2_4_configurations.md
@@ -17,20 +17,6 @@ At a high level, you can control behaviour at few levels.
 - **[RecordPayload Config](#PAYLOAD_CLASS_OPT_KEY)** : This is the lowest 
level of customization offered by Hudi. Record payloads define how to produce 
new values to upsert based on incoming new record and 
    stored old record. Hudi provides default implementations such as 
`OverwriteWithLatestAvroPayload` which simply update table with the 
latest/last-written record. 
    This can be overridden to a custom class extending `HoodieRecordPayload` 
class, on both datasource and WriteClient levels.
- 
-## Talking to Cloud Storage
-
-Immaterial of whether RDD/WriteClient APIs or Datasource is used, the 
following information helps configure access
-to cloud stores.
-
- * [AWS S3](/docs/0.5.3-s3_hoodie) <br/>
-   Configurations required for S3 and Hudi co-operability.
- * [Google Cloud Storage](/docs/0.5.3-gcs_hoodie) <br/>
-   Configurations required for GCS and Hudi co-operability.
- * [Alibaba Cloud OSS](/docs/0.5.3-oss_hoodie.html) <br/>
-   Configurations required for OSS and Hudi co-operability.
- * [Microsoft Azure](/docs/0.5.3-azure_hoodie.html) <br/>
-   Configurations required for Azure and Hudi co-operability.
 
 ## Spark Datasource Configs {#spark-datasource}
 
diff --git a/docs/_docs/0.5.3/2_7_cloud.cn.md b/docs/_docs/0.5.3/2_7_cloud.cn.md
new file mode 100644
index 0000000..723653c
--- /dev/null
+++ b/docs/_docs/0.5.3/2_7_cloud.cn.md
@@ -0,0 +1,22 @@
+---
+title: 云储存
+keywords: hudi, aws, gcp, oss, azure, cloud
+permalink: /cn/docs/0.5.3-cloud.html
+summary: "In this page, we introduce how Hudi work with different Cloud 
providers."
+toc: true
+last_modified_at: 2019-06-16T21:59:57-04:00
+language: cn
+---
+ 
+## 与云存储连接
+
+无论使用RDD/WriteClient API还是数据源,以下信息都有助于配置对云存储的访问。
+
+ * [AWS S3](/cn/docs/0.5.3-s3_hoodie.html) <br/>
+   S3和Hudi协同工作所需的配置。
+ * [Google Cloud Storage](/cn/docs/0.5.3-gcs_hoodie.html) <br/>
+   GCS和Hudi协同工作所需的配置。
+ * [Alibaba Cloud OSS](/cn/docs/0.5.3-oss_hoodie.html) <br/>
+   阿里云和Hudi协同工作所需的配置。
+ * [Microsoft Azure](/cn/docs/0.5.3-azure_hoodie.html) <br/>
+   Azure和Hudi协同工作所需的配置。
diff --git a/docs/_docs/0.5.3/2_7_cloud.md b/docs/_docs/0.5.3/2_7_cloud.md
new file mode 100644
index 0000000..1ddfb33
--- /dev/null
+++ b/docs/_docs/0.5.3/2_7_cloud.md
@@ -0,0 +1,22 @@
+---
+title: Cloud Storage
+keywords: hudi, aws, gcp, oss, azure, cloud
+permalink: /docs/0.5.3-cloud.html
+summary: "In this page, we introduce how Hudi work with different Cloud 
providers."
+toc: true
+last_modified_at: 2019-06-16T21:59:57-04:00
+---
+ 
+## Talking to Cloud Storage
+
+Immaterial of whether RDD/WriteClient APIs or Datasource is used, the 
following information helps configure access
+to cloud stores.
+
+ * [AWS S3](/docs/0.5.3-s3_hoodie) <br/>
+   Configurations required for S3 and Hudi co-operability.
+ * [Google Cloud Storage](/docs/0.5.3-gcs_hoodie) <br/>
+   Configurations required for GCS and Hudi co-operability.
+ * [Alibaba Cloud OSS](/docs/0.5.3-oss_hoodie.html) <br/>
+   Configurations required for OSS and Hudi co-operability.
+ * [Microsoft Azure](/docs/0.5.3-azure_hoodie.html) <br/>
+   Configurations required for Azure and Hudi co-operability.
diff --git a/docs/_docs/2_4_configurations.cn.md 
b/docs/_docs/2_4_configurations.cn.md
index badf971..a75419e 100644
--- a/docs/_docs/2_4_configurations.cn.md
+++ b/docs/_docs/2_4_configurations.cn.md
@@ -20,19 +20,7 @@ language: cn
    RecordPayload定义了如何根据传入的新记录和存储的旧记录来产生新值以进行插入更新。
    Hudi提供了诸如`OverwriteWithLatestAvroPayload`的默认实现,该实现仅使用最新或最后写入的记录来更新存储。
    在数据源和WriteClient级别,都可以将其重写为扩展`HoodieRecordPayload`类的自定义类。
- 
-## 与云存储连接
-
-无论使用RDD/WriteClient API还是数据源,以下信息都有助于配置对云存储的访问。
-
- * [AWS S3](/cn/docs/s3_hoodie.html) <br/>
-   S3和Hudi协同工作所需的配置。
- * [Google Cloud Storage](/cn/docs/gcs_hoodie.html) <br/>
-   GCS和Hudi协同工作所需的配置。
- * [Alibaba Cloud OSS](/cn/docs/oss_hoodie.html) <br/>
-   阿里云和Hudi协同工作所需的配置。
- * [Microsoft Azure](/cn/docs/azure_hoodie.html) <br/>
-   Azure和Hudi协同工作所需的配置。
+
 
 ## Spark数据源配置 {#spark-datasource}
 
diff --git a/docs/_docs/2_4_configurations.md b/docs/_docs/2_4_configurations.md
index 8e717d4..6fc1049 100644
--- a/docs/_docs/2_4_configurations.md
+++ b/docs/_docs/2_4_configurations.md
@@ -16,20 +16,7 @@ At a high level, you can control behaviour at few levels.
 - **[RecordPayload Config](#PAYLOAD_CLASS_OPT_KEY)** : This is the lowest 
level of customization offered by Hudi. Record payloads define how to produce 
new values to upsert based on incoming new record and 
    stored old record. Hudi provides default implementations such as 
`OverwriteWithLatestAvroPayload` which simply update table with the 
latest/last-written record. 
    This can be overridden to a custom class extending `HoodieRecordPayload` 
class, on both datasource and WriteClient levels.
- 
-## Talking to Cloud Storage
-
-Immaterial of whether RDD/WriteClient APIs or Datasource is used, the 
following information helps configure access
-to cloud stores.
-
- * [AWS S3](/docs/s3_hoodie) <br/>
-   Configurations required for S3 and Hudi co-operability.
- * [Google Cloud Storage](/docs/gcs_hoodie) <br/>
-   Configurations required for GCS and Hudi co-operability.
- * [Alibaba Cloud OSS](/docs/oss_hoodie.html) <br/>
-   Configurations required for OSS and Hudi co-operability.
- * [Microsoft Azure](/docs/azure_hoodie.html) <br/>
-   Configurations required for Azure and Hudi co-operability.
+
 
 ## Spark Datasource Configs {#spark-datasource}
 
diff --git a/docs/_docs/2_7_cloud.cn.md b/docs/_docs/2_7_cloud.cn.md
new file mode 100644
index 0000000..209db78
--- /dev/null
+++ b/docs/_docs/2_7_cloud.cn.md
@@ -0,0 +1,22 @@
+---
+title: 云储存
+keywords: hudi, aws, gcp, oss, azure, cloud
+permalink: /cn/docs/cloud.html
+summary: "In this page, we introduce how Hudi work with different Cloud 
providers."
+toc: true
+last_modified_at: 2019-06-16T21:59:57-04:00
+language: cn
+---
+ 
+## 与云存储连接
+
+无论使用RDD/WriteClient API还是数据源,以下信息都有助于配置对云存储的访问。
+
+ * [AWS S3](/cn/docs/s3_hoodie.html) <br/>
+   S3和Hudi协同工作所需的配置。
+ * [Google Cloud Storage](/cn/docs/gcs_hoodie.html) <br/>
+   GCS和Hudi协同工作所需的配置。
+ * [Alibaba Cloud OSS](/cn/docs/oss_hoodie.html) <br/>
+   阿里云和Hudi协同工作所需的配置。
+ * [Microsoft Azure](/cn/docs/azure_hoodie.html) <br/>
+   Azure和Hudi协同工作所需的配置。
diff --git a/docs/_docs/2_7_cloud.md b/docs/_docs/2_7_cloud.md
new file mode 100644
index 0000000..56b75b7
--- /dev/null
+++ b/docs/_docs/2_7_cloud.md
@@ -0,0 +1,22 @@
+---
+title: Cloud Storage
+keywords: hudi, aws, gcp, oss, azure, cloud
+permalink: /docs/cloud.html
+summary: "In this page, we introduce how Hudi work with different Cloud 
providers."
+toc: true
+last_modified_at: 2019-06-16T21:59:57-04:00
+---
+ 
+## Talking to Cloud Storage
+
+Immaterial of whether RDD/WriteClient APIs or Datasource is used, the 
following information helps configure access
+to cloud stores.
+
+ * [AWS S3](/docs/s3_hoodie) <br/>
+   Configurations required for S3 and Hudi co-operability.
+ * [Google Cloud Storage](/docs/gcs_hoodie) <br/>
+   Configurations required for GCS and Hudi co-operability.
+ * [Alibaba Cloud OSS](/docs/oss_hoodie.html) <br/>
+   Configurations required for OSS and Hudi co-operability.
+ * [Microsoft Azure](/docs/azure_hoodie.html) <br/>
+   Configurations required for Azure and Hudi co-operability.

Reply via email to