zhangshenghang commented on code in PR #10283:
URL: https://github.com/apache/seatunnel/pull/10283#discussion_r2664867611
##########
docs/zh/connector-v2/sink/HdfsFile.md:
##########
@@ -87,6 +89,21 @@ import ChangeLog from
'../changelog/connector-file-hadoop.md';
> 2.x。如果您使用 SeaTunnel Engine,则在下载和安装 SeaTunnel Engine 时会自动集成 hadoop
> jar。您可以检查 `${SEATUNNEL_HOME}/lib` 下的 jar 包来确认这一点。
+### schema_save_mode [string]
+
+现有的目录处理方法。
+- RECREATE_SCHEMA:当目录不存在时创建,当目录存在时删除并重新创建
+- CREATE_SCHEMA_WHEN_NOT_EXIST:当目录不存在时创建,当目录存在时跳过
+- ERROR_WHEN_SCHEMA_NOT_EXIST:当目录不存在时,将报告错误
+- IGNORE:忽略对表的处理
+
+### data_save_mode [string]
+
+现有的数据处理方法。
+-DROP_DATA:保留目录并删除数据文件
+-APPEND_DATA:保留目录,保留数据文件
+-ERROR_WHEN_DATA_EXISTS:当有数据文件时,会报告错误
Review Comment:
```suggestion
现有的数据处理方法。
- DROP_DATA: 保留目录并删除数据文件
- APPEND_DATA:保留目录,保留数据文件
- ERROR_WHEN_DATA_EXISTS:当有数据文件时,会报告错误
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]