Compare commits

..

No commits in common. "04f3a2cc485eaa414363aab990011cc064492861" and "ad7f1fa17e03c04d85d4aa726d3a5613f0607e9f" have entirely different histories.

6 changed files with 105 additions and 126 deletions

View File

@ -11,12 +11,6 @@ Hive主要包含的组件有DriverMetadata库用户接口CLI接口JD
- 用户接口包含CLICommand Line Interface 命令行接口、JDBC/ODBC接口和Web UI接口。实现客户端与服务端的交互。 - 用户接口包含CLICommand Line Interface 命令行接口、JDBC/ODBC接口和Web UI接口。实现客户端与服务端的交互。
- Thrift Server和JDBC/ODBC可扩展可跨语言服务接口Thrift Server提供了JDBC和ODBC连接实现不同语言调用Hive的接口。 - 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)
#### 安装教程 #### 安装教程

View File

@ -1,7 +1,7 @@
%define __os_install_post %{nil} %define __os_install_post %{nil}
Name: hive Name: hive
Version: 3.1.3 Version: 3.1.2
Release: 3 Release: 3
Summary: The Apache Hadoop data warehouse Summary: The Apache Hadoop data warehouse
@ -13,11 +13,12 @@ Source1: xmvn-reactor
Source2: pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar Source2: pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar
Source3: guava-27.0-jre.jar Source3: guava-27.0-jre.jar
Source4: mysql-connector-java.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 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: 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 BuildArch: noarch
%description %description
@ -30,13 +31,6 @@ the data using a SQL-like language called HiveQL.
%setup -q -n %{name}-rel-release-%{version} %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=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} 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 cp %{SOURCE1} ./.xmvn-reactor
echo `pwd` > absolute_prefix.log echo `pwd` > absolute_prefix.log
sed -i 's/\//\\\//g' absolute_prefix.log sed -i 's/\//\\\//g' absolute_prefix.log
@ -50,9 +44,6 @@ sed -i -e '1d;2i#!/usr/bin/env bash' bin/hive-config.sh
%build %build
%if "%{_arch}" == "riscv64"
export MAVEN_OPTS="-Xms2048M -Xmx8000M"
%endif
# for javadoc encoding # for javadoc encoding
export LC_ALL=en_US.UTF-8 export LC_ALL=en_US.UTF-8
@ -94,12 +85,16 @@ done
# bin/ext/util # bin/ext/util
cp -pr bin/ext/* %{buildroot}%{_datadir}/%{name}/bin/ext cp -pr bin/ext/* %{buildroot}%{_datadir}/%{name}/bin/ext
chmod 0755 %{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
ln -s %{_datadir}/%{name}/bin/ext %{buildroot}%{_bindir}/ext ln -s %{_datadir}/%{name}/bin/ext %{buildroot}%{_bindir}/ext
# conf # conf
for f in hive-default.xml hive-env.sh hive-exec-log4j2.properties hive-log4j2.properties; do for f in hive-default.xml hive-env.sh hive-exec-log4j2.properties hive-log4j2.properties; do
cp -p packaging/target/apache-hive-%{version}-bin/conf/${f}.template %{buildroot}%{_datadir}/%{name}/conf/${f} cp -p packaging/target/apache-hive-3.1.2-bin/conf/${f}.template %{buildroot}%{_datadir}/%{name}/conf/${f}
ln -s %{_datadir}/%{name}/conf/${f} %{buildroot}%{_sysconfdir}/%{name}/${f} ln -s %{_datadir}/%{name}/conf/${f} %{buildroot}%{_sysconfdir}/%{name}/${f}
done done
@ -132,16 +127,6 @@ ln -s %{_javadir}/%{name}/%{name}-shims.jar %{buildroot}%{_datadir}/hadoop/mapre
%changelog %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 * Wed Jul 14 2021 Ge Wang <wangge20@huawei.com> 3.1.2-3
- Modify sql script's privilege - Modify sql script's privilege

Binary file not shown.

View File

@ -4,8 +4,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-beeline</artifactId> <artifactId>hive-beeline</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/beeline/target/hive-beeline-3.1.3.jar</path> <path>absolute-prefix/beeline/target/hive-beeline-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -15,7 +15,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-beeline</artifactId> <artifactId>hive-beeline</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/beeline/pom.xml</path> <path>absolute-prefix/beeline/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -26,8 +26,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-cli</artifactId> <artifactId>hive-cli</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/cli/target/hive-cli-3.1.3.jar</path> <path>absolute-prefix/cli/target/hive-cli-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -48,8 +48,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-common</artifactId> <artifactId>hive-common</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/common/target/hive-common-3.1.3.jar</path> <path>absolute-prefix/common/target/hive-common-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -59,7 +59,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-common</artifactId> <artifactId>hive-common</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/common/pom.xml</path> <path>absolute-prefix/common/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -70,8 +70,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-contrib</artifactId> <artifactId>hive-contrib</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/contrib/target/hive-contrib-3.1.3.jar</path> <path>absolute-prefix/contrib/target/hive-contrib-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -81,7 +81,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-contrib</artifactId> <artifactId>hive-contrib</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/contrib/pom.xml</path> <path>absolute-prefix/contrib/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -92,8 +92,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId> <artifactId>hive-exec</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/ql/target/hive-exec-3.1.3.jar</path> <path>absolute-prefix/ql/target/hive-exec-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -103,7 +103,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId> <artifactId>hive-exec</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/ql/pom.xml</path> <path>absolute-prefix/ql/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -114,8 +114,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId> <artifactId>hive-jdbc</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/jdbc/target/hive-jdbc-3.1.3.jar</path> <path>absolute-prefix/jdbc/target/hive-jdbc-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -125,7 +125,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId> <artifactId>hive-jdbc</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/jdbc/pom.xml</path> <path>absolute-prefix/jdbc/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -136,8 +136,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId> <artifactId>hive-metastore</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/metastore/target/hive-metastore-3.1.3.jar</path> <path>absolute-prefix/metastore/target/hive-metastore-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -147,7 +147,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-metastore</artifactId> <artifactId>hive-metastore</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/metastore/pom.xml</path> <path>absolute-prefix/metastore/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -158,8 +158,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId> <artifactId>hive-serde</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/serde/target/hive-serde-3.1.3.jar</path> <path>absolute-prefix/serde/target/hive-serde-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -169,7 +169,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-serde</artifactId> <artifactId>hive-serde</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/serde/pom.xml</path> <path>absolute-prefix/serde/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -180,8 +180,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId> <artifactId>hive-service</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/service/target/hive-service-3.1.3.jar</path> <path>absolute-prefix/service/target/hive-service-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -191,7 +191,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId> <artifactId>hive-service</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/service/pom.xml</path> <path>absolute-prefix/service/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -202,8 +202,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-shims</artifactId> <artifactId>hive-shims</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/shims/aggregator/target/hive-shims-3.1.3.jar</path> <path>absolute-prefix/shims/aggregator/target/hive-shims-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -213,7 +213,7 @@
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-shims</artifactId> <artifactId>hive-shims</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/shims/pom.xml</path> <path>absolute-prefix/shims/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -225,8 +225,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-core</artifactId> <artifactId>hcatalog-core</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/core/target/hive-hcatalog-core-3.1.3.jar</path> <path>absolute-prefix/hcatalog/core/target/hive-hcatalog-core-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -236,7 +236,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-core</artifactId> <artifactId>hcatalog-core</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/core/pom.xml</path> <path>absolute-prefix/hcatalog/core/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -247,8 +247,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-pig-adapter</artifactId> <artifactId>hcatalog-pig-adapter</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/target/hive-hcatalog-pig-adapter-3.1.3.jar</path> <path>absolute-prefix/hcatalog/hcatalog-pig-adapter/target/hive-hcatalog-pig-adapter-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -258,7 +258,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-pig-adapter</artifactId> <artifactId>hcatalog-pig-adapter</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/hcatalog-pig-adapter/pom.xml</path> <path>absolute-prefix/hcatalog/hcatalog-pig-adapter/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -270,7 +270,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog</artifactId> <artifactId>hcatalog</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/pom.xml</path> <path>absolute-prefix/hcatalog/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -281,8 +281,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-server-extensions</artifactId> <artifactId>hcatalog-server-extensions</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/server-extensions/target/hive-hcatalog-server-extensions-3.1.3.jar</path> <path>absolute-prefix/hcatalog/server-extensions/target/hive-hcatalog-server-extensions-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -292,7 +292,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hcatalog-server-extensions</artifactId> <artifactId>hcatalog-server-extensions</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/server-extensions/pom.xml</path> <path>absolute-prefix/hcatalog/server-extensions/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -303,8 +303,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat-java-client</artifactId> <artifactId>hive-webhcat-java-client</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/webhcat/java-client/target/hive-webhcat-java-client-3.1.3.jar</path> <path>absolute-prefix/hcatalog/webhcat/java-client/target/hive-webhcat-java-client-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -314,7 +314,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat-java-client</artifactId> <artifactId>hive-webhcat-java-client</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/webhcat/java-client/pom.xml</path> <path>absolute-prefix/hcatalog/webhcat/java-client/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -325,8 +325,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat</artifactId> <artifactId>hive-webhcat</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/webhcat/svr/target/hive-webhcat-3.1.3.jar</path> <path>absolute-prefix/hcatalog/webhcat/svr/target/hive-webhcat-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -336,7 +336,7 @@
<groupId>org.apache.hive.hcatalog</groupId> <groupId>org.apache.hive.hcatalog</groupId>
<artifactId>hive-webhcat</artifactId> <artifactId>hive-webhcat</artifactId>
<extension>pom</extension> <extension>pom</extension>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hcatalog/webhcat/svr/pom.xml</path> <path>absolute-prefix/hcatalog/webhcat/svr/pom.xml</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
@ -348,8 +348,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-accumulo-handler</artifactId> <artifactId>hive-accumulo-handler</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/accumulo-handler/target/hive-accumulo-handler-3.1.3.jar</path> <path>absolute-prefix/accumulo-handler/target/hive-accumulo-handler-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -358,8 +358,8 @@
<!--artifact> <!--artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-ant</artifactId> <artifactId>hive-ant</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/ant/target/hive-ant-3.1.3.jar</path> <path>absolute-prefix/ant/target/hive-ant-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -368,8 +368,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-hbase-handler</artifactId> <artifactId>hive-hbase-handler</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hbase-handler/target/hive-hbase-handler-3.1.3.jar</path> <path>absolute-prefix/hbase-handler/target/hive-hbase-handler-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -378,8 +378,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-hplsql</artifactId> <artifactId>hive-hplsql</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hplsql/target/hive-hplsql-3.1.3.jar</path> <path>absolute-prefix/hplsql/target/hive-hplsql-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -388,8 +388,8 @@
<!--artifact> <!--artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-hwi</artifactId> <artifactId>hive-hwi</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/hwi/target/hive-hwi-3.1.3.jar</path> <path>absolute-prefix/hwi/target/hive-hwi-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -398,8 +398,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-llap-client</artifactId> <artifactId>hive-llap-client</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/llap-client/target/hive-llap-client-3.1.3.jar</path> <path>absolute-prefix/llap-client/target/hive-llap-client-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -408,8 +408,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-llap-common</artifactId> <artifactId>hive-llap-common</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/llap-common/target/hive-llap-common-3.1.3.jar</path> <path>absolute-prefix/llap-common/target/hive-llap-common-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -418,8 +418,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-llap-ext-client</artifactId> <artifactId>hive-llap-ext-client</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/llap-ext-client/target/hive-llap-ext-client-3.1.3.jar</path> <path>absolute-prefix/llap-ext-client/target/hive-llap-ext-client-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -428,8 +428,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-llap-server</artifactId> <artifactId>hive-llap-server</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/llap-server/target/hive-llap-server-3.1.3.jar</path> <path>absolute-prefix/llap-server/target/hive-llap-server-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -438,8 +438,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-llap-tez</artifactId> <artifactId>hive-llap-tez</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/llap-tez/target/hive-llap-tez-3.1.3.jar</path> <path>absolute-prefix/llap-tez/target/hive-llap-tez-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -448,8 +448,8 @@
<!--artifact> <!--artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-orc</artifactId> <artifactId>hive-orc</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/orc/target/hive-orc-3.1.3.jar</path> <path>absolute-prefix/orc/target/hive-orc-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -458,8 +458,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-service-rpc</artifactId> <artifactId>hive-service-rpc</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/service-rpc/target/hive-service-rpc-3.1.3.jar</path> <path>absolute-prefix/service-rpc/target/hive-service-rpc-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -469,8 +469,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.shims</groupId> <groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-0.23</artifactId> <artifactId>hive-shims-0.23</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/shims/0.23/target/hive-shims-0.23-3.1.3.jar</path> <path>absolute-prefix/shims/0.23/target/hive-shims-0.23-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -479,8 +479,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.shims</groupId> <groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-common</artifactId> <artifactId>hive-shims-common</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/shims/common/target/hive-shims-common-3.1.3.jar</path> <path>absolute-prefix/shims/common/target/hive-shims-common-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -489,8 +489,8 @@
<artifact> <artifact>
<groupId>org.apache.hive.shims</groupId> <groupId>org.apache.hive.shims</groupId>
<artifactId>hive-shims-scheduler</artifactId> <artifactId>hive-shims-scheduler</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/shims/scheduler/target/hive-shims-scheduler-3.1.3.jar</path> <path>absolute-prefix/shims/scheduler/target/hive-shims-scheduler-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -500,8 +500,8 @@
<!--artifact> <!--artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-storage-api</artifactId> <artifactId>hive-storage-api</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/storage-api/target/hive-storage-api-3.1.3.jar</path> <path>absolute-prefix/storage-api/target/hive-storage-api-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -510,8 +510,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-testutils</artifactId> <artifactId>hive-testutils</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/testutils/target/hive-testutils-3.1.3.jar</path> <path>absolute-prefix/testutils/target/hive-testutils-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -520,8 +520,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-classification</artifactId> <artifactId>hive-classification</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/classification/target/hive-classification-3.1.3.jar</path> <path>absolute-prefix/classification/target/hive-classification-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -530,8 +530,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-druid-handler</artifactId> <artifactId>hive-druid-handler</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/druid-handler/target/hive-druid-handler-3.1.3.jar</path> <path>absolute-prefix/druid-handler/target/hive-druid-handler-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -540,8 +540,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc-handler</artifactId> <artifactId>hive-jdbc-handler</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/jdbc-handler/target/hive-jdbc-handler-3.1.3.jar</path> <path>absolute-prefix/jdbc-handler/target/hive-jdbc-handler-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -550,8 +550,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-kryo-registrator</artifactId> <artifactId>hive-kryo-registrator</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/kryo-registrator/target/hive-kryo-registrator-3.1.3.jar</path> <path>absolute-prefix/kryo-registrator/target/hive-kryo-registrator-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -560,8 +560,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-standalone-metastore</artifactId> <artifactId>hive-standalone-metastore</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/standalone-metastore/target/hive-standalone-metastore-3.1.3.jar</path> <path>absolute-prefix/standalone-metastore/target/hive-standalone-metastore-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -570,8 +570,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-streaming</artifactId> <artifactId>hive-streaming</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/streaming/target/hive-streaming-3.1.3.jar</path> <path>absolute-prefix/streaming/target/hive-streaming-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -580,8 +580,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-upgrade-acid</artifactId> <artifactId>hive-upgrade-acid</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/upgrade-acid/target/hive-upgrade-acid-3.1.3.jar</path> <path>absolute-prefix/upgrade-acid/target/hive-upgrade-acid-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>
@ -590,8 +590,8 @@
<artifact> <artifact>
<groupId>org.apache.hive</groupId> <groupId>org.apache.hive</groupId>
<artifactId>hive-vector-code-gen</artifactId> <artifactId>hive-vector-code-gen</artifactId>
<version>3.1.3</version> <version>3.1.2</version>
<path>absolute-prefix/vector-code-gen/target/hive-vector-code-gen-3.1.3.jar</path> <path>absolute-prefix/vector-code-gen/target/hive-vector-code-gen-3.1.2.jar</path>
<properties> <properties>
<type>jar</type> <type>jar</type>
<requiresJava>1.6</requiresJava> <requiresJava>1.6</requiresJava>