xingbowu commented on a change in pull request #2920: URL: https://github.com/apache/iceberg/pull/2920#discussion_r690213123
########## File path: site/docs/flink.md ########## @@ -78,12 +81,25 @@ as the following: # HADOOP_HOME is your hadoop root directory after unpack the binary package. export HADOOP_CLASSPATH=`$HADOOP_HOME/bin/hadoop classpath` +# download Iceberg dependency +ICEBERG_VERSION=0.11.1 +MAVEN_URL=https://repo1.maven.org/maven2 +ICEBERG_MAVEN_URL=$MAVEN_URL/org/apache/iceberg +ICEBERG_PACKAGE=iceberg-flink-runtime +wget $ICEBERG_MAVEN_URL/$ICEBERG_PACKAGE/$ICEBERG_VERSION/$ICEBERG_PACKAGE-$ICEBERG_VERSION.jar + # wget the flink-sql-connector-hive-2.3.6_2.11-1.11.0.jar from the above bundled jar URL firstly. +HIVE_VERSION=2.3.6 +SCALA_VERSION=2.11 +FLINK_VERSION=1.11.0 +FLINK_MAVEN_URL=$MAVEN_URL/org/apache/flink +FLINK_CONNECTOR_PACKAGE=flink-sql-connector-hive +wget $FLINK_MAVEN_URL/$FLINK_CONNECTOR_PACKAGE-$HIVE_VERSION\_$SCALA_VERSION/$FLINK_VERSION/$FLINK_CONNECTOR_PACKAGE-$HIVE_VERSION\_$SCALA_VERSION-$FLINK_VERSION.jar Review comment: Thanks for your suggestion. Rework Done -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
