You can download hive-llap-common-2.2.0.jar in this page.
Apache License
hive-llap-common-2.2.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.hive/hive-llap-common/pom.properties META-INF/maven/org.apache.hive/hive-llap-common/pom.xml META-INF/services/org.apache.hadoop.security.token.TokenIdentifier org.apache.hadoop.hive.llap.DaemonId.class org.apache.hadoop.hive.llap.FieldDesc.class org.apache.hadoop.hive.llap.LlapNodeId.class org.apache.hadoop.hive.llap.LlapUtil.class org.apache.hadoop.hive.llap.NotTezEventHelper.class org.apache.hadoop.hive.llap.Row.class org.apache.hadoop.hive.llap.Schema.class org.apache.hadoop.hive.llap.TypeDesc.class org.apache.hadoop.hive.llap.counters.LlapIOCounters.class org.apache.hadoop.hive.llap.daemon.rpc.LlapDaemonProtocolProtos.class org.apache.hadoop.hive.llap.impl.LlapManagementProtocolClientImpl.class org.apache.hadoop.hive.llap.impl.LlapProtocolClientImpl.class org.apache.hadoop.hive.llap.log.LogHelpers.class org.apache.hadoop.hive.llap.metrics.LlapMetricsSystem.class org.apache.hadoop.hive.llap.metrics.MetricsUtils.class org.apache.hadoop.hive.llap.protocol.LlapManagementProtocolPB.class org.apache.hadoop.hive.llap.protocol.LlapProtocolBlockingPB.class org.apache.hadoop.hive.llap.protocol.LlapTaskUmbilicalProtocol.class org.apache.hadoop.hive.llap.security.LlapSigner.class org.apache.hadoop.hive.llap.security.LlapSignerImpl.class org.apache.hadoop.hive.llap.security.LlapTokenIdentifier.class org.apache.hadoop.hive.llap.security.LlapTokenLocalClient.class org.apache.hadoop.hive.llap.security.LlapTokenSelector.class org.apache.hadoop.hive.llap.security.SecretManager.class org.apache.hadoop.hive.llap.security.SigningSecretManager.class org.apache.hadoop.hive.llap.tez.Converters.class
hive-llap-common-2.2.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.hive</groupId> <artifactId>hive</artifactId> <version>2.2.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>hive-llap-common</artifactId> <packaging>jar</packaging> <name>Hive Llap Common</name> <properties> <hive.path.to.root>..</hive.path.to.root> </properties> <dependencies> <!-- dependencies are always listed in sorted order by groupId, artifactId --> <!-- intra-project --> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-serde</artifactId> <version>${project.version}</version> </dependency> <!-- inter-project --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>${hadoop.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tez</groupId> <artifactId>tez-api</artifactId> <version>${tez.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tez</groupId> <artifactId>tez-common</artifactId> <version>${tez.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tez</groupId> <artifactId>tez-runtime-internals</artifactId> <version>${tez.version}</version> <optional>true</optional> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- test inter-project --> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.version}</version> <classifier>tests</classifier> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>commmons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito-all.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>protobuf</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>generate-protobuf-sources</id> <phase>generate-sources</phase> <configuration> <target> <property name="protobuf.src.dir" location="${basedir}/src/protobuf"/> <property name="protobuf.build.dir" location="${basedir}/src/gen/protobuf/gen-java"/> <echo>Building LLAP Protobuf</echo> <mkdir dir="${protobuf.build.dir}"/> <exec executable="protoc" failonerror="true"> <arg value="--java_out=${protobuf.build.dir}"/> <arg value="-I=${protobuf.src.dir}"/> <arg value="${protobuf.src.dir}/LlapDaemonProtocol.proto"/> </exec> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <sourceDirectory>${basedir}/src/java</sourceDirectory> <testSourceDirectory>${basedir}/src/test</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>*.py</exclude> <exclude>*.pyc</exclude> </excludes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/gen/protobuf/gen-java</source> <source>src/gen/thrift/gen-javabean</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-llap-common</artifactId> <version>2.2.0</version> </dependency>
If you think the following hive-llap-common-2.2.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download hive-llap-common-2.2.0.jar file