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

morningman 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 7cc4b3bccfa [opt](catalog) modify some example (#2892)
7cc4b3bccfa is described below

commit 7cc4b3bccfa3a24d800751779d51f0705b485ddb
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Thu Sep 18 10:52:36 2025 -0700

    [opt](catalog) modify some example (#2892)
    
    ## 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/lakehouse/catalogs/hive-catalog.mdx           |  4 +++
 docs/lakehouse/catalogs/iceberg-catalog.mdx        | 21 ++++++------
 docs/lakehouse/catalogs/paimon-catalog.mdx         | 10 +++---
 .../current/lakehouse/catalogs/hive-catalog.mdx    | 38 ++++++++++++----------
 .../current/lakehouse/catalogs/iceberg-catalog.mdx | 25 +++++++-------
 .../current/lakehouse/catalogs/paimon-catalog.mdx  | 10 +++---
 .../lakehouse/catalogs/hive-catalog.mdx            | 38 ++++++++++++----------
 .../lakehouse/catalogs/iceberg-catalog.mdx         | 25 +++++++-------
 .../lakehouse/catalogs/paimon-catalog.mdx          | 10 +++---
 .../lakehouse/catalogs/hive-catalog.mdx            | 38 ++++++++++++----------
 .../lakehouse/catalogs/iceberg-catalog.mdx         | 25 +++++++-------
 .../lakehouse/catalogs/paimon-catalog.mdx          | 10 +++---
 .../lakehouse/catalogs/hive-catalog.mdx            |  4 +++
 .../lakehouse/catalogs/iceberg-catalog.mdx         | 21 ++++++------
 .../lakehouse/catalogs/paimon-catalog.mdx          | 10 +++---
 .../lakehouse/catalogs/hive-catalog.mdx            |  4 +++
 .../lakehouse/catalogs/iceberg-catalog.mdx         | 25 +++++++-------
 .../lakehouse/catalogs/paimon-catalog.mdx          | 10 +++---
 18 files changed, 173 insertions(+), 155 deletions(-)

diff --git a/docs/lakehouse/catalogs/hive-catalog.mdx 
b/docs/lakehouse/catalogs/hive-catalog.mdx
index 2adddb10b09..afccfe5f5cb 100644
--- a/docs/lakehouse/catalogs/hive-catalog.mdx
+++ b/docs/lakehouse/catalogs/hive-catalog.mdx
@@ -85,6 +85,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [AWS Glue](../metastores/aws-glue.md)
 * [Aliyun DLF](../metastores/aliyun-dlf.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -96,6 +98,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [MINIO](../storages/minio.md)
 
 > To create Hive tables and write data through Doris, you need to explicitly 
 > add the `fs.defaultFS` property in the Catalog attributes. If the Catalog is 
 > created only for querying, this parameter can be omitted.
+>
+> The service types and parameters supported by different Doris versions are 
slightly different. Please refer to the [Examples] section.
 
 ### Supported Data Formats
 
diff --git a/docs/lakehouse/catalogs/iceberg-catalog.mdx 
b/docs/lakehouse/catalogs/iceberg-catalog.mdx
index 5b9d0e42fb3..8db8b28d5dc 100644
--- a/docs/lakehouse/catalogs/iceberg-catalog.mdx
+++ b/docs/lakehouse/catalogs/iceberg-catalog.mdx
@@ -90,6 +90,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Iceberg Rest Catalog](../metastores/iceberg-rest.md)
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -100,6 +102,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Huawei OBS](../storages/huawei-obs.md)
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -1002,9 +1006,6 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB exception, needs investigation
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
@@ -1020,13 +1021,13 @@ The current Iceberg dependency is version 1.6.1, which 
is compatible with higher
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_fs_on_minio PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type'='hadoop',
-            'warehouse' = 's3://warehouse/wh',
-            's3.region' = 'ap-east-1',
-            's3.endpoint' = 'http://minio:9000',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
+                'type' = 'iceberg',
+                'iceberg.catalog.type'='hadoop',
+                'warehouse' = 's3://warehouse/wh',
+                's3.region' = 'ap-east-1',
+                's3.endpoint' = 'http://minio:9000',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
             );
             ```
         </TabItem>
diff --git a/docs/lakehouse/catalogs/paimon-catalog.mdx 
b/docs/lakehouse/catalogs/paimon-catalog.mdx
index f393ca78cd9..2ffe69f8fe5 100644
--- a/docs/lakehouse/catalogs/paimon-catalog.mdx
+++ b/docs/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/hive-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/hive-catalog.mdx
index 5331607b4c6..d5153174e62 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/hive-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/hive-catalog.mdx
@@ -83,51 +83,55 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 ### 支持的元数据服务
 
-* [ Hive Metastore](../metastores/hive-metastore.md)
+* [Hive Metastore](../metastores/hive-metastore.md)
 
-* [ AWS Glue](../metastores/aws-glue.md)
+* [AWS Glue](../metastores/aws-glue.md)
 
-* [ Aliyun DLF ](../metastores/aliyun-dlf.md)
+* [Aliyun DLF ](../metastores/aliyun-dlf.md)
+
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的存储系统
 
-* [ HDFS](../storages/hdfs.md)
+* [HDFS](../storages/hdfs.md)
 
-* [ AWS S3](../storages/s3.md)
+* [AWS S3](../storages/s3.md)
 
-* [ Google Cloud Storage](../storages/gcs.md)
+* [Google Cloud Storage](../storages/gcs.md)
 
-* [ 阿里云 OSS](../storages/aliyun-oss.md)
+* [阿里云 OSS](../storages/aliyun-oss.md)
 
-* [ 腾讯云 COS](../storages/tencent-cos.md)
+* [腾讯云 COS](../storages/tencent-cos.md)
 
-* [ 华为云 OBS](../storages/huawei-obs.md)
+* [华为云 OBS](../storages/huawei-obs.md)
 
-* [ MINIO](../storages/minio.md)
+* [MINIO](../storages/minio.md)
 
 > 如果需要通过 Doris 创建 Hive 表并写入数据,需要在 Catalog 属性中显式增加 `fs.defaultFS` 属性。如果创建 
 > Catalog 仅用于查询,则该参数可以省略。
+> 
+> 不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的数据格式
 
 * Hive
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
-  * [ Text/CSV/JSON](../file-formats/text.md)
+  * [Text/CSV/JSON](../file-formats/text.md)
 
 * Hudi
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 * Iceberg
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 ## 列类型映射
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx
index 068c7e98ee1..d3283c7812f 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx
@@ -95,6 +95,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -111,6 +113,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -435,15 +439,15 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_on_hms_minio_catalog PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type' = 'hms',
-            'warehouse' = 's3://warehouse/iceberg',
-            'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
-            's3.endpoint' = 'http://127.0.0.1:19001',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
-                );
-                ```
+                'type' = 'iceberg',
+                'iceberg.catalog.type' = 'hms',
+                'warehouse' = 's3://warehouse/iceberg',
+                'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
+                's3.endpoint' = 'http://127.0.0.1:19001',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
+            );
+            ```
         </TabItem>
     </Tabs>
 </details>
@@ -1014,9 +1018,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB 异常,需要排查
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/paimon-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/paimon-catalog.mdx
index 1c7e23529b7..d6a2d494a40 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/paimon-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
index 5331607b4c6..d5153174e62 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
@@ -83,51 +83,55 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 ### 支持的元数据服务
 
-* [ Hive Metastore](../metastores/hive-metastore.md)
+* [Hive Metastore](../metastores/hive-metastore.md)
 
-* [ AWS Glue](../metastores/aws-glue.md)
+* [AWS Glue](../metastores/aws-glue.md)
 
-* [ Aliyun DLF ](../metastores/aliyun-dlf.md)
+* [Aliyun DLF ](../metastores/aliyun-dlf.md)
+
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的存储系统
 
-* [ HDFS](../storages/hdfs.md)
+* [HDFS](../storages/hdfs.md)
 
-* [ AWS S3](../storages/s3.md)
+* [AWS S3](../storages/s3.md)
 
-* [ Google Cloud Storage](../storages/gcs.md)
+* [Google Cloud Storage](../storages/gcs.md)
 
-* [ 阿里云 OSS](../storages/aliyun-oss.md)
+* [阿里云 OSS](../storages/aliyun-oss.md)
 
-* [ 腾讯云 COS](../storages/tencent-cos.md)
+* [腾讯云 COS](../storages/tencent-cos.md)
 
-* [ 华为云 OBS](../storages/huawei-obs.md)
+* [华为云 OBS](../storages/huawei-obs.md)
 
-* [ MINIO](../storages/minio.md)
+* [MINIO](../storages/minio.md)
 
 > 如果需要通过 Doris 创建 Hive 表并写入数据,需要在 Catalog 属性中显式增加 `fs.defaultFS` 属性。如果创建 
 > Catalog 仅用于查询,则该参数可以省略。
+> 
+> 不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的数据格式
 
 * Hive
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
-  * [ Text/CSV/JSON](../file-formats/text.md)
+  * [Text/CSV/JSON](../file-formats/text.md)
 
 * Hudi
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 * Iceberg
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 ## 列类型映射
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
index 068c7e98ee1..d3283c7812f 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
@@ -95,6 +95,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -111,6 +113,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -435,15 +439,15 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_on_hms_minio_catalog PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type' = 'hms',
-            'warehouse' = 's3://warehouse/iceberg',
-            'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
-            's3.endpoint' = 'http://127.0.0.1:19001',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
-                );
-                ```
+                'type' = 'iceberg',
+                'iceberg.catalog.type' = 'hms',
+                'warehouse' = 's3://warehouse/iceberg',
+                'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
+                's3.endpoint' = 'http://127.0.0.1:19001',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
+            );
+            ```
         </TabItem>
     </Tabs>
 </details>
@@ -1014,9 +1018,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB 异常,需要排查
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
index 1c7e23529b7..d6a2d494a40 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
index 5331607b4c6..d5153174e62 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
@@ -83,51 +83,55 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 ### 支持的元数据服务
 
-* [ Hive Metastore](../metastores/hive-metastore.md)
+* [Hive Metastore](../metastores/hive-metastore.md)
 
-* [ AWS Glue](../metastores/aws-glue.md)
+* [AWS Glue](../metastores/aws-glue.md)
 
-* [ Aliyun DLF ](../metastores/aliyun-dlf.md)
+* [Aliyun DLF ](../metastores/aliyun-dlf.md)
+
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的存储系统
 
-* [ HDFS](../storages/hdfs.md)
+* [HDFS](../storages/hdfs.md)
 
-* [ AWS S3](../storages/s3.md)
+* [AWS S3](../storages/s3.md)
 
-* [ Google Cloud Storage](../storages/gcs.md)
+* [Google Cloud Storage](../storages/gcs.md)
 
-* [ 阿里云 OSS](../storages/aliyun-oss.md)
+* [阿里云 OSS](../storages/aliyun-oss.md)
 
-* [ 腾讯云 COS](../storages/tencent-cos.md)
+* [腾讯云 COS](../storages/tencent-cos.md)
 
-* [ 华为云 OBS](../storages/huawei-obs.md)
+* [华为云 OBS](../storages/huawei-obs.md)
 
-* [ MINIO](../storages/minio.md)
+* [MINIO](../storages/minio.md)
 
 > 如果需要通过 Doris 创建 Hive 表并写入数据,需要在 Catalog 属性中显式增加 `fs.defaultFS` 属性。如果创建 
 > Catalog 仅用于查询,则该参数可以省略。
+> 
+> 不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
 
 ### 支持的数据格式
 
 * Hive
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
-  * [ Text/CSV/JSON](../file-formats/text.md)
+  * [Text/CSV/JSON](../file-formats/text.md)
 
 * Hudi
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 * Iceberg
 
-  * [ Parquet](../file-formats/parquet.md)
+  * [Parquet](../file-formats/parquet.md)
 
-  * [ ORC](../file-formats/orc.md)
+  * [ORC](../file-formats/orc.md)
 
 ## 列类型映射
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
index 068c7e98ee1..d3283c7812f 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
@@ -95,6 +95,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -111,6 +113,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -435,15 +439,15 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_on_hms_minio_catalog PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type' = 'hms',
-            'warehouse' = 's3://warehouse/iceberg',
-            'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
-            's3.endpoint' = 'http://127.0.0.1:19001',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
-                );
-                ```
+                'type' = 'iceberg',
+                'iceberg.catalog.type' = 'hms',
+                'warehouse' = 's3://warehouse/iceberg',
+                'hive.metastore.uris' = 'thrift://127.0.0.1:9383',
+                's3.endpoint' = 'http://127.0.0.1:19001',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
+            );
+            ```
         </TabItem>
     </Tabs>
 </details>
@@ -1014,9 +1018,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB 异常,需要排查
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
index 1c7e23529b7..d6a2d494a40 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [FileSystem](../metastores/filesystem.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的存储系统
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
 
 * [MINIO](../storages/minio.md)
 
+> 注意:不同 Doris 版本所支持的服务类型和参数略有区别,请参考【基础示例】章节。
+
 ### 支持的数据格式
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES (
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (
diff --git a/versioned_docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx 
b/versioned_docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
index 2adddb10b09..afccfe5f5cb 100644
--- a/versioned_docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
+++ b/versioned_docs/version-2.1/lakehouse/catalogs/hive-catalog.mdx
@@ -85,6 +85,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [AWS Glue](../metastores/aws-glue.md)
 * [Aliyun DLF](../metastores/aliyun-dlf.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -96,6 +98,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [MINIO](../storages/minio.md)
 
 > To create Hive tables and write data through Doris, you need to explicitly 
 > add the `fs.defaultFS` property in the Catalog attributes. If the Catalog is 
 > created only for querying, this parameter can be omitted.
+>
+> The service types and parameters supported by different Doris versions are 
slightly different. Please refer to the [Examples] section.
 
 ### Supported Data Formats
 
diff --git a/versioned_docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx 
b/versioned_docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
index 5b9d0e42fb3..8db8b28d5dc 100644
--- a/versioned_docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
+++ b/versioned_docs/version-2.1/lakehouse/catalogs/iceberg-catalog.mdx
@@ -90,6 +90,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Iceberg Rest Catalog](../metastores/iceberg-rest.md)
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -100,6 +102,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Huawei OBS](../storages/huawei-obs.md)
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -1002,9 +1006,6 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB exception, needs investigation
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
@@ -1020,13 +1021,13 @@ The current Iceberg dependency is version 1.6.1, which 
is compatible with higher
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_fs_on_minio PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type'='hadoop',
-            'warehouse' = 's3://warehouse/wh',
-            's3.region' = 'ap-east-1',
-            's3.endpoint' = 'http://minio:9000',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
+                'type' = 'iceberg',
+                'iceberg.catalog.type'='hadoop',
+                'warehouse' = 's3://warehouse/wh',
+                's3.region' = 'ap-east-1',
+                's3.endpoint' = 'http://minio:9000',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
             );
             ```
         </TabItem>
diff --git a/versioned_docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx 
b/versioned_docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
index f393ca78cd9..2ffe69f8fe5 100644
--- a/versioned_docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
+++ b/versioned_docs/version-2.1/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (
diff --git a/versioned_docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx 
b/versioned_docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
index 2adddb10b09..afccfe5f5cb 100644
--- a/versioned_docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
+++ b/versioned_docs/version-3.0/lakehouse/catalogs/hive-catalog.mdx
@@ -85,6 +85,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [AWS Glue](../metastores/aws-glue.md)
 * [Aliyun DLF](../metastores/aliyun-dlf.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -96,6 +98,8 @@ Hive transactional tables are supported from version 3.x 
onwards. For details, r
 * [MINIO](../storages/minio.md)
 
 > To create Hive tables and write data through Doris, you need to explicitly 
 > add the `fs.defaultFS` property in the Catalog attributes. If the Catalog is 
 > created only for querying, this parameter can be omitted.
+>
+> The service types and parameters supported by different Doris versions are 
slightly different. Please refer to the [Examples] section.
 
 ### Supported Data Formats
 
diff --git a/versioned_docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx 
b/versioned_docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
index 2931b3ebdd8..8db8b28d5dc 100644
--- a/versioned_docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
+++ b/versioned_docs/version-3.0/lakehouse/catalogs/iceberg-catalog.mdx
@@ -90,6 +90,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Iceberg Rest Catalog](../metastores/iceberg-rest.md)
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -100,6 +102,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
 * [Huawei OBS](../storages/huawei-obs.md)
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -430,8 +434,8 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
             's3.endpoint' = 'http://127.0.0.1:19001',
             's3.access_key' = '<ak>',
             's3.secret_key' = '<sk>'
-                ); 
-            ```
+                );
+                ```
         </TabItem>
     </Tabs>
 </details>
@@ -1002,9 +1006,6 @@ The current Iceberg dependency is version 1.6.1, which is 
compatible with higher
             );
             ```
         </TabItem>
-        <TabItem value='OBS' label='OBS'>
-            Create DB exception, needs investigation
-        </TabItem>
         <TabItem value='GCS' label='GCS'>
             ```sql
             CREATE CATALOG iceberg_fs_on_gcs_catalog PROPERTIES (
@@ -1020,13 +1021,13 @@ The current Iceberg dependency is version 1.6.1, which 
is compatible with higher
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_iceberg_fs_on_minio PROPERTIES (
-            'type' = 'iceberg',
-            'iceberg.catalog.type'='hadoop',
-            'warehouse' = 's3://warehouse/wh',
-            's3.region' = 'ap-east-1',
-            's3.endpoint' = 'http://minio:9000',
-            's3.access_key' = '<ak>',
-            's3.secret_key' = '<sk>'
+                'type' = 'iceberg',
+                'iceberg.catalog.type'='hadoop',
+                'warehouse' = 's3://warehouse/wh',
+                's3.region' = 'ap-east-1',
+                's3.endpoint' = 'http://minio:9000',
+                's3.access_key' = '<ak>',
+                's3.secret_key' = '<sk>'
             );
             ```
         </TabItem>
diff --git a/versioned_docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx 
b/versioned_docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
index f393ca78cd9..2ffe69f8fe5 100644
--- a/versioned_docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
+++ b/versioned_docs/version-3.0/lakehouse/catalogs/paimon-catalog.mdx
@@ -81,6 +81,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [FileSystem](../metastores/filesystem.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Storage Systems
 
 * [HDFS](../storages/hdfs.md)
@@ -97,6 +99,8 @@ The currently dependent Paimon version is 1.0.0.
 
 * [MINIO](../storages/minio.md)
 
+> Note: The service types and parameters supported by different Doris versions 
are slightly different. Please refer to the [Examples] section.
+
 ### Supported Data Formats
 
 * [Parquet](../file-formats/parquet.md)
@@ -333,9 +337,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG test_paimon_on_hms_minio_catalog PROPERTIES (
@@ -578,9 +579,6 @@ The currently dependent Paimon version is 1.0.0.
             );
             ```
         </TabItem>
-        <TabItem value='GCS' label='GCS'>
-            TODO
-        </TabItem>
         <TabItem value='MinIO' label='MinIO'>
             ```sql
             CREATE CATALOG paimon_base_filesystem_paimon_minio PROPERTIES (


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to