From 7038a7d0cd55e0d57b4f0614973d1e9d362ce829 Mon Sep 17 00:00:00 2001 From: dailai Date: Wed, 27 Mar 2024 19:15:04 +0800 Subject: [PATCH] [Improve][Connector-V2] update the docs for paimon sink --- docs/en/connector-v2/sink/Paimon.md | 1 + docs/zh/connector-v2/sink/Paimon.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/en/connector-v2/sink/Paimon.md b/docs/en/connector-v2/sink/Paimon.md index 04c96e321a0..e0ce1350bb9 100644 --- a/docs/en/connector-v2/sink/Paimon.md +++ b/docs/en/connector-v2/sink/Paimon.md @@ -17,6 +17,7 @@ Sink connector for Apache Paimon. It can support cdc mode 、auto create table. | warehouse | String | Yes | - | Paimon warehouse path | | database | String | Yes | - | The database you want to access | | table | String | Yes | - | The table you want to access | +| hdfs_site_path | String | No | - | The path of hdfs-site.xml | | schema_save_mode | Enum | No | CREATE_SCHEMA_WHEN_NOT_EXIST | The schema save mode | | data_save_mode | Enum | No | APPEND_DATA | The data save mode | | paimon.table.primary-keys | String | No | - | Default comma-separated list of columns (primary key) that identify a row in tables.(Notice: The partition field needs to be included in the primary key fields) | diff --git a/docs/zh/connector-v2/sink/Paimon.md b/docs/zh/connector-v2/sink/Paimon.md index e5d1722bcd6..ef22add620d 100644 --- a/docs/zh/connector-v2/sink/Paimon.md +++ b/docs/zh/connector-v2/sink/Paimon.md @@ -17,6 +17,7 @@ Apache Paimon数据连接器。支持cdc写以及自动建表。 | warehouse | 字符串 | 是 | - | Paimon warehouse路径 | | database | 字符串 | 是 | - | 数据库名称 | | table | 字符串 | 是 | - | 表名 | +| hdfs_site_path | 字符串 | 否 | - | hdfs-site.xml文件路径 | | schema_save_mode | 枚举 | 否 | CREATE_SCHEMA_WHEN_NOT_EXIST | Schema保存模式 | | data_save_mode | 枚举 | 否 | APPEND_DATA | 数据保存模式 | | paimon.table.primary-keys | 字符串 | 否 | - | 主键字段列表,联合主键使用逗号分隔(注意:分区字段需要包含在主键字段中) |