ououtt commented on a change in pull request #1439: URL: https://github.com/apache/incubator-seatunnel/pull/1439#discussion_r822251173
########## File path: docs/en/spark/configuration/sink-plugins/Iceberg.md ########## @@ -0,0 +1,62 @@ +# Iceberg + +> Sink plugin: Iceberg [Spark] + +## Description + +Write data to Iceberg. + +## Options + +| name | type | required | default value | +| -------------- | ------ | -------- | ------------- | +| [path](#path) | string | yes | - | +| [saveMode](#saveMode) | string | yes | - | +| [target-file-size-bytes](#target-file-size-bytes) | long | no | - | +| [check-nullability](#check-nullability) | bool | no| - | +| [snapshot-property.custom-key](#snapshot-property.custom-key) | string | no| - | +| [fanout-enabled](#fanout-enabled) | bool | no| - | +| [check-ordering](#check-ordering) | bool | no| - | + + +Refer to [iceberg write options](https://iceberg.apache.org/docs/latest/spark-configuration/) for more configurations. + +### path + +Iceberg table location. + +### saveMode + Review comment: iceberg only support append and overwrite. and I have set the default value of saveMode to append and format the options table. -- 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]
