Compare commits

..

11 Commits

Author SHA1 Message Date
openeuler-ci-bot
3093c90ccf
!22 [sync] PR-21: Fix riscv64 support
From: @openeuler-sync-bot 
Reviewed-by: @wenwj0 
Signed-off-by: @wenwj0
2024-06-07 15:54:07 +00:00
Dingli Zhang
e26347e2e7 Fix riscv64 support
(cherry picked from commit 4f60bee17bbba279b4cacdd13721253298e9517d)
2024-06-03 10:50:26 +08:00
openeuler-ci-bot
d5fe269b50
!19 [sync] PR-18: remove unnecessary require
From: @openeuler-sync-bot 
Reviewed-by: @yangzhao_kl 
Signed-off-by: @yangzhao_kl
2024-05-09 06:23:47 +00:00
xiexing01
557ee067ba remove unnecessary require
(cherry picked from commit f30ec9a9e6954de9db7788cee22d5c482ecfb934)
2024-05-09 08:45:18 +08:00
yufishyou
a04ea3fae8 !10 update hbase to 2.5.0
From: @yufihyou 
Reviewed-by: @wenwj0 
Signed-off-by: @wenwj0
2023-09-13 03:33:17 +00:00
openeuler-ci-bot
9545318447
!7 更新README.md中部署指南等链接
From: @wenwj0 
Reviewed-by: @macchen1 
Signed-off-by: @macchen1
2023-08-21 09:16:38 +00:00
Weijian Wen
31350a7383 update Readme.md
Signed-off-by: Weijian Wen <wenweijian2@huawei.com>
2023-07-26 15:26:33 +08:00
wenwj0
fc719c52dc update readme. 2023-07-13 00:32:20 +08:00
wenwj0
96083f61b8 update README.md 2023-07-08 23:23:38 +08:00
openeuler-ci-bot
c618d23f39
!6 更新readme文件
From: @macchen1 
Reviewed-by: @wuzeyi1 
Signed-off-by: @wuzeyi1
2022-06-30 12:16:50 +00:00
xiexing
462ab2c8e1
update README.md. 2022-06-29 09:12:07 +00:00
8 changed files with 183 additions and 160 deletions

Binary file not shown.

View File

@ -1,11 +1,24 @@
# hbase
#### 介绍
A Distributed Storage System for Structured Data
HBase 是一种分布式、可扩展、支持海量数据存储的 NoSQL 数据库.
#### 软件架构
软件架构说明
- Master
Master 是所有 Region Server 的管理者,其实现类为 HMaster(服务器上有个HMaster进程),主要作用如下: 对于表的操作:create, delete, alter对于 RegionServer 的操作:分配 regions 到每个 RegionServer监控每个 RegionServer的状态负载均衡和故障转移。即负责ddl操作。
- Region Server
Region Server 为 Region 的管理者,其实现类为 HRegionServer(服务器上有个HRegionServer进程),主要作用如下: 对于数据的操作:get, put, delete(负责dml操作);对于 Region 的操作:splitRegion、compactRegion。
- 这里是列表文本Zookeeper
HBase 通过 Zookeeper 来做 Master 的高可用、RegionServer 的监控、元数据的入口以及 集群配置的维护等工作。
- 4. HDFS
HDFS 为 HBase 提供最终的底层数据存储服务,同时为 HBase 提供高可用的支持。
#### ARM支持
1. [移植指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E7%A7%BB%E6%A4%8D%E6%8C%87%E5%8D%97/hbase.md)
2. [部署指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E9%83%A8%E7%BD%B2%E6%8C%87%E5%8D%97/hbase.md)
3. [调优指南](https://gitee.com/openeuler/bigdata/blob/master/Docs/%E8%B0%83%E4%BC%98%E6%8C%87%E5%8D%97/hbaseOptimization.md)
#### 安装教程

13
fix-riscv64-support.patch Normal file
View File

@ -0,0 +1,13 @@
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
index fbad0da..4897e7f 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/JVM.java
@@ -54,6 +54,8 @@ public class JVM {
System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("amd64");
private static final boolean aarch64 =
System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("aarch64");
+ private static final boolean riscv64 =
+ System.getProperty("os.arch") != null && System.getProperty("os.arch").contains("riscv64");
private static final String JVMVersion = System.getProperty("java.version");

View File

@ -29,7 +29,7 @@
</property>
<property>
<name>hbase.rootdir</name>
<value>hdfs://localhost:8020/hbase</value>
<value>hdfs://localhost:9000/hbase</value>
<description>The directory shared by RegionServers.
</description>
</property>

View File

@ -7,8 +7,8 @@
%global package_native 0
Name: hbase
Version: 2.2.5
Release: 1
Version: 2.5.0
Release: 3
Summary: A database for Apache Hadoop
License: Apache-2.0 and BSD and CPL-1.0 and EPL-1.0 and MIT
URL: http://hbase.apache.org/
@ -17,6 +17,9 @@ Source1: %{name}.logrotate
Source2: %{name}-site.xml
Source3: %{name}.service.template
Source4: xmvn-reactor
Source5: protoc-3.21.1-linux-riscv64.exe
Patch0: upgrade_os-maven_plugin_to_1.7.1.patch
Patch1: fix-riscv64-support.patch
BuildArch: noarch
BuildRequires: cmake
@ -27,23 +30,6 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: java-1.8.0-openjdk-devel maven hostname maven-local protobuf2-devel protobuf2-compiler protobuf2
Requires: java-1.8.0-openjdk
# Required for the shell
Requires: bytelist
Requires: invokebinder
Requires: jcodings
Requires: jansi
Requires: jline
Requires: jnr-ffi
Requires: jnr-posix
Requires: jnr-constants
# Documenting the dep here, but it's detected in autoRequires
Requires: joda-time
Requires: joni
Requires: objectweb-asm
Requires: apache-commons-lang3
Requires: glassfish-el-api
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd
@ -75,6 +61,12 @@ This package contains the API documentation for %{name}.
%prep
%setup -qn %{name}-rel-%{version}
%patch0 -p1
%if "%{_arch}" == "riscv64"
%patch1 -p1
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-riscv64 -Dpackaging=exe -Dfile=/usr/bin/protoc
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=3.21.1 -Dclassifier=linux-riscv64 -Dpackaging=exe -Dfile=%{SOURCE5}
%endif
mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/bin/protoc
cp %{SOURCE4} ./.xmvn-reactor
echo `pwd` > absolute_prefix.log
@ -83,6 +75,9 @@ absolute_prefix=`head -n 1 absolute_prefix.log`
sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor
%build
%if "%{_arch}" == "riscv64"
export MAVEN_OPTS="-Xms2048M -Xmx8000M"
%endif
mvn -Pnative clean install -DskipTests assembly:single -Prelease -Dmaven.javadoc.skip=true -Drat.skip=true
%if %{with tests}
@ -154,27 +149,12 @@ pushd %{name}-assembly/target/%{name}-%{version}
cp -arp %{name}-webapps/* %{buildroot}/%{_datadir}/%{name}/%{name}-webapps
# Dependency jars
install -m 0755 lib/hbase-shaded-miscellaneous-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-miscellaneous-2.2.1.jar
install -m 0755 lib/hbase-shaded-netty-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-netty-2.2.1.jar
install -m 0755 lib/hbase-shaded-protobuf-2.2.1.jar %{buildroot}%{_datadir}/java/%{name}/hbase-shaded-protobuf-2.2.1.jar
install lib/*.jar %{buildroot}/%{_datadir}/%{name}/lib
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tools-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}*-tests.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/%{name}-testing-util-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/tomcat-*.jar
rm -f %{buildroot}/%{_datadir}/%{name}/lib/servlet-api-*.jar
pushd %{buildroot}/%{_datadir}/%{name}/lib
# Replace jar files with symlinks for all jars from the build
for f in `ls hbase*`
do
n=`echo $f | sed "s/-%{version}//"`
rm -f $f
%{__ln_s} %{_javadir}/%{name}/$n $f
done
popd
# jruby bits
cp -arf lib/ruby %{buildroot}/%{_datadir}/%{name}/lib
# Other files
cp -arf lib/ruby %{buildroot}/%{_datadir}/%{name}/lib
cp -arf lib/client-facing-thirdparty %{buildroot}/%{_datadir}/%{name}/lib
cp -arf lib/shaded-clients %{buildroot}/%{_datadir}/%{name}/lib
%if 0
# Native libraries
@ -189,10 +169,6 @@ pushd %{buildroot}/%{_datadir}/%{name}
%{__ln_s} %{_var}/run/%{name} pids
popd
# Add jars to the classpath for hbase shell
echo "export HBASE_CLASSPATH_PREFIX=$(build-classpath objectweb-asm/asm objectweb-asm/asm-commons jnr-posix jnr-constants joni jruby bytelist jcodings jnr-ffi joda-time jline jansi invokebinder):\$HBASE_CLASSPATH" > %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env-shell.sh
echo "export JRUBY_HOME=/usr/share/jruby" >> %{buildroot}/%{_sysconfdir}/%{name}/%{name}-env-shell.sh
# Ensure /var/run directory is recreated on boot
echo "d %{_var}/run/%{name} 0775 hbase hbase -" > %{buildroot}/%{_tmpfilesdir}/%{name}.conf
@ -289,9 +265,6 @@ fi
%attr(0755,hbase,hbase) %dir %{_var}/cache/%{name}
%attr(0755,hbase,hbase) %dir %{_var}/log/%{name}
%attr(0755,hbase,hbase) %dir %{_var}/run/%{name}
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-miscellaneous-2.2.1.jar
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-netty-2.2.1.jar
%attr(0755,root,root) %{_datadir}/java/%{name}/hbase-shaded-protobuf-2.2.1.jar
%if %{package_native}
%files native
@ -300,5 +273,16 @@ fi
%endif
%changelog
* Wed May 29 2024 Dingli Zhang <dingli@iscas.ac.cn> - 2.5.0-3
- Fix riscv64 support
- Upgrade os-maven-plugin to 1.7.1
- Remove useless settings.xml
* Wed May 8 2024 xiexing <xiexing4@hisilicon.com> - 2.5.0-2
- remove unnecessary require
* Tue Sep 12 2023 Youjing Yu <2534849757@qq.com> 2.5.0-1
- Upgrade Hbase Version to 2.5.0
* Tue Mar 16 2021 Ge Wang <wangge20@huawei.com> 2.2.5-1
- Init package

Binary file not shown.

View File

@ -0,0 +1,13 @@
diff --git a/pom.xml b/pom.xml
index b603ca4..dcd21fd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -621,7 +621,7 @@
<maven.javadoc.version>3.4.0</maven.javadoc.version>
<maven.warbucks.version>1.1.0</maven.warbucks.version>
<maven.project.info.report.version>3.1.2</maven.project.info.report.version>
- <os.maven.version>1.5.0.Final</os.maven.version>
+ <os.maven.version>1.7.1</os.maven.version>
<findbugs-annotations.version>1.3.9-1</findbugs-annotations.version>
<spotbugs.version>4.2.2</spotbugs.version>
<spotbugs.maven.version>4.2.0</spotbugs.maven.version>

View File

@ -5,253 +5,253 @@
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-assembly</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-assembly/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-client/target/hbase-client-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-client/target/hbase-client-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-client/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-common/target/hbase-common-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-common/target/hbase-common-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-common/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-examples</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-examples/target/hbase-examples-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-examples/target/hbase-examples-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-examples</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-examples/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop-compat</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop-compat/target/hbase-hadoop-compat-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-hadoop-compat/target/hbase-hadoop-compat-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop-compat</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-hadoop-compat/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop2-compat</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hadoop2-compat/target/hbase-hadoop2-compat-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-hadoop2-compat/target/hbase-hadoop2-compat-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hadoop2-compat</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-hadoop2-compat/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-it</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-it/target/hbase-it-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-it/target/hbase-it-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-it</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-it/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-prefix-tree</artifactId>
<version>2.2.5</version>
<version>2.5.0</version>
<path>.</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-prefix-tree</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path></path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-protocol/target/hbase-protocol-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-protocol/target/hbase-protocol-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-protocol/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-server/target/hbase-server-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-server/target/hbase-server-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-server/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shell</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shell/target/hbase-shell-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-shell/target/hbase-shell-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shell</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-shell/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-thrift</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-thrift/target/hbase-thrift-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-thrift/target/hbase-thrift-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-thrift</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/hbase-thrift/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
@ -259,192 +259,192 @@
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<extension>pom</extension>
<version>2.2.5</version>
<version>2.5.0</version>
<path>absolute-prefix/pom.xml</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-annotations</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-annotations/target/hbase-annotations-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-annotations/target/hbase-annotations-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-endpoint</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-endpoint/target/hbase-endpoint-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-endpoint/target/hbase-endpoint-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-external-blockcache</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-external-blockcache/target/hbase-external-blockcache-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-external-blockcache/target/hbase-external-blockcache-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-hbtop</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-hbtop/target/hbase-hbtop-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-hbtop/target/hbase-hbtop-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-http</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-http/target/hbase-http-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-http/target/hbase-http-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-mapreduce</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-mapreduce/target/hbase-mapreduce-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-mapreduce/target/hbase-mapreduce-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-metrics</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-metrics/target/hbase-metrics-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-metrics/target/hbase-metrics-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-metrics-api</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-metrics-api/target/hbase-metrics-api-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-metrics-api/target/hbase-metrics-api-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-procedure</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-procedure/target/hbase-procedure-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-procedure/target/hbase-procedure-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-protocol-shaded</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-protocol-shaded/target/hbase-protocol-shaded-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-protocol-shaded/target/hbase-protocol-shaded-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-replication</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-replication/target/hbase-replication-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-replication/target/hbase-replication-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-resource-bundle</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-resource-bundle/target/hbase-resource-bundle-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-resource-bundle/target/hbase-resource-bundle-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-rest</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-rest/target/hbase-rest-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-rest/target/hbase-rest-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-rsgroup</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-rsgroup/target/hbase-rsgroup-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-rsgroup/target/hbase-rsgroup-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<!--artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-miscellaneous</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-miscellaneous/target/hbase-shaded-miscellaneous-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-shaded-miscellaneous/target/hbase-shaded-miscellaneous-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-netty</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-netty/target/hbase-shaded-netty-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-shaded-netty/target/hbase-shaded-netty-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-shaded-protobuf</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-shaded-protobuf/target/hbase-shaded-protobuf-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-shaded-protobuf/target/hbase-shaded-protobuf-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact-->
<artifact>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-zookeeper</artifactId>
<version>2.2.5</version>
<path>absolute-prefix/hbase-zookeeper/target/hbase-zookeeper-2.2.5.jar</path>
<version>2.5.0</version>
<path>absolute-prefix/hbase-zookeeper/target/hbase-zookeeper-2.5.0.jar</path>
<properties>
<type>jar</type>
<requiresJava>1.6</requiresJava>
<requiresJava>1.8</requiresJava>
</properties>
</artifact>
</artifacts>