dockerzhang commented on code in PR #412: URL: https://github.com/apache/incubator-inlong-website/pull/412#discussion_r898812324
########## docs/data_node/load_node/iceberg.md: ########## @@ -2,11 +2,190 @@ title: Iceberg sidebar_position: 4 --- - ## Overview [Apache Iceberg](https://iceberg.apache.org/) is a high-performance format for huge analytic tables. -## Configuration -When creating a data flow, select `Iceberg` for the data stream direction, and click "Add" to configure it. +## Version + +| Extract Node | Version | +| ----------------------- | ---------------------------------------------------------- | +| [Iceberg](./iceberg.md) | [Iceberg](https://dev.mysql.com/doc): 0.12.x, 0.13.x <br/> | + +## Dependencies + +```xml +<dependency> + <groupId>org.apache.inlong</groupId> + <artifactId>sort-connector-iceberg</artifactId> + <!-- Choose the version that suits your application --> + <version>inlong_version</version> +</dependency> +``` + +## Usage + +### Usage for SQL API + +To create iceberg table in flink, we recommend to use [Flink SQL Client](https://ci.apache.org/projects/flink/flink-docs-stable/dev/table/sqlClient.html) because it’s easier for users to understand the concepts. + +Step.1 Start a standalone flink cluster within hadoop environment. + +```bash +# HADOOP_HOME is your hadoop root directory after unpack the binary package. +export HADOOP_CLASSPATH=`$HADOOP_HOME/bin/hadoop classpath` + +# Start the flink standalone cluster +./bin/start-cluster.sh +``` + +Step.2 Start the flink SQL client. Review Comment: ```suggestion Step.2 Start the Flink SQL client. ``` -- 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]
