ADD Statements
This documentation is for an unreleased version of Apache Flink. We recommend you use the latest stable version.

ADD Statements #

With Hive dialect, the following ADD statements are supported for now:

  • ADD JAR

ADD JAR #

説明 #

ADD JAR statement is used to add user jars into the classpath. Add multiple jars file in single ADD JAR statement is not supported.

構文 #

ADD JAR <jar_path>;

パラメータ #

  • jar_path

    The path of the JAR file to be added. It could be either on a local file or distributed file system.

#

-- add a local jar
ADD JAR t.jar;

-- add a remote jar
ADD JAR hdfs://namenode-host:port/path/t.jar
inserted by FC2 system