Compare commits
11 Commits
ad7f1fa17e
...
04f3a2cc48
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04f3a2cc48 | ||
|
|
5f0235428c | ||
|
|
044c96f259 | ||
|
|
59b4123e2e | ||
|
|
54ba48ac10 | ||
|
|
9a49477771 | ||
|
|
f6f1aa7f2c | ||
|
|
bbe5b55c77 | ||
|
|
b8fa68603c | ||
|
|
519ed3937f | ||
|
|
dfa07cabf5 |
@ -11,6 +11,12 @@ Hive主要包含的组件有Driver,Metadata库,用户接口(CLI接口,JD
|
||||
- 用户接口:包含CLI(Command Line Interface 命令行接口)、JDBC/ODBC接口和Web UI接口。实现客户端与服务端的交互。
|
||||
- Thrift Server和JDBC/ODBC:可扩展可跨语言服务接口,Thrift Server提供了JDBC和ODBC连接,实现不同语言调用Hive的接口。
|
||||
|
||||
#### ARM支持:
|
||||
|
||||
1. [移植指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E7%A7%BB%E6%A4%8D%E6%8C%87%E5%8D%97/hive.md)
|
||||
2. [部署指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E9%83%A8%E7%BD%B2%E6%8C%87%E5%8D%97/hive.md)
|
||||
3. [调优指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E8%B0%83%E4%BC%98%E6%8C%87%E5%8D%97/hiveOptimization.md)
|
||||
|
||||
|
||||
#### 安装教程
|
||||
|
||||
|
||||
35
hive.spec
35
hive.spec
@ -1,7 +1,7 @@
|
||||
%define __os_install_post %{nil}
|
||||
|
||||
Name: hive
|
||||
Version: 3.1.2
|
||||
Version: 3.1.3
|
||||
Release: 3
|
||||
Summary: The Apache Hadoop data warehouse
|
||||
|
||||
@ -13,12 +13,11 @@ Source1: xmvn-reactor
|
||||
Source2: pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
|
||||
Source3: guava-27.0-jre.jar
|
||||
Source4: mysql-connector-java.jar
|
||||
Source5: protoc-jar-3.5.1.1.tar.gz
|
||||
Source6: protoc-jar-maven-plugin-3.5.1.1.tar.gz
|
||||
|
||||
BuildRequires: cmake java-1.8.0-openjdk-devel maven xmvn xmvn-install gradle-local maven-local protobuf2-devel protobuf2-compiler
|
||||
Requires: java-1.8.0-openjdk
|
||||
Requires: hadoop-3.1-client hadoop-3.1-common hadoop-3.1-common-native hadoop-3.1-devel hadoop-3.1-hdfs hadoop-3.1-httpfs
|
||||
Requires: hadoop-3.1-mapreduce hadoop-3.1-maven-plugin hadoop-3.1-yarn hadoop-3.1-yarn-security
|
||||
Requires: mysql5-server
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
@ -31,6 +30,13 @@ the data using a SQL-like language called HiveQL.
|
||||
%setup -q -n %{name}-rel-release-%{version}
|
||||
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/bin/protoc
|
||||
mvn install:install-file -DgroupId=org.pentaho -DartifactId=pentaho-aggdesigner-algorithm -Dversion=5.1.5-jhyde -Dpackaging=jar -Dfile=%{SOURCE2}
|
||||
%if "%{_arch}" == "riscv64"
|
||||
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-riscv64 -Dpackaging=exe -Dfile=/usr/bin/protoc
|
||||
mkdir -p ${HOME}/.m2/repository/com/github/os72/protoc-jar/
|
||||
tar -mxf %{SOURCE5} -C ${HOME}/.m2/repository/com/github/os72/protoc-jar/
|
||||
mkdir -p ${HOME}/.m2/repository/com/github/os72/protoc-jar-maven-plugin/
|
||||
tar -mxf %{SOURCE6} -C ${HOME}/.m2/repository/com/github/os72/protoc-jar-maven-plugin/
|
||||
%endif
|
||||
cp %{SOURCE1} ./.xmvn-reactor
|
||||
echo `pwd` > absolute_prefix.log
|
||||
sed -i 's/\//\\\//g' absolute_prefix.log
|
||||
@ -44,6 +50,9 @@ sed -i -e '1d;2i#!/usr/bin/env bash' bin/hive-config.sh
|
||||
|
||||
%build
|
||||
|
||||
%if "%{_arch}" == "riscv64"
|
||||
export MAVEN_OPTS="-Xms2048M -Xmx8000M"
|
||||
%endif
|
||||
# for javadoc encoding
|
||||
export LC_ALL=en_US.UTF-8
|
||||
|
||||
@ -85,16 +94,12 @@ done
|
||||
|
||||
# bin/ext/util
|
||||
cp -pr bin/ext/* %{buildroot}%{_datadir}/%{name}/bin/ext
|
||||
|
||||
# don't have these just yet...
|
||||
for f in beeline.sh hiveserver2.sh; do
|
||||
rm %{buildroot}%{_datadir}/%{name}/bin/ext/${f}
|
||||
done
|
||||
chmod 0755 %{buildroot}%{_datadir}/%{name}/bin/ext/*
|
||||
ln -s %{_datadir}/%{name}/bin/ext %{buildroot}%{_bindir}/ext
|
||||
|
||||
# conf
|
||||
for f in hive-default.xml hive-env.sh hive-exec-log4j2.properties hive-log4j2.properties; do
|
||||
cp -p packaging/target/apache-hive-3.1.2-bin/conf/${f}.template %{buildroot}%{_datadir}/%{name}/conf/${f}
|
||||
cp -p packaging/target/apache-hive-%{version}-bin/conf/${f}.template %{buildroot}%{_datadir}/%{name}/conf/${f}
|
||||
ln -s %{_datadir}/%{name}/conf/${f} %{buildroot}%{_sysconfdir}/%{name}/${f}
|
||||
done
|
||||
|
||||
@ -127,6 +132,16 @@ ln -s %{_javadir}/%{name}/%{name}-shims.jar %{buildroot}%{_datadir}/hadoop/mapre
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed May 29 2024 Dingli Zhang <dingli@iscas.ac.cn> - 3.1.3-3
|
||||
- Fix riscv64 support
|
||||
|
||||
* Fri Dec 1 2023 xiexing <xiexing4@h-partners.com> 3.1.3-2
|
||||
- remove hadoop dependency mysql5-server
|
||||
- fix hiveserver2 launch problem
|
||||
|
||||
* Tue Sep 13 2022 Zhao Yang <yangzhao1@kylinos.cn> 3.1.3-1
|
||||
- update to version 3.1.3
|
||||
|
||||
* Wed Jul 14 2021 Ge Wang <wangge20@huawei.com> 3.1.2-3
|
||||
- Modify sql script's privilege
|
||||
|
||||
|
||||
BIN
protoc-jar-3.5.1.1.tar.gz
Normal file
BIN
protoc-jar-3.5.1.1.tar.gz
Normal file
Binary file not shown.
BIN
protoc-jar-maven-plugin-3.5.1.1.tar.gz
Normal file
BIN
protoc-jar-maven-plugin-3.5.1.1.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
190
xmvn-reactor
190
xmvn-reactor
@ -4,8 +4,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-beeline</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/beeline/target/hive-beeline-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/beeline/target/hive-beeline-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -15,7 +15,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-beeline</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/beeline/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -26,8 +26,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-cli</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/cli/target/hive-cli-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/cli/target/hive-cli-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -48,8 +48,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-common</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/common/target/hive-common-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/common/target/hive-common-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -59,7 +59,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-common</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/common/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -70,8 +70,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-contrib</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/contrib/target/hive-contrib-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/contrib/target/hive-contrib-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -81,7 +81,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-contrib</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/contrib/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -92,8 +92,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-exec</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/ql/target/hive-exec-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/ql/target/hive-exec-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -103,7 +103,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-exec</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/ql/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -114,8 +114,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-jdbc</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/jdbc/target/hive-jdbc-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/jdbc/target/hive-jdbc-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -125,7 +125,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-jdbc</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/jdbc/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -136,8 +136,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-metastore</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/metastore/target/hive-metastore-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/metastore/target/hive-metastore-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -147,7 +147,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-metastore</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/metastore/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -158,8 +158,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-serde</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/serde/target/hive-serde-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/serde/target/hive-serde-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -169,7 +169,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-serde</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/serde/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -180,8 +180,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-service</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/service/target/hive-service-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/service/target/hive-service-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -191,7 +191,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-service</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/service/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -202,8 +202,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-shims</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/shims/aggregator/target/hive-shims-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/shims/aggregator/target/hive-shims-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -213,7 +213,7 @@
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-shims</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/shims/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -225,8 +225,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-core</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hcatalog/core/target/hive-hcatalog-core-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/core/target/hive-hcatalog-core-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -236,7 +236,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-core</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/core/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -247,8 +247,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-pig-adapter</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/target/hive-hcatalog-pig-adapter-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/target/hive-hcatalog-pig-adapter-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -258,7 +258,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-pig-adapter</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -270,7 +270,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -281,8 +281,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-server-extensions</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hcatalog/server-extensions/target/hive-hcatalog-server-extensions-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/server-extensions/target/hive-hcatalog-server-extensions-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -292,7 +292,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hcatalog-server-extensions</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/server-extensions/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -303,8 +303,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hive-webhcat-java-client</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/java-client/target/hive-webhcat-java-client-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/java-client/target/hive-webhcat-java-client-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -314,7 +314,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hive-webhcat-java-client</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/java-client/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -325,8 +325,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hive-webhcat</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/svr/target/hive-webhcat-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/svr/target/hive-webhcat-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -336,7 +336,7 @@
|
||||
<groupId>org.apache.hive.hcatalog</groupId>
|
||||
<artifactId>hive-webhcat</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>3.1.2</version>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hcatalog/webhcat/svr/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
@ -348,8 +348,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-accumulo-handler</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/accumulo-handler/target/hive-accumulo-handler-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/accumulo-handler/target/hive-accumulo-handler-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -358,8 +358,8 @@
|
||||
<!--artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-ant</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/ant/target/hive-ant-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/ant/target/hive-ant-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -368,8 +368,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-hbase-handler</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hbase-handler/target/hive-hbase-handler-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hbase-handler/target/hive-hbase-handler-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -378,8 +378,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-hplsql</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hplsql/target/hive-hplsql-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hplsql/target/hive-hplsql-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -388,8 +388,8 @@
|
||||
<!--artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-hwi</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/hwi/target/hive-hwi-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/hwi/target/hive-hwi-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -398,8 +398,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-llap-client</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/llap-client/target/hive-llap-client-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/llap-client/target/hive-llap-client-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -408,8 +408,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-llap-common</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/llap-common/target/hive-llap-common-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/llap-common/target/hive-llap-common-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -418,8 +418,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-llap-ext-client</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/llap-ext-client/target/hive-llap-ext-client-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/llap-ext-client/target/hive-llap-ext-client-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -428,8 +428,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-llap-server</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/llap-server/target/hive-llap-server-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/llap-server/target/hive-llap-server-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -438,8 +438,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-llap-tez</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/llap-tez/target/hive-llap-tez-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/llap-tez/target/hive-llap-tez-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -448,8 +448,8 @@
|
||||
<!--artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-orc</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/orc/target/hive-orc-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/orc/target/hive-orc-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -458,8 +458,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-service-rpc</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/service-rpc/target/hive-service-rpc-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/service-rpc/target/hive-service-rpc-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -469,8 +469,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.shims</groupId>
|
||||
<artifactId>hive-shims-0.23</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/shims/0.23/target/hive-shims-0.23-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/shims/0.23/target/hive-shims-0.23-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -479,8 +479,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.shims</groupId>
|
||||
<artifactId>hive-shims-common</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/shims/common/target/hive-shims-common-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/shims/common/target/hive-shims-common-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -489,8 +489,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive.shims</groupId>
|
||||
<artifactId>hive-shims-scheduler</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/shims/scheduler/target/hive-shims-scheduler-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/shims/scheduler/target/hive-shims-scheduler-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -500,8 +500,8 @@
|
||||
<!--artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-storage-api</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/storage-api/target/hive-storage-api-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/storage-api/target/hive-storage-api-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -510,8 +510,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-testutils</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/testutils/target/hive-testutils-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/testutils/target/hive-testutils-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -520,8 +520,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-classification</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/classification/target/hive-classification-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/classification/target/hive-classification-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -530,8 +530,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-druid-handler</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/druid-handler/target/hive-druid-handler-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/druid-handler/target/hive-druid-handler-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -540,8 +540,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-jdbc-handler</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/jdbc-handler/target/hive-jdbc-handler-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/jdbc-handler/target/hive-jdbc-handler-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -550,8 +550,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-kryo-registrator</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/kryo-registrator/target/hive-kryo-registrator-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/kryo-registrator/target/hive-kryo-registrator-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -560,8 +560,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-standalone-metastore</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/standalone-metastore/target/hive-standalone-metastore-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/standalone-metastore/target/hive-standalone-metastore-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -570,8 +570,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-streaming</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/streaming/target/hive-streaming-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/streaming/target/hive-streaming-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -580,8 +580,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-upgrade-acid</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/upgrade-acid/target/hive-upgrade-acid-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/upgrade-acid/target/hive-upgrade-acid-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
@ -590,8 +590,8 @@
|
||||
<artifact>
|
||||
<groupId>org.apache.hive</groupId>
|
||||
<artifactId>hive-vector-code-gen</artifactId>
|
||||
<version>3.1.2</version>
|
||||
<path>absolute-prefix/vector-code-gen/target/hive-vector-code-gen-3.1.2.jar</path>
|
||||
<version>3.1.3</version>
|
||||
<path>absolute-prefix/vector-code-gen/target/hive-vector-code-gen-3.1.3.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user