2010-02-22 18:49:24 -05:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<!--
|
2011-10-23 19:03:32 -04:00
|
|
|
|
/**
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
|
* distributed with this work for additional information
|
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
* to you 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.
|
|
|
|
|
*/
|
2012-09-18 16:03:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ON MVN COMPILE NOT WORKING
|
|
|
|
|
|
|
|
|
|
If you wondering why 'mvn compile' does not work building HBase
|
|
|
|
|
(in particular, if you are doing it for the first time), instead do
|
|
|
|
|
'mvn package'. If you are interested in the full story, see
|
|
|
|
|
https://issues.apache.org/jira/browse/HBASE-6795.
|
|
|
|
|
|
2011-10-23 19:03:32 -04:00
|
|
|
|
-->
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2010-10-03 23:19:26 -04:00
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache</groupId>
|
|
|
|
|
<artifactId>apache</artifactId>
|
2020-05-02 08:35:16 -04:00
|
|
|
|
<version>23</version>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<relativePath/>
|
|
|
|
|
<!-- no parent resolution -->
|
2010-10-03 23:19:26 -04:00
|
|
|
|
</parent>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase</artifactId>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<packaging>pom</packaging>
|
2017-06-07 01:04:39 -04:00
|
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<name>Apache HBase</name>
|
2010-06-08 04:16:12 -04:00
|
|
|
|
<description>
|
2013-03-11 00:11:33 -04:00
|
|
|
|
Apache HBase is the Hadoop database. Use it when you need
|
2010-10-03 23:19:26 -04:00
|
|
|
|
random, realtime read/write access to your Big Data.
|
2010-02-24 15:17:17 -05:00
|
|
|
|
This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters
|
|
|
|
|
of commodity hardware.
|
|
|
|
|
</description>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<url>https://hbase.apache.org</url>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<inceptionYear>2007</inceptionYear>
|
2016-08-02 01:54:50 -04:00
|
|
|
|
<!-- Set here so we can consistently use the correct name, even on branches with
|
|
|
|
|
an ASF parent pom older than v15. Also uses the url from v18.
|
|
|
|
|
-->
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<modules>
|
2017-07-06 17:13:26 -04:00
|
|
|
|
<module>hbase-build-configuration</module>
|
2017-08-17 23:59:35 -04:00
|
|
|
|
<module>hbase-replication</module>
|
2020-04-22 02:55:38 -04:00
|
|
|
|
<module>hbase-balancer</module>
|
HBASE-18640 Move mapreduce out of hbase-server into separate module.
- Moves out o.a.h.h.{mapred, mapreduce} to new hbase-mapreduce module which depends
on hbase-server because of classes like *Snapshot{Input,Output}Format.java, WALs, replication, etc
- hbase-backup depends on it for WALPlayer and MR job stuff
- A bunch of tools needed to be pulled into hbase-mapreduce becuase of their dependencies on MR.
These are: CompactionTool, LoadTestTool, PerformanceEvaluation, ExportSnapshot
This is better place of them than hbase-server. But ideal place would be in separate hbase-tools module.
- There were some tests in hbase-server which were digging into these tools for static util funtions or
confs. Moved these to better/easily shared place. For eg. security related stuff to HBaseKerberosUtils.
- Note that hbase-mapreduce has secondPartExecution tests. On my machine they took like 20 min, so maybe
more on apache jenkins. That's basically equal reduction of runtime of hbase-server tests, which is a
big win!
Change-Id: Ieeb7235014717ca83ee5cb13b2a27fddfa6838e8
2017-08-20 17:34:16 -04:00
|
|
|
|
<module>hbase-mapreduce</module>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<module>hbase-resource-bundle</module>
|
2017-10-21 21:12:07 -04:00
|
|
|
|
<module>hbase-http</module>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<module>hbase-server</module>
|
2013-09-20 16:44:22 -04:00
|
|
|
|
<module>hbase-thrift</module>
|
2013-09-23 12:40:51 -04:00
|
|
|
|
<module>hbase-shell</module>
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<module>hbase-protocol-shaded</module>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
<module>hbase-client</module>
|
2012-07-17 18:02:06 -04:00
|
|
|
|
<module>hbase-hadoop-compat</module>
|
2012-05-30 19:51:44 -04:00
|
|
|
|
<module>hbase-common</module>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
<module>hbase-procedure</module>
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<module>hbase-endpoint</module>
|
2012-06-28 22:56:20 -04:00
|
|
|
|
<module>hbase-it</module>
|
2012-11-06 16:22:27 -05:00
|
|
|
|
<module>hbase-examples</module>
|
2013-03-29 14:49:42 -04:00
|
|
|
|
<module>hbase-assembly</module>
|
2013-10-02 17:59:19 -04:00
|
|
|
|
<module>hbase-testing-util</module>
|
2014-09-22 21:46:35 -04:00
|
|
|
|
<module>hbase-annotations</module>
|
2014-10-07 18:08:54 -04:00
|
|
|
|
<module>hbase-rest</module>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<module>hbase-checkstyle</module>
|
2015-08-28 19:13:36 -04:00
|
|
|
|
<module>hbase-external-blockcache</module>
|
2015-04-21 01:20:19 -04:00
|
|
|
|
<module>hbase-shaded</module>
|
2016-02-19 09:39:43 -05:00
|
|
|
|
<module>hbase-archetypes</module>
|
2017-01-25 14:47:35 -05:00
|
|
|
|
<module>hbase-metrics-api</module>
|
|
|
|
|
<module>hbase-metrics</module>
|
2017-08-22 20:14:48 -04:00
|
|
|
|
<module>hbase-backup</module>
|
2017-11-13 14:42:33 -05:00
|
|
|
|
<module>hbase-zookeeper</module>
|
2019-09-07 01:02:52 -04:00
|
|
|
|
<module>hbase-hbtop</module>
|
2020-05-06 02:40:21 -04:00
|
|
|
|
<module>hbase-asyncfs</module>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<module>hbase-logging</module>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</modules>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<scm>
|
2019-01-15 06:06:03 -05:00
|
|
|
|
<connection>scm:git:git://gitbox.apache.org/repos/asf/hbase.git</connection>
|
2019-01-08 05:15:54 -05:00
|
|
|
|
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/hbase.git</developerConnection>
|
|
|
|
|
<url>https://gitbox.apache.org/repos/asf?p=hbase.git</url>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</scm>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<issueManagement>
|
|
|
|
|
<system>JIRA</system>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<url>https://issues.apache.org/jira/browse/HBASE</url>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</issueManagement>
|
|
|
|
|
<mailingLists>
|
|
|
|
|
<mailingList>
|
|
|
|
|
<name>User List</name>
|
2010-05-20 01:24:32 -04:00
|
|
|
|
<subscribe>user-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>user-unsubscribe@hbase.apache.org</unsubscribe>
|
|
|
|
|
<post>user@hbase.apache.org</post>
|
2019-01-23 15:58:52 -05:00
|
|
|
|
<archive>https://lists.apache.org/list.html?user@hbase.apache.org</archive>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<otherArchives>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<otherArchive>https://dir.gmane.org/gmane.comp.java.hadoop.hbase.user</otherArchive>
|
|
|
|
|
<otherArchive>https://search-hadoop.com/?q=&fc_project=HBase</otherArchive>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</otherArchives>
|
|
|
|
|
</mailingList>
|
|
|
|
|
<mailingList>
|
|
|
|
|
<name>Developer List</name>
|
2010-05-20 01:24:32 -04:00
|
|
|
|
<subscribe>dev-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>dev-unsubscribe@hbase.apache.org</unsubscribe>
|
|
|
|
|
<post>dev@hbase.apache.org</post>
|
2019-01-23 15:58:52 -05:00
|
|
|
|
<archive>https://lists.apache.org/list.html?dev@hbase.apache.org</archive>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<otherArchives>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<otherArchive>https://dir.gmane.org/gmane.comp.java.hadoop.hbase.devel</otherArchive>
|
|
|
|
|
<otherArchive>https://search-hadoop.com/?q=&fc_project=HBase</otherArchive>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</otherArchives>
|
|
|
|
|
</mailingList>
|
|
|
|
|
<mailingList>
|
|
|
|
|
<name>Commits List</name>
|
2010-05-20 01:24:32 -04:00
|
|
|
|
<subscribe>commits-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>commits-unsubscribe@hbase.apache.org</unsubscribe>
|
2019-01-23 15:58:52 -05:00
|
|
|
|
<archive>https://lists.apache.org/list.html?commits@hbase.apache.org</archive>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</mailingList>
|
2010-03-05 16:10:09 -05:00
|
|
|
|
<mailingList>
|
|
|
|
|
<name>Issues List</name>
|
2010-05-20 01:24:32 -04:00
|
|
|
|
<subscribe>issues-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>issues-unsubscribe@hbase.apache.org</unsubscribe>
|
2019-01-23 15:58:52 -05:00
|
|
|
|
<archive>https://lists.apache.org/list.html?issues@hbase.apache.org</archive>
|
2010-03-05 16:10:09 -05:00
|
|
|
|
</mailingList>
|
2013-06-24 13:57:12 -04:00
|
|
|
|
<mailingList>
|
|
|
|
|
<name>Builds List</name>
|
|
|
|
|
<subscribe>builds-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>builds-unsubscribe@hbase.apache.org</unsubscribe>
|
2019-01-23 15:58:52 -05:00
|
|
|
|
<archive>https://lists.apache.org/list.html?builds@hbase.apache.org</archive>
|
2013-06-24 13:57:12 -04:00
|
|
|
|
</mailingList>
|
2020-01-30 13:22:46 -05:00
|
|
|
|
<mailingList>
|
|
|
|
|
<name>User (ZH) List</name>
|
|
|
|
|
<subscribe>user-zh-subscribe@hbase.apache.org</subscribe>
|
|
|
|
|
<unsubscribe>user-zh-unsubscribe@hbase.apache.org</unsubscribe>
|
|
|
|
|
<post>user-zh@hbase.apache.org</post>
|
|
|
|
|
<archive>https://lists.apache.org/list.html?user-zh@hbase.apache.org</archive>
|
|
|
|
|
</mailingList>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</mailingLists>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<developers>
|
2017-07-26 08:14:36 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>achouhan</id>
|
|
|
|
|
<name>Abhishek Singh Chouhan</name>
|
|
|
|
|
<email>achouhan@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2013-04-02 01:02:44 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>acube123</id>
|
|
|
|
|
<name>Amitanand S. Aiyer</name>
|
|
|
|
|
<email>acube123@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-06-08 03:18:03 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>allan163</id>
|
|
|
|
|
<name>Allan Yang</name>
|
|
|
|
|
<email>allan163@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2016-06-16 18:24:19 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>appy</id>
|
|
|
|
|
<name>Apekshit Sharma</name>
|
|
|
|
|
<email>appy@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-03-27 08:21:54 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>anastasia</id>
|
|
|
|
|
<name>Anastasia Braginsky</name>
|
|
|
|
|
<email>anastasia@apache.org</email>
|
|
|
|
|
<timezone>+2</timezone>
|
|
|
|
|
</developer>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<developer>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<id>apurtell</id>
|
|
|
|
|
<name>Andrew Purtell</name>
|
|
|
|
|
<email>apurtell@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2010-12-02 19:06:57 -05:00
|
|
|
|
</developer>
|
2013-03-10 01:44:12 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>anoopsamjohn</id>
|
|
|
|
|
<name>Anoop Sam John</name>
|
|
|
|
|
<email>anoopsamjohn@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2015-06-11 08:28:20 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>antonov</id>
|
|
|
|
|
<name>Mikhail Antonov</name>
|
|
|
|
|
<email>antonov@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-03-30 01:38:21 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>ashishsinghi</id>
|
|
|
|
|
<name>Ashish Singhi</name>
|
|
|
|
|
<email>ashishsinghi@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2017-06-16 19:24:07 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>ashu</id>
|
|
|
|
|
<name>Ashu Pachauri</name>
|
|
|
|
|
<email>ashu@apache.org</email>
|
2017-11-06 01:47:41 -05:00
|
|
|
|
<timezone>+5</timezone>
|
2017-06-16 19:24:07 -04:00
|
|
|
|
</developer>
|
2020-02-06 16:35:57 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>bharathv</id>
|
|
|
|
|
<name>Bharath Vissapragada</name>
|
|
|
|
|
<email>bharathv@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-11-20 21:44:12 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>binlijin</id>
|
|
|
|
|
<name>Lijin Bin</name>
|
|
|
|
|
<email>binlijin@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2018-08-11 12:30:29 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>brfrn169</id>
|
|
|
|
|
<name>Toshihiro Suzuki</name>
|
|
|
|
|
<email>brfrn169@apache.org</email>
|
|
|
|
|
<timezone>+9</timezone>
|
|
|
|
|
</developer>
|
2014-12-01 17:52:40 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>busbey</id>
|
|
|
|
|
<name>Sean Busbey</name>
|
|
|
|
|
<email>busbey@apache.org</email>
|
|
|
|
|
<timezone>-6</timezone>
|
|
|
|
|
</developer>
|
2015-11-13 22:20:08 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>chenheng</id>
|
|
|
|
|
<name>Heng Chen</name>
|
|
|
|
|
<email>chenheng@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2017-03-17 15:15:17 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>chia7712</id>
|
|
|
|
|
<name>Chia-Ping Tsai</name>
|
|
|
|
|
<email>chia7712@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2013-02-07 14:22:20 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>ddas</id>
|
|
|
|
|
<name>Devaraj Das</name>
|
|
|
|
|
<email>ddas@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-08-31 23:18:30 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>dimaspivak</id>
|
|
|
|
|
<name>Dima Spivak</name>
|
|
|
|
|
<email>dimaspivak@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<developer>
|
2011-08-01 20:09:31 -04:00
|
|
|
|
<id>dmeil</id>
|
|
|
|
|
<name>Doug Meil</name>
|
2011-08-06 19:58:22 -04:00
|
|
|
|
<email>dmeil@apache.org</email>
|
2011-08-01 20:09:31 -04:00
|
|
|
|
<timezone>-5</timezone>
|
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>eclark</id>
|
|
|
|
|
<name>Elliott Clark</name>
|
|
|
|
|
<email>eclark@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-12-11 15:17:54 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>elserj</id>
|
|
|
|
|
<name>Josh Elser</name>
|
|
|
|
|
<email>elserj@apache.org</email>
|
|
|
|
|
<timezone>-5</timezone>
|
|
|
|
|
</developer>
|
2012-09-25 16:34:55 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>enis</id>
|
|
|
|
|
<name>Enis Soztutar</name>
|
|
|
|
|
<email>enis@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-03-19 03:58:51 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>eshcar</id>
|
|
|
|
|
<name>Eshcar Hillel</name>
|
|
|
|
|
<email>eshcar@apache.org</email>
|
|
|
|
|
<timezone>+2</timezone>
|
|
|
|
|
</developer>
|
2014-03-12 17:21:37 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>fenghh</id>
|
|
|
|
|
<name>Honghua Feng</name>
|
|
|
|
|
<email>fenghh@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2010-12-02 19:06:57 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>garyh</id>
|
|
|
|
|
<name>Gary Helmling</name>
|
|
|
|
|
<email>garyh@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</developer>
|
2012-09-07 16:30:29 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>gchanan</id>
|
|
|
|
|
<name>Gregory Chanan</name>
|
|
|
|
|
<email>gchanan@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2018-06-04 02:54:39 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>gxcheng</id>
|
|
|
|
|
<name>Guangxu Cheng</name>
|
|
|
|
|
<email>gxcheng@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2017-08-23 18:13:05 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>huaxiangsun</id>
|
|
|
|
|
<name>Huaxiang Sun</name>
|
|
|
|
|
<email>huaxiangsun@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jdcryans</id>
|
|
|
|
|
<name>Jean-Daniel Cryans</name>
|
|
|
|
|
<email>jdcryans@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2013-06-03 19:25:47 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jeffreyz</id>
|
|
|
|
|
<name>Jeffrey Zhong</name>
|
|
|
|
|
<email>jeffreyz@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2015-04-02 23:36:42 -04:00
|
|
|
|
</developer>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>jerryjch</id>
|
|
|
|
|
<name>Jing Chen (Jerry) He</name>
|
|
|
|
|
<email>jerryjch@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2013-06-03 19:25:47 -04:00
|
|
|
|
</developer>
|
2012-11-09 18:58:44 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jyates</id>
|
|
|
|
|
<name>Jesse Yates</name>
|
|
|
|
|
<email>jyates@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jgray</id>
|
|
|
|
|
<name>Jonathan Gray</name>
|
2011-08-01 20:09:31 -04:00
|
|
|
|
<email>jgray@fb.com</email>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-06-22 07:21:21 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jingchengdu</id>
|
|
|
|
|
<name>Jingcheng Du</name>
|
|
|
|
|
<email>jingchengdu@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2015-07-01 20:52:20 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>esteban</id>
|
|
|
|
|
<name>Esteban Gutierrez</name>
|
|
|
|
|
<email>esteban@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-10-26 04:36:08 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>janh</id>
|
|
|
|
|
<name>Jan Hentschel</name>
|
|
|
|
|
<email>janh@apache.org</email>
|
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
|
</developer>
|
2012-01-19 01:29:01 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jmhsieh</id>
|
|
|
|
|
<name>Jonathan Hsieh</name>
|
|
|
|
|
<email>jmhsieh@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2012-06-05 19:40:37 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>jxiang</id>
|
|
|
|
|
<name>Jimmy Xiang</name>
|
|
|
|
|
<email>jxiang@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2011-10-31 16:07:12 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>kannan</id>
|
|
|
|
|
<name>Kannan Muthukkaruppan</name>
|
|
|
|
|
<email>kannan@fb.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>karthik</id>
|
|
|
|
|
<name>Karthik Ranganathan</name>
|
|
|
|
|
<email>kranganathan@fb.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2018-08-27 17:05:49 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>larsfrancke</id>
|
|
|
|
|
<name>Lars Francke</name>
|
|
|
|
|
<email>larsfrancke@apache.org</email>
|
|
|
|
|
<timezone>Europe/Berlin</timezone>
|
|
|
|
|
</developer>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>larsgeorge</id>
|
|
|
|
|
<name>Lars George</name>
|
2010-03-04 12:54:27 -05:00
|
|
|
|
<email>larsgeorge@apache.org</email>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
|
</developer>
|
2011-10-07 22:27:08 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>larsh</id>
|
|
|
|
|
<name>Lars Hofhansl</name>
|
|
|
|
|
<email>larsh@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2013-12-18 17:42:41 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>liangxie</id>
|
|
|
|
|
<name>Liang Xie</name>
|
|
|
|
|
<email>liangxie@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
2015-01-07 03:31:04 -05:00
|
|
|
|
</developer>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>liushaohui</id>
|
|
|
|
|
<name>Shaohui Liu</name>
|
|
|
|
|
<email>liushaohui@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
2013-12-18 17:42:41 -05:00
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>liyin</id>
|
|
|
|
|
<name>Liyin Tang</name>
|
|
|
|
|
<email>liyin.tang@fb.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-03-17 01:05:16 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>liyu</id>
|
|
|
|
|
<name>Yu Li</name>
|
|
|
|
|
<email>liyu@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2012-01-25 15:35:02 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>mbautin</id>
|
|
|
|
|
<name>Mikhail Bautin</name>
|
|
|
|
|
<email>mbautin@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>mbertozzi</id>
|
|
|
|
|
<name>Matteo Bertozzi</name>
|
|
|
|
|
<email>mbertozzi@apache.org</email>
|
|
|
|
|
<timezone>0</timezone>
|
|
|
|
|
</developer>
|
2017-08-03 16:51:34 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>mdrob</id>
|
|
|
|
|
<name>Mike Drob</name>
|
|
|
|
|
<email>mdrob@apache.org</email>
|
|
|
|
|
<timezone>-5</timezone>
|
|
|
|
|
</developer>
|
2018-10-10 03:59:51 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>meszibalu</id>
|
|
|
|
|
<name>Balazs Meszaros</name>
|
|
|
|
|
<email>meszibalu@apache.org</email>
|
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
|
</developer>
|
2014-09-09 00:13:40 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>misty</id>
|
|
|
|
|
<name>Misty Stanley-Jones</name>
|
|
|
|
|
<email>misty@apache.org</email>
|
2017-09-29 13:37:45 -04:00
|
|
|
|
<timezone>-8</timezone>
|
2014-09-09 00:13:40 -04:00
|
|
|
|
</developer>
|
2013-09-10 20:26:08 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>ndimiduk</id>
|
|
|
|
|
<name>Nick Dimiduk</name>
|
|
|
|
|
<email>ndimiduk@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>nkeywal</id>
|
|
|
|
|
<name>Nicolas Liochon</name>
|
|
|
|
|
<email>nkeywal@apache.org</email>
|
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
|
</developer>
|
2010-12-02 16:55:40 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>nspiegelberg</id>
|
|
|
|
|
<name>Nicolas Spiegelberg</name>
|
|
|
|
|
<email>nspiegelberg@fb.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2015-03-02 15:53:18 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>octo47</id>
|
|
|
|
|
<name>Andrey Stepachev</name>
|
|
|
|
|
<email>octo47@gmail.com</email>
|
|
|
|
|
<timezone>0</timezone>
|
|
|
|
|
</developer>
|
2017-10-23 01:41:45 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>openinx</id>
|
|
|
|
|
<name>Zheng Hu</name>
|
|
|
|
|
<email>openinx@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2020-02-09 10:33:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>pankajkumar</id>
|
|
|
|
|
<name>Pankaj Kumar</name>
|
|
|
|
|
<email>pankajkumar@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2018-02-22 13:51:59 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>psomogyi</id>
|
|
|
|
|
<name>Peter Somogyi</name>
|
|
|
|
|
<email>psomogyi@apache.org</email>
|
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>rajeshbabu</id>
|
|
|
|
|
<name>Rajeshbabu Chintaguntla</name>
|
|
|
|
|
<email>rajeshbabu@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>ramkrishna</id>
|
|
|
|
|
<name>Ramkrishna S Vasudevan</name>
|
|
|
|
|
<email>ramkrishna@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2010-02-22 21:11:00 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>rawson</id>
|
|
|
|
|
<name>Ryan Rawson</name>
|
|
|
|
|
<email>rawson@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</developer>
|
2018-06-26 03:27:56 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>reidchan</id>
|
|
|
|
|
<name>Reid Chan</name>
|
|
|
|
|
<email>reidchan@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2019-08-01 17:06:48 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>sakthi</id>
|
|
|
|
|
<name>Sakthi Vel</name>
|
|
|
|
|
<email>sakthi@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2013-02-25 14:48:45 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>sershe</id>
|
|
|
|
|
<name>Sergey Shelukhin</name>
|
|
|
|
|
<email>sershe@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2015-04-01 13:42:28 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>ssrungarapu</id>
|
|
|
|
|
<name>Srikanth Srungarapu</name>
|
|
|
|
|
<email>ssrungarapu@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>stack</id>
|
|
|
|
|
<name>Michael Stack</name>
|
|
|
|
|
<email>stack@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2010-02-22 21:11:00 -05:00
|
|
|
|
</developer>
|
2015-08-20 17:16:35 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>syuanjiang</id>
|
|
|
|
|
<name>Stephen Yuan Jiang</name>
|
|
|
|
|
<email>syuanjiang@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2019-08-05 14:50:49 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>taklwu</id>
|
|
|
|
|
<name>Tak-Lon (Stephen) Wu</name>
|
|
|
|
|
<email>taklwu@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2019-12-02 07:39:24 -05:00
|
|
|
|
</developer>
|
2011-08-04 08:58:32 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>tedyu</id>
|
|
|
|
|
<name>Ted Yu</name>
|
|
|
|
|
<email>yuzhihong@gmail.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
2018-11-13 02:09:16 -05:00
|
|
|
|
</developer>
|
2019-12-02 07:39:24 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>tianjy</id>
|
|
|
|
|
<email>tianjy@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
2011-08-04 08:58:32 -04:00
|
|
|
|
</developer>
|
2010-05-25 02:52:16 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>todd</id>
|
|
|
|
|
<name>Todd Lipcon</name>
|
|
|
|
|
<email>todd@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-07-07 17:15:47 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>toffer</id>
|
|
|
|
|
<name>Francis Liu</name>
|
|
|
|
|
<email>toffer@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-07-26 08:09:47 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>vikasv</id>
|
|
|
|
|
<name>Vikas Vishwakarma</name>
|
|
|
|
|
<email>vikasv@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2014-12-11 20:32:03 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>virag</id>
|
|
|
|
|
<name>Virag Kothari</name>
|
|
|
|
|
<email>virag@yahoo-inc.com</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2019-12-27 09:06:03 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>vjasani</id>
|
|
|
|
|
<name>Viraj Jasani</name>
|
|
|
|
|
<email>vjasani@apache.org</email>
|
|
|
|
|
<timezone>+5</timezone>
|
|
|
|
|
</developer>
|
2019-08-09 00:59:40 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>water</id>
|
|
|
|
|
<name>Xiang Li</name>
|
|
|
|
|
<email>xiangli@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2019-06-07 05:40:27 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>wchevreuil</id>
|
|
|
|
|
<name>Wellington Chevreuil</name>
|
|
|
|
|
<email>wchevreuil@apache.org</email>
|
|
|
|
|
<timezone>0</timezone>
|
|
|
|
|
</developer>
|
2019-02-05 17:12:28 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>xucang</id>
|
|
|
|
|
<name>Xu Cang</name>
|
|
|
|
|
<email>xucang@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2016-11-26 23:01:59 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>yangzhe1991</id>
|
|
|
|
|
<name>Phil Yang</name>
|
|
|
|
|
<email>yangzhe1991@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2016-12-19 21:43:17 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>zghao</id>
|
|
|
|
|
<name>Guanghao Zhang</name>
|
|
|
|
|
<email>zghao@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2015-03-09 19:29:58 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>zhangduo</id>
|
|
|
|
|
<name>Duo Zhang</name>
|
|
|
|
|
<email>zhangduo@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2013-01-03 04:00:07 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>zjushch</id>
|
|
|
|
|
<name>Chunhui Shen</name>
|
|
|
|
|
<email>zjushch@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2017-12-23 00:08:35 -05:00
|
|
|
|
<developer>
|
2017-10-30 14:46:00 -04:00
|
|
|
|
<id>churro</id>
|
|
|
|
|
<name>Rahul Gidwani</name>
|
|
|
|
|
<email>churro@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2017-12-23 00:08:35 -05:00
|
|
|
|
<developer>
|
|
|
|
|
<id>yiliang</id>
|
|
|
|
|
<name>Yi Liang</name>
|
|
|
|
|
<email>yiliang@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2018-03-14 19:59:13 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>zyork</id>
|
|
|
|
|
<name>Zach York</name>
|
|
|
|
|
<email>zyork@apache.org</email>
|
|
|
|
|
<timezone>-8</timezone>
|
|
|
|
|
</developer>
|
2019-05-22 21:47:41 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>meiyi</id>
|
|
|
|
|
<name>Yi Mei</name>
|
|
|
|
|
<email>meiyi@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2020-09-25 07:24:08 -04:00
|
|
|
|
<developer>
|
|
|
|
|
<id>wangzheng</id>
|
|
|
|
|
<name>Zheng (bsglz) Wang</name>
|
|
|
|
|
<email>wangzheng@apache.org</email>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</developers>
|
|
|
|
|
<build>
|
2016-10-27 16:17:59 -04:00
|
|
|
|
<extensions>
|
|
|
|
|
<extension>
|
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
|
<artifactId>os-maven-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${os.maven.version}</version>
|
2016-10-27 16:17:59 -04:00
|
|
|
|
</extension>
|
|
|
|
|
</extensions>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<!-- Plugin versions are inherited from ASF parent pom: https://maven.apache.org/pom/asf/
|
|
|
|
|
For specific version use a property and define it in the parent pom.
|
|
|
|
|
-->
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2012-03-02 12:26:34 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2012-03-06 15:25:01 -05:00
|
|
|
|
<!--You need this profile. It'll sign your artifacts.
|
|
|
|
|
I'm not sure if this config. actually works though.
|
|
|
|
|
I've been specifying -Papache-release on the command-line
|
|
|
|
|
-->
|
|
|
|
|
<releaseProfiles>apache-release</releaseProfiles>
|
2012-03-02 12:26:34 -05:00
|
|
|
|
<!--This stops our running tests for each stage of maven release.
|
2012-10-25 16:50:41 -04:00
|
|
|
|
But it builds the test jar. From SUREFIRE-172.
|
2012-03-02 12:26:34 -05:00
|
|
|
|
-->
|
2014-09-09 01:01:03 -04:00
|
|
|
|
<arguments>-Dmaven.test.skip.exec ${arguments}</arguments>
|
2014-12-16 19:58:42 -05:00
|
|
|
|
<goals>${goals}</goals>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<pomFileName>pom.xml</pomFileName>
|
2012-03-02 12:26:34 -05:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<plugin>
|
2014-10-29 16:11:44 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${compileSource}</source>
|
|
|
|
|
<target>${compileSource}</target>
|
|
|
|
|
<showWarnings>true</showWarnings>
|
2010-03-22 23:56:52 -04:00
|
|
|
|
<showDeprecation>false</showDeprecation>
|
2014-11-11 20:45:37 -05:00
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
2012-07-10 22:44:53 -04:00
|
|
|
|
<compilerArgument>-Xlint:-options</compilerArgument>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>${maven.javadoc.version}</version>
|
|
|
|
|
</plugin>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- Test oriented plugins -->
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<plugin>
|
2014-10-29 16:11:44 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<version>${surefire.version}</version>
|
|
|
|
|
<dependencies>
|
2012-10-25 16:50:41 -04:00
|
|
|
|
<!-- by default surefire selects dynamically the connector to the unit tests
|
|
|
|
|
tool. We want to use always the same as the different connectors can have different
|
2012-05-26 01:56:04 -04:00
|
|
|
|
bugs and behaviour. -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.maven.surefire</groupId>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
<artifactId>${surefire.provider}</artifactId>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<version>${surefire.version}</version>
|
|
|
|
|
</dependency>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</dependencies>
|
2012-05-30 19:51:44 -04:00
|
|
|
|
<!-- Generic testing configuration for all packages -->
|
2010-02-25 17:54:27 -05:00
|
|
|
|
<configuration>
|
2015-11-03 23:47:07 -05:00
|
|
|
|
<groups>${surefire.firstPartGroups}</groups>
|
2012-05-31 00:23:20 -04:00
|
|
|
|
<failIfNoTests>false</failIfNoTests>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<skip>${surefire.skipFirstPart}</skip>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<forkCount>${surefire.firstPartForkCount}</forkCount>
|
|
|
|
|
<reuseForks>false</reuseForks>
|
2020-02-04 17:38:56 -05:00
|
|
|
|
<reportsDirectory>${surefire.reportsDirectory}</reportsDirectory>
|
|
|
|
|
<tempDir>${surefire.tempDir}</tempDir>
|
2014-02-19 16:50:42 -05:00
|
|
|
|
<testFailureIgnore>${surefire.testFailureIgnore}</testFailureIgnore>
|
2013-01-22 15:00:53 -05:00
|
|
|
|
<forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
|
2012-03-02 13:32:36 -05:00
|
|
|
|
<redirectTestOutputToFile>${test.output.tofile}</redirectTestOutputToFile>
|
2014-11-05 03:59:23 -05:00
|
|
|
|
<systemPropertyVariables>
|
2015-10-13 02:10:06 -04:00
|
|
|
|
<test.build.classes>${test.build.classes}</test.build.classes>
|
2020-10-05 20:35:16 -04:00
|
|
|
|
<java.io.tmpdir>${test.tmp.dir}</java.io.tmpdir>
|
2014-10-04 00:51:49 -04:00
|
|
|
|
</systemPropertyVariables>
|
2014-12-18 09:42:21 -05:00
|
|
|
|
<excludes>
|
2017-12-27 11:58:47 -05:00
|
|
|
|
<!-- users can add -D option to skip particular test classes
|
|
|
|
|
ex: mvn test -Dtest.exclude.pattern=**/TestFoo.java,**/TestBar.java
|
|
|
|
|
-->
|
|
|
|
|
<exclude>${test.exclude.pattern}</exclude>
|
|
|
|
|
</excludes>
|
2018-01-28 06:52:09 -05:00
|
|
|
|
<properties>
|
|
|
|
|
<property>
|
|
|
|
|
<name>listener</name>
|
2018-02-12 17:00:35 -05:00
|
|
|
|
<value>org.apache.hadoop.hbase.TimedOutTestsListener,org.apache.hadoop.hbase.HBaseClassTestRuleChecker,org.apache.hadoop.hbase.ResourceCheckerJUnitListener</value>
|
2018-01-28 06:52:09 -05:00
|
|
|
|
</property>
|
|
|
|
|
</properties>
|
2011-09-29 01:42:13 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<id>secondPartTestsExecution</id>
|
|
|
|
|
<phase>test</phase>
|
2011-09-29 01:42:13 -04:00
|
|
|
|
<goals>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<goal>test</goal>
|
2011-09-29 01:42:13 -04:00
|
|
|
|
</goals>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<skip>${surefire.skipSecondPart}</skip>
|
2014-02-19 16:50:42 -05:00
|
|
|
|
<testFailureIgnore>${surefire.testFailureIgnore}</testFailureIgnore>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<reuseForks>false</reuseForks>
|
|
|
|
|
<forkCount>${surefire.secondPartForkCount}</forkCount>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<groups>${surefire.secondPartGroups}</groups>
|
2015-10-15 15:46:07 -04:00
|
|
|
|
<forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</configuration>
|
2011-09-29 01:42:13 -04:00
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2012-05-27 17:45:03 -04:00
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2014-10-29 16:11:44 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-05-27 17:45:03 -04:00
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
|
|
|
<version>${surefire.version}</version>
|
|
|
|
|
</plugin>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${buildnumber.maven.version}</version>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
</plugin>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<plugin>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
|
|
|
|
<version>${spotbugs.maven.version}</version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<configuration>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<excludeFilterFile>${project.basedir}/../dev-support/spotbugs-exclude.xml</excludeFilterFile>
|
|
|
|
|
<spotbugsXmlOutput>true</spotbugsXmlOutput>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<xmlOutput>true</xmlOutput>
|
|
|
|
|
<effort>Max</effort>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2011-09-02 19:31:37 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${build.helper.maven.version}</version>
|
2011-09-02 19:31:37 -04:00
|
|
|
|
</plugin>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<version>${maven.antrun.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jamon</groupId>
|
|
|
|
|
<artifactId>jamon-maven-plugin</artifactId>
|
|
|
|
|
<version>${jamon.plugin.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- Make a jar and put the sources in the jar.
|
|
|
|
|
In the parent pom, so submodules will do the right thing. -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
2017-12-06 03:38:34 -05:00
|
|
|
|
<goal>test-jar-no-fork</goal>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</goals>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>log4j.properties</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- General configuration for submodules who want to build a test jar -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<!--This goal will install a -test.jar when we do install
|
2019-05-21 15:34:25 -04:00
|
|
|
|
See https://maven.apache.org/guides/mini/guide-attached-tests.html
|
2013-08-02 15:01:34 -04:00
|
|
|
|
-->
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>hbase-site.xml</exclude>
|
2013-09-12 10:48:05 -04:00
|
|
|
|
<exclude>hdfs-site.xml</exclude>
|
2013-09-17 16:41:55 -04:00
|
|
|
|
<exclude>mapred-queues.xml</exclude>
|
|
|
|
|
<exclude>mapred-site.xml</exclude>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<!-- excludes are inherited -->
|
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
2013-04-01 15:49:31 -04:00
|
|
|
|
<exclude>**/*.versionsBackup</exclude>
|
2012-07-24 04:58:19 -04:00
|
|
|
|
<exclude>**/*.log</exclude>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<exclude>**/.*</exclude>
|
2012-03-02 13:05:43 -05:00
|
|
|
|
<exclude>**/*.tgz</exclude>
|
2012-03-05 18:10:04 -05:00
|
|
|
|
<exclude>**/*.orig</exclude>
|
2015-01-31 11:38:15 -05:00
|
|
|
|
<exclude>**/0000000000000016310</exclude>
|
2019-03-11 00:42:04 -04:00
|
|
|
|
<exclude>**/a6a6562b777440fd9c34885428f5cb61.21e75333ada3d5bafb34bb918f29576c</exclude>
|
|
|
|
|
<exclude>**/8e8ab58dcf39412da19833fcd8f687ac</exclude>
|
2012-06-06 18:07:06 -04:00
|
|
|
|
<exclude>**/.idea/**</exclude>
|
2013-02-25 17:50:17 -05:00
|
|
|
|
<exclude>**/*.iml</exclude>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<exclude>**/CHANGES.txt</exclude>
|
|
|
|
|
<exclude>**/generated/**</exclude>
|
2012-11-13 18:08:55 -05:00
|
|
|
|
<exclude>**/gen-*/**</exclude>
|
2015-07-15 06:22:53 -04:00
|
|
|
|
<!-- No material contents -->
|
|
|
|
|
<exclude>conf/regionservers</exclude>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<exclude>**/*.avpr</exclude>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<exclude>**/*.svg</exclude>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<!-- non-standard notice file from jruby included by reference -->
|
|
|
|
|
<exclude>**/src/main/resources/META-INF/LEGAL</exclude>
|
|
|
|
|
<!-- MIT: https://github.com/asciidoctor/asciidoctor/blob/master/LICENSE.adoc -->
|
2015-01-14 21:56:28 -05:00
|
|
|
|
<exclude>**/src/main/asciidoc/hbase.css</exclude>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<!-- MIT https://jquery.org/license -->
|
2012-07-17 18:42:42 -04:00
|
|
|
|
<exclude>**/jquery.min.js</exclude>
|
2018-09-21 11:34:53 -04:00
|
|
|
|
<exclude>**/jquery.tablesorter.min.js</exclude>
|
2020-09-23 17:56:50 -04:00
|
|
|
|
<!-- MIT: bootstrap -->
|
|
|
|
|
<exclude>**/src/main/resources/hbase-webapps/static/*/bootstrap*</exclude>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<!-- vector graphics -->
|
|
|
|
|
<exclude>**/*.vm</exclude>
|
|
|
|
|
<!-- apache doxia generated -->
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<exclude>**/control</exclude>
|
|
|
|
|
<exclude>**/conffile</exclude>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<!-- auto-gen docs -->
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<exclude>docs/*</exclude>
|
2013-07-09 19:09:42 -04:00
|
|
|
|
<exclude>logs/*</exclude>
|
2012-10-05 15:06:45 -04:00
|
|
|
|
<!-- exclude source control files -->
|
|
|
|
|
<exclude>.git/**</exclude>
|
|
|
|
|
<exclude>.svn/**</exclude>
|
2013-07-09 19:09:42 -04:00
|
|
|
|
<exclude>**/.settings/**</exclude>
|
2014-05-28 14:57:40 -04:00
|
|
|
|
<exclude>**/patchprocess/**</exclude>
|
2017-07-03 08:33:01 -04:00
|
|
|
|
<exclude>src/site/resources/repo/**</exclude>
|
2015-11-04 16:40:46 -05:00
|
|
|
|
<exclude>**/dependency-reduced-pom.xml</exclude>
|
|
|
|
|
<exclude>**/rat.txt</exclude>
|
2016-10-09 06:38:31 -04:00
|
|
|
|
<!-- exclude the shaded protobuf files -->
|
|
|
|
|
<exclude>**/shaded/com/google/protobuf/**</exclude>
|
2016-10-26 17:52:47 -04:00
|
|
|
|
<exclude>**/src/main/patches/**</exclude>
|
2019-03-18 13:46:07 -04:00
|
|
|
|
<exclude>**/vote.tmpl</exclude>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
</plugin>
|
2013-07-10 13:59:55 -04:00
|
|
|
|
<plugin>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!--Defer to the hbase-assembly sub-module. It
|
|
|
|
|
does all assembly-->
|
|
|
|
|
<skipAssembly>true</skipAssembly>
|
|
|
|
|
</configuration>
|
2013-07-10 13:59:55 -04:00
|
|
|
|
</plugin>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<plugin>
|
2016-10-27 16:17:59 -04:00
|
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
|
<version>${protobuf.plugin.version}</version>
|
2013-11-27 18:57:23 -05:00
|
|
|
|
<configuration>
|
2016-10-27 16:17:59 -04:00
|
|
|
|
<protoSourceRoot>${basedir}/src/main/protobuf/</protoSourceRoot>
|
|
|
|
|
<clearOutputDirectory>false</clearOutputDirectory>
|
2016-11-10 14:37:26 -05:00
|
|
|
|
<checkStaleness>true</checkStaleness>
|
2013-11-27 18:57:23 -05:00
|
|
|
|
</configuration>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</plugin>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<plugin>
|
2018-01-12 18:06:08 -05:00
|
|
|
|
<!-- Approach followed here is roughly the same as mentioned here:
|
|
|
|
|
https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/multi-module-config.html
|
|
|
|
|
-->
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${maven.checkstyle.version}</version>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-checkstyle</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-05-09 02:38:51 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
|
<version>${checkstyle.version}</version>
|
|
|
|
|
</dependency>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
|
|
|
|
<configLocation>hbase/checkstyle.xml</configLocation>
|
|
|
|
|
<suppressionsLocation>hbase/checkstyle-suppressions.xml</suppressionsLocation>
|
2017-10-29 08:45:20 -04:00
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2018-03-20 03:46:51 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>net.revelc.code</groupId>
|
|
|
|
|
<artifactId>warbucks-maven-plugin</artifactId>
|
|
|
|
|
<version>${maven.warbucks.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<ignoreRuleFailures>false</ignoreRuleFailures>
|
|
|
|
|
<rules>
|
|
|
|
|
<rule>
|
|
|
|
|
<!-- exclude the generated java files -->
|
|
|
|
|
<classPattern>(?!.*(.generated.|.tmpl.|\$)).*</classPattern>
|
|
|
|
|
<includeTestClasses>false</includeTestClasses>
|
|
|
|
|
<includePublicClasses>true</includePublicClasses>
|
|
|
|
|
<includePackagePrivateClasses>false</includePackagePrivateClasses>
|
|
|
|
|
<includeProtectedClasses>false</includeProtectedClasses>
|
|
|
|
|
<includePrivateClasses>false</includePrivateClasses>
|
|
|
|
|
<classAnnotationPattern>org[.]apache[.]yetus[.]audience[.]InterfaceAudience.*</classAnnotationPattern>
|
|
|
|
|
</rule>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>run-warbucks</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal><!-- runs at process-test-classes phase -->
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2020-02-13 15:43:05 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
|
<version>${enforcer.version}</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>extra-enforcer-rules</artifactId>
|
|
|
|
|
<version>${extra.enforcer.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.skuzzle.enforcer</groupId>
|
|
|
|
|
<artifactId>restrict-imports-enforcer-rule</artifactId>
|
|
|
|
|
<version>${restrict-imports.enforcer.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2010-02-24 15:17:17 -05:00
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<plugins>
|
2017-06-16 22:53:13 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>negate-license-bundles-property</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>bsh-property</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>skip.license.check = !${license.bundles.dependencies};</source>
|
|
|
|
|
<properties>
|
|
|
|
|
<property>skip.license.check</property>
|
|
|
|
|
</properties>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2019-03-28 12:59:46 -04:00
|
|
|
|
<!-- sets where to find the generated LICENSE files -->
|
2018-08-31 06:31:01 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>create-license-file-path-property</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>regex-property</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<name>license.aggregate.path</name>
|
|
|
|
|
<value>${project.build.directory}/maven-shared-archive-resources/META-INF/LICENSE</value>
|
|
|
|
|
<regex>\\</regex>
|
|
|
|
|
<replacement>/</replacement>
|
|
|
|
|
<failIfNoMatch>false</failIfNoMatch>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<executions>
|
2020-03-19 19:52:51 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>display-info</id>
|
|
|
|
|
<phase>initialize</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>display-info</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
</execution>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<execution>
|
2017-12-04 17:54:01 -05:00
|
|
|
|
<id>hadoop-profile-min-maven-min-java-banned-xerces</id>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
2017-12-04 17:54:01 -05:00
|
|
|
|
<!-- Help people activate profiles correctly -->
|
|
|
|
|
<evaluateBeanshell>
|
|
|
|
|
<condition>System.getProperty("hadoop-profile", "").isEmpty()</condition>
|
|
|
|
|
<message>The hadoop-profile property is unused, did you mean to set hadoop.profile instead?</message>
|
|
|
|
|
</evaluateBeanshell>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<!-- The earliest maven version we verify builds for via ASF Jenkins -->
|
|
|
|
|
<requireMavenVersion>
|
|
|
|
|
<version>[${maven.min.version},)</version>
|
|
|
|
|
<message>Maven is out of date.
|
2014-10-30 12:28:35 -04:00
|
|
|
|
HBase requires at least version ${maven.min.version} of Maven to properly build from source.
|
|
|
|
|
You appear to be using an older version. You can use either "mvn -version" or
|
|
|
|
|
"mvn enforcer:display-info" to verify what version is active.
|
2019-05-21 15:34:25 -04:00
|
|
|
|
See the reference guide on building for more information: https://hbase.apache.org/book.html#build
|
2016-08-02 02:17:59 -04:00
|
|
|
|
</message>
|
|
|
|
|
</requireMavenVersion>
|
|
|
|
|
<!-- The earliest JVM version we verify builds for via ASF Jenkins -->
|
|
|
|
|
<requireJavaVersion>
|
|
|
|
|
<version>[${java.min.version},)</version>
|
|
|
|
|
<message>Java is out of date.
|
2018-03-14 02:40:09 -04:00
|
|
|
|
HBase requires at least version ${java.min.version} of the JDK to properly build from source.
|
2014-10-30 12:28:35 -04:00
|
|
|
|
You appear to be using an older version. You can use either "mvn -version" or
|
|
|
|
|
"mvn enforcer:display-info" to verify what version is active.
|
2019-05-21 15:34:25 -04:00
|
|
|
|
See the reference guide on building for more information: https://hbase.apache.org/book.html#build
|
2016-08-02 02:17:59 -04:00
|
|
|
|
</message>
|
|
|
|
|
</requireJavaVersion>
|
2016-08-02 12:36:51 -04:00
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>xerces:xercesImpl</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<message>We avoid adding our own Xerces jars to the classpath, see HBASE-16340.</message>
|
|
|
|
|
</bannedDependencies>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
<execution>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<id>banned-jsr305</id>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>com.google.code.findbugs:jsr305</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<message>We don't allow the JSR305 jar from the Findbugs project, see HBASE-16321.</message>
|
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
</execution>
|
2017-06-07 14:55:47 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>banned-scala</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>org.scala-lang:scala-library</exclude>
|
|
|
|
|
</excludes>
|
2018-11-06 16:17:32 -05:00
|
|
|
|
<message>We don't allow Scala, see HBASE-13992.</message>
|
2017-06-07 14:55:47 -04:00
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>banned-commons-logging</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>commons-logging:commons-logging</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<message>
|
|
|
|
|
We don't use commons-logging any more, so do not depend on it directly.
|
|
|
|
|
</message>
|
|
|
|
|
<searchTransitive>false</searchTransitive>
|
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>banned-jetty</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>org.eclipse.jetty:**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<message>
|
|
|
|
|
Use shaded jetty instead
|
|
|
|
|
</message>
|
|
|
|
|
<searchTransitive>false</searchTransitive>
|
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>banned-jersey</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<bannedDependencies>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>>org.glassfish.jersey.containers:**</exclude>
|
|
|
|
|
<exclude>>org.glassfish.jersey.core:**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
<message>
|
|
|
|
|
Use shaded jersey instead
|
|
|
|
|
</message>
|
|
|
|
|
<searchTransitive>false</searchTransitive>
|
|
|
|
|
</bannedDependencies>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2017-06-16 22:53:13 -04:00
|
|
|
|
<execution>
|
|
|
|
|
<id>check-aggregate-license</id>
|
|
|
|
|
<!-- must check after LICENSE is built at 'generate-resources' -->
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<evaluateBeanshell>
|
|
|
|
|
<condition>
|
|
|
|
|
File license = new File("${license.aggregate.path}");
|
|
|
|
|
|
|
|
|
|
// Beanshell does not support try-with-resources,
|
|
|
|
|
// so we must close this scanner manually
|
|
|
|
|
Scanner scanner = new Scanner(license);
|
|
|
|
|
|
|
|
|
|
while (scanner.hasNextLine()) {
|
|
|
|
|
if (scanner.nextLine().startsWith("ERROR:")) {
|
|
|
|
|
scanner.close();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
scanner.close();
|
|
|
|
|
return true;
|
|
|
|
|
</condition>
|
|
|
|
|
<message>
|
|
|
|
|
License errors detected, for more detail find ERROR in
|
|
|
|
|
${license.aggregate.path}
|
|
|
|
|
</message>
|
|
|
|
|
</evaluateBeanshell>
|
|
|
|
|
</rules>
|
|
|
|
|
<skip>${skip.license.check}</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2018-12-23 05:25:42 -05:00
|
|
|
|
<execution>
|
|
|
|
|
<id>banned-illegal-imports</id>
|
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use SLF4j for logging</reason>
|
|
|
|
|
<bannedImports>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<bannedImport>org.apache.commons.logging.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>false</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>
|
|
|
|
|
Do not use log4j directly in code, see Log4jUtils in hbase-logging for more details.
|
|
|
|
|
</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.apache.log4j.**</bannedImport>
|
2018-12-23 05:25:42 -05:00
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use shaded version in hbase-thirdparty</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>com.google.common.**</bannedImport>
|
|
|
|
|
<bannedImport>io.netty.**</bannedImport>
|
|
|
|
|
<bannedImport>org.apache.commons.cli.**</bannedImport>
|
|
|
|
|
<bannedImport>org.apache.commons.collections.**</bannedImport>
|
|
|
|
|
<bannedImport>org.apache.commons.collections4.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Do not use shaded classes from other dependencies</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.apache.curator.shaded.**</bannedImport>
|
|
|
|
|
<bannedImport>org.apache.htrace.shaded.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use shaded gson in hbase-thirdparty</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.codehaus.jackson.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use commons lang 3</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.apache.commons.lang.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use yetus IA and IS annotations</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.apache.hadoop.classificatio.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Do not use htrace v3</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.htrace.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use shaded jetty in hbase-thirdparty</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.eclipse.jetty.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
|
|
|
|
<restrictImports implementation="de.skuzzle.enforcer.restrictimports.rule.RestrictImports">
|
|
|
|
|
<includeTestCode>true</includeTestCode>
|
|
|
|
|
<commentLineBufferSize>512</commentLineBufferSize>
|
|
|
|
|
<reason>Use shaded jersey in hbase-thirdparty</reason>
|
|
|
|
|
<bannedImports>
|
|
|
|
|
<bannedImport>org.glassfish.jersey.**</bannedImport>
|
|
|
|
|
</bannedImports>
|
|
|
|
|
</restrictImports>
|
2018-12-23 05:25:42 -05:00
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<!-- parent-module only plugins -->
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<plugin>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>xml-maven-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${xml.maven.version}</version>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<!-- Run the hbase-default.xml through a stylesheet so can show it in doc-->
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>transform</goal>
|
|
|
|
|
</goals>
|
2015-11-04 16:31:59 -05:00
|
|
|
|
<phase>site</phase>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<configuration>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<transformationSets>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
<!-- For asciidoc -->
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<transformationSet>
|
|
|
|
|
<!--Reaching up and over into common sub-module for hbase-default.xml-->
|
|
|
|
|
<dir>${basedir}/hbase-common/src/main/resources/</dir>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>hbase-default.xml</include>
|
|
|
|
|
</includes>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
<stylesheet>${basedir}/src/main/xslt/configuration_to_asciidoc_chapter.xsl</stylesheet>
|
|
|
|
|
<fileMappers>
|
|
|
|
|
<fileMapper implementation="org.codehaus.plexus.components.io.filemappers.RegExpFileMapper">
|
|
|
|
|
<pattern>^(.*)\.xml$</pattern>
|
|
|
|
|
<replacement>$1.adoc</replacement>
|
|
|
|
|
</fileMapper>
|
|
|
|
|
</fileMappers>
|
|
|
|
|
<outputDir>${basedir}/target/asciidoc</outputDir>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
</transformationSet>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
</transformationSets>
|
2011-05-03 15:07:00 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<!-- Special configuration for spotbugs just in the parent so
|
2012-06-03 17:59:50 -04:00
|
|
|
|
the filter file location can be more general (see definition in pluginManagement) -->
|
|
|
|
|
<plugin>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<goals>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<goal>spotbugs</goal>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<excludeFilterFile>${basedir}/dev-support/spotbugs-exclude.xml</excludeFilterFile>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
|
</plugin>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- add support for ssh/scp -->
|
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
|
<artifactId>wagon-ssh</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${wagon.ssh.version}</version>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
2017-07-03 08:33:01 -04:00
|
|
|
|
<siteDirectory>${basedir}/src/site</siteDirectory>
|
|
|
|
|
<customBundle>${basedir}/src/site/custom/project-info-report.properties</customBundle>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<inputEncoding>UTF-8</inputEncoding>
|
|
|
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
<!-- For AsciiDoc docs building -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
2015-08-21 17:45:42 -04:00
|
|
|
|
<version>${asciidoctor.plugin.version}</version>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
|
<artifactId>asciidoctorj-pdf</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${asciidoctorj.pdf.version}</version>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
</dependency>
|
2017-12-18 04:13:38 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jruby</groupId>
|
|
|
|
|
<artifactId>jruby-complete</artifactId>
|
|
|
|
|
<version>${jruby.version}</version>
|
|
|
|
|
</dependency>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<outputDirectory>${project.reporting.outputDirectory}/</outputDirectory>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<doctype>book</doctype>
|
|
|
|
|
<imagesDir>images</imagesDir>
|
|
|
|
|
<sourceHighlighter>coderay</sourceHighlighter>
|
2015-03-05 20:49:11 -05:00
|
|
|
|
<attributes>
|
|
|
|
|
<docVersion>${project.version}</docVersion>
|
|
|
|
|
</attributes>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
</configuration>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
<id>output-html</id>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<phase>site</phase>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
<goals>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
<goal>process-asciidoc</goal>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attributes>
|
|
|
|
|
<stylesheet>hbase.css</stylesheet>
|
|
|
|
|
</attributes>
|
|
|
|
|
<backend>html5</backend>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<execution>
|
|
|
|
|
<id>output-pdf</id>
|
|
|
|
|
<phase>site</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process-asciidoc</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<backend>pdf</backend>
|
|
|
|
|
<attributes>
|
|
|
|
|
<pagenums/>
|
|
|
|
|
<toc/>
|
|
|
|
|
<idprefix/>
|
|
|
|
|
<idseparator>-</idseparator>
|
|
|
|
|
</attributes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2015-11-04 16:31:59 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<!--$NO-MVN-MAN-VER$ -->
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-htaccess</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>site</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.reporting.outputDirectory}/</outputDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
2017-07-03 08:33:01 -04:00
|
|
|
|
<directory>${basedir}/src/site/resources/</directory>
|
2015-11-04 16:31:59 -05:00
|
|
|
|
<includes>
|
|
|
|
|
<include>.htaccess</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<!-- needed to make the redirect above work -->
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-empty-book-dir</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>site</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.reporting.outputDirectory}/</outputDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
2017-07-03 08:33:01 -04:00
|
|
|
|
<directory>${basedir}/src/site/resources/</directory>
|
2015-11-04 16:31:59 -05:00
|
|
|
|
<includes>
|
|
|
|
|
<include>book/**</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<escapeString>\</escapeString>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<plugin>
|
2015-06-04 19:11:15 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<version>${maven.antrun.version}</version>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<!-- Rename the book.pdf generated by asciidoctor -->
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>rename-pdf</id>
|
2015-11-04 16:31:59 -05:00
|
|
|
|
<phase>site</phase>
|
2015-03-04 02:32:15 -05:00
|
|
|
|
<configuration>
|
|
|
|
|
<target name="rename file">
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<move file="${project.reporting.outputDirectory}/book.pdf" tofile="${project.reporting.outputDirectory}/apache_hbase_reference_guide.pdf" />
|
2015-03-04 02:32:15 -05:00
|
|
|
|
</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
2015-01-06 23:02:16 -05:00
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>create-timestamp</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<timestampFormat>yyyy</timestampFormat>
|
|
|
|
|
<timestampPropertyName>build.year</timestampPropertyName>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2015-02-17 20:46:27 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<version>${maven.bundle.version}</version>
|
2015-02-17 20:46:27 -05:00
|
|
|
|
<inherited>true</inherited>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
</plugin>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
</plugins>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</build>
|
2010-04-20 17:10:44 -04:00
|
|
|
|
<properties>
|
2015-07-15 06:12:36 -04:00
|
|
|
|
<!-- override on command line to have generated LICENSE files include
|
|
|
|
|
diagnostic info for verifying notice requirements -->
|
|
|
|
|
<license.debug.print.included>false</license.debug.print.included>
|
|
|
|
|
<!-- When a particular module bundles its depenendencies, should be true -->
|
|
|
|
|
<license.bundles.dependencies>false</license.bundles.dependencies>
|
|
|
|
|
<!-- modules that include a the logo in their source tree should set true -->
|
|
|
|
|
<license.bundles.logo>false</license.bundles.logo>
|
|
|
|
|
<!-- modules that include bootstrap in their source tree should set true -->
|
|
|
|
|
<license.bundles.bootstrap>false</license.bundles.bootstrap>
|
|
|
|
|
<!-- modules that include jquery in their source tree should set true -->
|
|
|
|
|
<license.bundles.jquery>false</license.bundles.jquery>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<tar.name>${project.build.finalName}.tar.gz</tar.name>
|
2011-12-06 01:43:54 -05:00
|
|
|
|
<maven.build.timestamp.format>
|
|
|
|
|
yyyy-MM-dd'T'HH:mm
|
|
|
|
|
</maven.build.timestamp.format>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<buildDate>${maven.build.timestamp}</buildDate>
|
2016-09-12 03:44:31 -04:00
|
|
|
|
<compileSource>1.8</compileSource>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
<!-- Build dependencies -->
|
2015-09-01 17:04:44 -04:00
|
|
|
|
<maven.min.version>3.0.4</maven.min.version>
|
2014-10-30 12:28:35 -04:00
|
|
|
|
<java.min.version>${compileSource}</java.min.version>
|
2010-10-03 23:19:26 -04:00
|
|
|
|
<!-- Dependencies -->
|
2019-05-31 09:52:21 -04:00
|
|
|
|
<hadoop-three.version>3.1.2</hadoop-three.version>
|
2016-06-09 14:30:45 -04:00
|
|
|
|
<!-- These must be defined here for downstream build tools that don't look at profiles.
|
2020-04-16 06:57:40 -04:00
|
|
|
|
-->
|
|
|
|
|
<hadoop.version>${hadoop-three.version}</hadoop.version>
|
2020-05-05 07:49:39 -04:00
|
|
|
|
<assembly.file>src/main/assembly/hadoop-three-compat.xml</assembly.file>
|
2018-04-09 14:37:44 -04:00
|
|
|
|
<!--This property is for hadoops netty. HBase netty
|
|
|
|
|
comes in via hbase-thirdparty hbase-shaded-netty-->
|
2020-05-04 17:05:24 -04:00
|
|
|
|
<netty.hadoop.version>3.10.5.Final</netty.hadoop.version>
|
2016-06-09 14:30:45 -04:00
|
|
|
|
<!-- end HBASE-15925 default hadoop compatibility values -->
|
2018-04-09 14:37:44 -04:00
|
|
|
|
<audience-annotations.version>0.5.0</audience-annotations.version>
|
2017-06-16 18:57:00 -04:00
|
|
|
|
<avro.version>1.7.7</avro.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<caffeine.version>2.8.1</caffeine.version>
|
|
|
|
|
<commons-codec.version>1.13</commons-codec.version>
|
2018-10-12 05:15:41 -04:00
|
|
|
|
<commons-validator.version>1.6</commons-validator.version>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<!-- pretty outdated -->
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<commons-io.version>2.6</commons-io.version>
|
2019-06-19 11:34:59 -04:00
|
|
|
|
<commons-lang3.version>3.9</commons-lang3.version>
|
2017-08-25 07:34:03 -04:00
|
|
|
|
<commons-math.version>3.6.1</commons-math.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<disruptor.version>3.4.2</disruptor.version>
|
|
|
|
|
<!-- Updating the httpclient will break hbase-rest. It writes out URLs with '//' in it
|
|
|
|
|
especially when writing out 'no column families'. Later httpclients collapse the '//'
|
|
|
|
|
into single '/' as double-slash is not legal in an URL. Breaks #testDelete in
|
|
|
|
|
TestRemoteTable. -->
|
2017-05-03 08:43:51 -04:00
|
|
|
|
<httpclient.version>4.5.3</httpclient.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<httpcore.version>4.4.13</httpcore.version>
|
2019-04-07 11:25:48 -04:00
|
|
|
|
<metrics-core.version>3.2.6</metrics-core.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<jackson.version>2.10.1</jackson.version>
|
|
|
|
|
<jackson.databind.version>2.10.1</jackson.databind.version>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<jaxb-api.version>2.3.1</jaxb-api.version>
|
2017-01-30 14:54:54 -05:00
|
|
|
|
<servlet.api.version>3.1.0</servlet.api.version>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<wx.rs.api.version>2.1.1</wx.rs.api.version>
|
2017-09-04 16:10:20 -04:00
|
|
|
|
<glassfish.jsp.version>2.3.2</glassfish.jsp.version>
|
2017-09-15 20:30:12 -04:00
|
|
|
|
<glassfish.el.version>3.0.1-b08</glassfish.el.version>
|
2019-03-25 12:10:15 -04:00
|
|
|
|
<jruby.version>9.1.17.0</jruby.version>
|
2020-01-09 12:29:08 -05:00
|
|
|
|
<junit.version>4.13</junit.version>
|
2015-01-21 16:12:57 -05:00
|
|
|
|
<hamcrest.version>1.3</hamcrest.version>
|
2017-10-26 17:23:42 -04:00
|
|
|
|
<htrace.version>4.2.0-incubating</htrace.version>
|
2012-08-21 09:22:56 -04:00
|
|
|
|
<log4j.version>1.2.17</log4j.version>
|
2019-09-18 09:16:19 -04:00
|
|
|
|
<mockito-core.version>2.28.2</mockito-core.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<protobuf.plugin.version>0.6.1</protobuf.plugin.version>
|
2014-11-05 03:59:23 -05:00
|
|
|
|
<thrift.path>thrift</thrift.path>
|
2020-04-08 18:24:31 -04:00
|
|
|
|
<thrift.version>0.13.0</thrift.version>
|
2020-04-13 16:46:37 -04:00
|
|
|
|
<zookeeper.version>3.5.7</zookeeper.version>
|
|
|
|
|
<jline.version>2.11</jline.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<slf4j.version>1.7.30</slf4j.version>
|
2015-05-02 00:53:13 -04:00
|
|
|
|
<clover.version>4.0.3</clover.version>
|
2015-10-13 20:25:02 -04:00
|
|
|
|
<jamon-runtime.version>2.4.1</jamon-runtime.version>
|
2017-05-03 08:43:51 -04:00
|
|
|
|
<jettison.version>1.3.8</jettison.version>
|
2017-05-18 12:32:40 -04:00
|
|
|
|
<!--Make sure these joni/jcodings are compatible with the versions used by jruby-->
|
|
|
|
|
<joni.version>2.1.11</joni.version>
|
|
|
|
|
<jcodings.version>1.0.18</jcodings.version>
|
2017-05-03 08:43:51 -04:00
|
|
|
|
<spy.version>2.12.2</spy.version>
|
2018-10-09 13:06:10 -04:00
|
|
|
|
<bouncycastle.version>1.60</bouncycastle.version>
|
2017-10-19 10:05:50 -04:00
|
|
|
|
<kerby.version>1.0.1</kerby.version>
|
2016-10-21 06:32:39 -04:00
|
|
|
|
<commons-crypto.version>1.0.0</commons-crypto.version>
|
2019-09-23 05:59:06 -04:00
|
|
|
|
<curator.version>4.2.0</curator.version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- Plugin Dependencies -->
|
2020-01-23 14:58:47 -05:00
|
|
|
|
<asciidoctor.plugin.version>1.5.8</asciidoctor.plugin.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<asciidoctorj.pdf.version>1.5.0-rc.2</asciidoctorj.pdf.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<build.helper.maven.version>3.0.0</build.helper.maven.version>
|
|
|
|
|
<buildnumber.maven.version>1.4</buildnumber.maven.version>
|
2020-01-27 13:40:24 -05:00
|
|
|
|
<!--
|
|
|
|
|
When updating checkstyle.version, please make the same change in `.idea/checkstyle-idea.xml`
|
|
|
|
|
-->
|
2020-01-17 19:58:49 -05:00
|
|
|
|
<checkstyle.version>8.28</checkstyle.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<exec.maven.version>1.6.0</exec.maven.version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<error-prone.version>2.3.4</error-prone.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<jamon.plugin.version>2.4.2</jamon.plugin.version>
|
|
|
|
|
<lifecycle.mapping.version>1.0.0</lifecycle.mapping.version>
|
|
|
|
|
<maven.antrun.version>1.8</maven.antrun.version>
|
|
|
|
|
<maven.bundle.version>3.3.0</maven.bundle.version>
|
2020-01-17 19:58:49 -05:00
|
|
|
|
<maven.checkstyle.version>3.1.0</maven.checkstyle.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<maven.eclipse.version>2.10</maven.eclipse.version>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<maven.javadoc.version>3.2.0</maven.javadoc.version>
|
2018-03-20 03:46:51 -04:00
|
|
|
|
<maven.warbucks.version>1.1.0</maven.warbucks.version>
|
2019-07-31 13:39:35 -04:00
|
|
|
|
<maven.project.info.report.version>2.9</maven.project.info.report.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<os.maven.version>1.5.0.Final</os.maven.version>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<findbugs-annotations.version>1.3.9-1</findbugs-annotations.version>
|
|
|
|
|
<spotbugs.version>3.1.12</spotbugs.version>
|
|
|
|
|
<spotbugs.maven.version>3.1.12.2</spotbugs.maven.version>
|
2019-11-19 06:45:06 -05:00
|
|
|
|
<surefire.version>3.0.0-M4</surefire.version>
|
2017-06-29 09:37:22 -04:00
|
|
|
|
<wagon.ssh.version>2.12</wagon.ssh.version>
|
|
|
|
|
<xml.maven.version>1.0.1</xml.maven.version>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<hbase-thirdparty.version>3.4.0</hbase-thirdparty.version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- Intraproject jar naming properties -->
|
|
|
|
|
<!-- TODO this is pretty ugly, but works for the moment.
|
|
|
|
|
Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
|
|
|
|
|
<server.test.jar>hbase-server-${project.version}-tests.jar</server.test.jar>
|
2013-01-16 21:11:44 -05:00
|
|
|
|
<common.test.jar>hbase-common-${project.version}-tests.jar</common.test.jar>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
<procedure.test.jar>hbase-procedure-${project.version}-tests.jar</procedure.test.jar>
|
2012-11-29 01:47:34 -05:00
|
|
|
|
<it.test.jar>hbase-it-${project.version}-tests.jar</it.test.jar>
|
2014-10-27 18:40:35 -04:00
|
|
|
|
<annotations.test.jar>hbase-annotations-${project.version}-tests.jar</annotations.test.jar>
|
2017-09-11 19:40:18 -04:00
|
|
|
|
<mapreduce.test.jar>hbase-mapreduce-${project.version}-tests.jar</mapreduce.test.jar>
|
2018-05-18 12:11:42 -04:00
|
|
|
|
<zookeeper.test.jar>hbase-zookeeper-${project.version}-tests.jar</zookeeper.test.jar>
|
2020-05-06 02:40:21 -04:00
|
|
|
|
<asyncfs.test.jar>hbase-asyncfs-${project.version}-tests.jar</asyncfs.test.jar>
|
2017-08-10 17:16:20 -04:00
|
|
|
|
<shell-executable>bash</shell-executable>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
<surefire.provider>surefire-junit47</surefire.provider>
|
2012-01-01 10:22:43 -05:00
|
|
|
|
<!-- default: run small & medium, medium with 2 threads -->
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
<surefire.skipSecondPart>false</surefire.skipSecondPart>
|
2020-04-05 15:53:44 -04:00
|
|
|
|
<!-- Fork count varies w/ CPU count. Setting is conservative mostly determined
|
|
|
|
|
by what apache jenkins nightly builds will tolerate (See HBASE-24072). Up this
|
2020-02-04 23:47:02 -05:00
|
|
|
|
value is you want to burn through tests faster (could make for more failures
|
|
|
|
|
if more contention around resources). There is a matching MAVEN_ARG
|
2020-04-01 19:05:59 -04:00
|
|
|
|
in our yetus personality where we set the maven -T command to 0.25C too.
|
2020-04-05 15:53:44 -04:00
|
|
|
|
For example, to run at a rate that is more furious than our 0.25C, do
|
|
|
|
|
something like this:
|
|
|
|
|
f="0.5C" ; mvn -T$f -Dsurefire.firstPartForkCount=$f -Dsurefire.secondPartForkCount=$f test -PrunAllTests
|
2020-02-04 23:47:02 -05:00
|
|
|
|
-->
|
2020-04-01 19:05:59 -04:00
|
|
|
|
<surefire.firstPartForkCount>0.25C</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>0.25C</surefire.secondPartForkCount>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.SmallTests</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups>org.apache.hadoop.hbase.testclassification.MediumTests</surefire.secondPartGroups>
|
2014-02-19 16:50:42 -05:00
|
|
|
|
<surefire.testFailureIgnore>false</surefire.testFailureIgnore>
|
2012-03-02 13:32:36 -05:00
|
|
|
|
<test.output.tofile>true</test.output.tofile>
|
2013-01-22 15:00:53 -05:00
|
|
|
|
<surefire.timeout>900</surefire.timeout>
|
2014-12-18 09:42:21 -05:00
|
|
|
|
<test.exclude.pattern></test.exclude.pattern>
|
2020-03-30 12:31:10 -04:00
|
|
|
|
<!--
|
2020-04-14 00:35:43 -04:00
|
|
|
|
Use -Dsurefire.Xmx=xxg to run tests with different JVM Xmx value.
|
|
|
|
|
This value is managed separately for jdk11. See below.
|
2020-03-30 12:31:10 -04:00
|
|
|
|
-->
|
2020-04-14 00:35:43 -04:00
|
|
|
|
<surefire.Xmx>2200m</surefire.Xmx>
|
|
|
|
|
<surefire.cygwinXmx>2200m</surefire.cygwinXmx>
|
2015-11-06 21:39:15 -05:00
|
|
|
|
<!--Mark our test runs with '-Dhbase.build.id' so we can identify a surefire test as ours in a process listing
|
2020-03-11 13:25:11 -04:00
|
|
|
|
|
|
|
|
|
And for netty eventloops that have no explicit configuration, netty sets
|
|
|
|
|
nioeventloopgroup thread count to CPU count * 2. Thats too much for mini
|
|
|
|
|
clusters/tests.
|
2015-10-07 16:41:27 -04:00
|
|
|
|
-->
|
2015-11-06 21:39:15 -05:00
|
|
|
|
<hbase-surefire.argLine>-enableassertions -Dhbase.build.id=${build.id} -Xmx${surefire.Xmx}
|
2016-09-24 19:07:25 -04:00
|
|
|
|
-Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true
|
2018-10-31 22:44:25 -04:00
|
|
|
|
-Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true
|
2019-09-18 08:37:19 -04:00
|
|
|
|
-Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced
|
2020-03-11 13:25:11 -04:00
|
|
|
|
-Dio.netty.eventLoopThreads=3
|
2014-10-02 16:35:15 -04:00
|
|
|
|
</hbase-surefire.argLine>
|
2016-09-24 19:07:25 -04:00
|
|
|
|
<hbase-surefire.cygwin-argLine>-enableassertions -Xmx${surefire.cygwinXmx}
|
2014-10-02 16:35:15 -04:00
|
|
|
|
-Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true
|
|
|
|
|
"-Djava.library.path=${hadoop.library.path};${java.library.path}"
|
2019-09-18 08:37:19 -04:00
|
|
|
|
-Dorg.apache.hbase.thirdparty.io.netty.leakDetection.level=advanced
|
2015-10-14 15:22:27 -04:00
|
|
|
|
</hbase-surefire.cygwin-argLine>
|
|
|
|
|
<!-- Surefire argLine defaults to Linux, cygwin argLine is used in the os.windows profile -->
|
|
|
|
|
<argLine>${hbase-surefire.argLine}</argLine>
|
2015-06-14 10:03:20 -04:00
|
|
|
|
<jacoco.version>0.7.5.201505241946</jacoco.version>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
<extra.enforcer.version>1.3</extra.enforcer.version>
|
|
|
|
|
<enforcer.version>3.0.0-M3</enforcer.version>
|
2018-12-23 05:25:42 -05:00
|
|
|
|
<restrict-imports.enforcer.version>0.14.0</restrict-imports.enforcer.version>
|
2015-10-13 02:10:06 -04:00
|
|
|
|
<!-- Location of test resources -->
|
|
|
|
|
<test.build.classes>${project.build.directory}/test-classes</test.build.classes>
|
2020-10-05 20:35:16 -04:00
|
|
|
|
<test.tmp.dir>${project.build.directory}</test.tmp.dir>
|
2015-11-06 21:39:15 -05:00
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss'Z'</maven.build.timestamp.format>
|
|
|
|
|
<!--This build.id we'll add as flag so can identify which forked processes belong to our build.
|
|
|
|
|
Default is the build start timestamp. Up on jenkins pass in the jenkins build id by setting
|
|
|
|
|
this parameter by invoking mvn with -Dbuild.id=$BUILD_ID-->
|
|
|
|
|
<build.id>${maven.build.timestamp}</build.id>
|
2017-11-04 15:34:13 -04:00
|
|
|
|
<shell-executable>bash</shell-executable>
|
2018-02-26 12:36:44 -05:00
|
|
|
|
<!-- TODO HBASE-15041 clean up our javadocs so jdk8 linter can be used.
|
|
|
|
|
property as of javadoc-plugin 3.0.0 -->
|
|
|
|
|
<doclint>none</doclint>
|
2018-01-12 18:06:08 -05:00
|
|
|
|
</properties>
|
2010-10-03 23:19:26 -04:00
|
|
|
|
<!-- Sorted by groups of dependencies then groupId and artifactId -->
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<!--
|
2010-10-03 23:19:26 -04:00
|
|
|
|
Note: There are a few exclusions to prevent duplicate code in different jars to be included:
|
2014-02-07 12:06:00 -05:00
|
|
|
|
org.mortbay.jetty:servlet-api, javax.servlet:servlet-api: These are excluded because they are
|
2010-10-03 23:19:26 -04:00
|
|
|
|
the same implementations. I chose org.mortbay.jetty:servlet-api-2.5 instead, which is a third
|
|
|
|
|
implementation of the same, because Hadoop also uses this version
|
2018-04-09 14:37:44 -04:00
|
|
|
|
javax.servlet:jsp-api in favour of javax.servlet.jsp:javax.servlet.jsp-api:2.3.1 since it
|
|
|
|
|
is what glassfish's jspC jar uses and that's where we get our own need for a jsp-api.
|
2012-05-26 01:56:04 -04:00
|
|
|
|
-->
|
|
|
|
|
<!-- Intra-module dependencies -->
|
2014-10-07 02:16:22 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-annotations</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
2014-10-27 17:58:55 -04:00
|
|
|
|
<!--Was test scope only but if we want to run hbase-it tests, need the annotations test jar-->
|
2014-10-07 02:16:22 -04:00
|
|
|
|
</dependency>
|
2017-10-25 17:08:19 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-backup</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-30 19:51:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-common</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2012-09-26 08:23:43 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-common</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-logging</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-logging</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-protocol-shaded</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2015-04-09 15:44:56 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-procedure</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-procedure</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
</dependency>
|
2012-07-17 18:02:06 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-hadoop-compat</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2012-09-07 01:28:31 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-hadoop-compat</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-08-17 23:59:35 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-replication</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2020-04-22 02:55:38 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-balancer</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2017-10-21 21:12:07 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-http</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-http</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-server</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-server</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
HBASE-18640 Move mapreduce out of hbase-server into separate module.
- Moves out o.a.h.h.{mapred, mapreduce} to new hbase-mapreduce module which depends
on hbase-server because of classes like *Snapshot{Input,Output}Format.java, WALs, replication, etc
- hbase-backup depends on it for WALPlayer and MR job stuff
- A bunch of tools needed to be pulled into hbase-mapreduce becuase of their dependencies on MR.
These are: CompactionTool, LoadTestTool, PerformanceEvaluation, ExportSnapshot
This is better place of them than hbase-server. But ideal place would be in separate hbase-tools module.
- There were some tests in hbase-server which were digging into these tools for static util funtions or
confs. Moved these to better/easily shared place. For eg. security related stuff to HBaseKerberosUtils.
- Note that hbase-mapreduce has secondPartExecution tests. On my machine they took like 20 min, so maybe
more on apache jenkins. That's basically equal reduction of runtime of hbase-server tests, which is a
big win!
Change-Id: Ieeb7235014717ca83ee5cb13b2a27fddfa6838e8
2017-08-20 17:34:16 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-mapreduce</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-mapreduce</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
HBASE-15638 Shade protobuf
Which includes
HBASE-16742 Add chapter for devs on how we do protobufs going forward
HBASE-16741 Amend the generate protobufs out-of-band build step
to include shade, pulling in protobuf source and a hook for patching protobuf
Removed ByteStringer from hbase-protocol-shaded. Use the protobuf-3.1.0
trick directly instead. Makes stuff cleaner. All under 'shaded' dir is
now generated.
HBASE-16567 Upgrade to protobuf-3.1.x
Regenerate all protos in this module with protoc3.
Redo ByteStringer to use new pb3.1.0 unsafebytesutil
instead of HBaseZeroCopyByteString
HBASE-16264 Figure how to deal with endpoints and shaded pb Shade our protobufs.
Do it in a manner that makes it so we can still have in our API references to
com.google.protobuf (and in REST). The c.g.p in API is for Coprocessor Endpoints (CPEP)
This patch is Tactic #4 from Shading Doc attached to the referenced issue.
Figuring an appoach took a while because we have Coprocessor Endpoints
mixed in with the core of HBase that are tough to untangle (FIX).
Tactic #4 (the fourth attempt at addressing this issue) is COPY all but
the CPEP .proto files currently in hbase-protocol to a new module named
hbase-protocol-shaded. Generate .protos again in the new location and
then relocate/shade the generated files. Let CPEPs keep on with the
old references at com.google.protobuf.* and
org.apache.hadoop.hbase.protobuf.* but change the hbase core so all
instead refer to the relocated files in their new location at
org.apache.hadoop.hbase.shaded.com.google.protobuf.*.
Let the new module also shade protobufs themselves and change hbase
core to pick up this shaded protobuf rather than directly reference
com.google.protobuf.
This approach allows us to explicitly refer to either the shaded or
non-shaded version of a protobuf class in any particular context (though
usually context dictates one or the other). Core runs on shaded protobuf.
CPEPs continue to use whatever is on the classpath with
com.google.protobuf.* which is pb2.5.0 for the near future at least.
See above cited doc for follow-ons and downsides. In short, IDEs will complain
about not being able to find the shaded protobufs since shading happens at package
time; will fix by checking in all generated classes and relocated protobuf in
a follow-on. Also, CPEPs currently suffer an extra-copy as marshalled from
non-shaded to shaded. To fix. Finally, our .protos are duplicated; once
shaded, and once not. Pain, but how else to reveal our protos to CPEPs or
C++ client that wants to talk with HBase AND shade protobuf.
Details:
Add a new hbase-protocol-shaded module. It is a copy of hbase-protocol
i with all relocated offset from o.a.h.h. to o.a.h.h.shaded. The new module
also includes the relocated pb. It does not include CPEPs. They stay in
their old location.
Add another module hbase-endpoint which has in it all the endpoints
that ship as part of hbase -- at least the ones that are not
entangled with core such as AccessControl and Auth. Move all protos
for these CPEPs here as well as their unit tests (mostly moving a
bunch of stuff out of hbase-server module)
Much of the change looks like this:
-import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
-import org.apache.hadoop.hbase.protobuf.generated.ClusterIdProtos;
+import org.apache.hadoop.hbase.protobuf.shaded.ProtobufUtil;
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterIdProtos;
In HTable and in HBaseAdmin, regularize the way Callables are used and also hide
protobuf usage as much as possible moving it up into Callable super classes or out
to utility classes. Still TODO is adding in of retries, etc., but can wait on
procedure which will redo all this.
Also in HTable and HBaseAdmin as well as in HRegionServer and Server, be explicit
when using non-shaded protobuf. Do the full-path so it is clear. This is around
endpoint coprocessors registration of services and execution of CPEP methods.
Shrunk ProtobufUtil by moving methods used by one CPEP only back to the CPEP either
into Client class or as new Util class; e.g. AccessControlUtil.
There are actually two versions of ProtobufUtil now; a shaded one and a subset
that is used by CPEPs doing non-shaded work.
Made it so hbase-common no longer depends on hbase-protocol (with Matteo's help)
R*Converter classes got moved down under shaded package -- they are for internal
use only. There are no non-shaded versions of these classes.
D hbase-client/src/main/java/org/apache/hadoop/hbase/client/AbstractRegionServerCallable
D RetryingCallableBase
Not used anymore and we have too many tiers of Callables so removed/cleaned-up.
A ClientServicecallable
Had to add this one. RegionServerCallable was made generic so it could be used
for a few Interfaces (Client and Admin). Then added ClientServiceCallable to
implement RegionServerCallable with the Client Interface.
2016-10-04 00:37:32 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-endpoint</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2013-09-23 12:40:51 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-shell</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-shell</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-09-20 16:44:22 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-thrift</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-thrift</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-testing-util</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-11-06 16:22:27 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-examples</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2015-08-28 19:13:36 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-external-blockcache</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2012-11-29 01:47:34 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-it</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-client</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2017-01-25 14:47:35 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-metrics-api</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-metrics-api</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-metrics</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-metrics</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-10-25 17:08:19 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-rest</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-resource-bundle</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2017-11-13 14:42:33 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-zookeeper</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2017-11-13 14:42:33 -05:00
|
|
|
|
</dependency>
|
2017-12-06 03:38:34 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-zookeeper</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2019-09-07 01:02:52 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<artifactId>hbase-hbtop</artifactId>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2018-02-07 18:37:39 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-client</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
2018-05-18 12:11:42 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-client-byo-hadoop</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
2018-02-07 18:37:39 -05:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-mapreduce</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2020-05-06 02:40:21 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-asyncfs</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-asyncfs</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- General dependencies -->
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.stephenc.findbugs</groupId>
|
|
|
|
|
<artifactId>findbugs-annotations</artifactId>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<version>${findbugs-annotations.version}</version>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
</dependency>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<!--
|
|
|
|
|
Logging dependencies. In general, we use slf4j as the log facade in HBase, so all sub
|
|
|
|
|
modules should depend on slf4j-api at compile scope, and then depend on slf4j-log4j12
|
|
|
|
|
and log4j at test scope(and in hbase-assembly when shipping the binary) to redirect the
|
|
|
|
|
log message to log4j. Do not introduce logging dependencies other than slf4j-api at compile
|
|
|
|
|
scope as it will mess up the logging framework for downstream users.
|
|
|
|
|
Here we also depend on jcl-over-slf4j and jul-to-slf4j, as some of the libraries we depend
|
|
|
|
|
on use these logging framework so we need to redirect their log message to slf4j, and then
|
|
|
|
|
redirect the log message to our log4j framework.
|
|
|
|
|
-->
|
2012-07-19 00:20:20 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.jettison</groupId>
|
|
|
|
|
<artifactId>jettison</artifactId>
|
|
|
|
|
<version>${jettison.version}</version>
|
|
|
|
|
</dependency>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2017-12-18 05:14:30 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>${log4j.version}</version>
|
|
|
|
|
</dependency>
|
2017-06-16 18:57:00 -04:00
|
|
|
|
<!-- Avro dependencies we mostly get transitively, manual version coallescing -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.avro</groupId>
|
|
|
|
|
<artifactId>avro</artifactId>
|
|
|
|
|
<version>${avro.version}</version>
|
|
|
|
|
</dependency>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<!--This is not used by hbase directly. Used by thrift,
|
2015-12-15 15:11:27 -05:00
|
|
|
|
dropwizard and zk.-->
|
2019-04-16 16:22:01 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
|
<version>${caffeine.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-30 11:09:36 -04:00
|
|
|
|
<dependency>
|
2015-12-15 15:11:27 -05:00
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
2012-05-30 19:51:44 -04:00
|
|
|
|
<artifactId>metrics-core</artifactId>
|
|
|
|
|
<version>${metrics-core.version}</version>
|
2012-05-30 11:09:36 -04:00
|
|
|
|
</dependency>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<dependency>
|
2016-05-05 16:41:26 -04:00
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
2013-08-02 15:01:34 -04:00
|
|
|
|
<version>${httpclient.version}</version>
|
|
|
|
|
</dependency>
|
2016-06-15 12:26:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
|
<version>${httpcore.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>${commons-codec.version}</version>
|
|
|
|
|
</dependency>
|
2018-10-12 05:15:41 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
|
<artifactId>commons-validator</artifactId>
|
|
|
|
|
<version>${commons-validator.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2017-08-24 14:10:17 -04:00
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>${commons-lang3.version}</version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependency>
|
2012-05-30 16:53:15 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
2017-08-25 07:34:03 -04:00
|
|
|
|
<artifactId>commons-math3</artifactId>
|
2012-05-30 16:53:15 -04:00
|
|
|
|
<version>${commons-math.version}</version>
|
|
|
|
|
</dependency>
|
2018-04-09 14:37:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<!-- commons-logging is only used by hbase-http's HttpRequestLog and hbase-server's
|
|
|
|
|
HBaseTestingUtil.
|
|
|
|
|
-->
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
|
<version>${zookeeper.version}</version>
|
|
|
|
|
<exclusions>
|
2020-01-23 12:25:51 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
|
</exclusion>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
|
</exclusion>
|
2013-07-29 19:12:29 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jmx</groupId>
|
|
|
|
|
<artifactId>jmxri</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jdmk</groupId>
|
|
|
|
|
<artifactId>jmxtools</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.jms</groupId>
|
|
|
|
|
<artifactId>jms</artifactId>
|
|
|
|
|
</exclusion>
|
2013-09-23 12:55:09 -04:00
|
|
|
|
<exclusion>
|
2014-05-20 06:57:11 -04:00
|
|
|
|
<groupId>io.netty</groupId>
|
2013-09-23 12:55:09 -04:00
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2018-02-28 17:11:02 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
|
<version>${jline.version}</version>
|
|
|
|
|
</dependency>
|
2013-09-23 12:55:09 -04:00
|
|
|
|
<dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<groupId>org.apache.thrift</groupId>
|
|
|
|
|
<artifactId>libthrift</artifactId>
|
|
|
|
|
<version>${thrift.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jruby</groupId>
|
|
|
|
|
<artifactId>jruby-complete</artifactId>
|
|
|
|
|
<version>${jruby.version}</version>
|
|
|
|
|
</dependency>
|
2015-01-21 16:12:57 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jruby.jcodings</groupId>
|
|
|
|
|
<artifactId>jcodings</artifactId>
|
|
|
|
|
<version>${jcodings.version}</version>
|
|
|
|
|
</dependency>
|
2014-10-03 02:06:32 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jruby.joni</groupId>
|
|
|
|
|
<artifactId>joni</artifactId>
|
|
|
|
|
<version>${joni.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependency>
|
2018-04-09 14:37:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2019-07-23 22:02:49 -04:00
|
|
|
|
<version>${jackson.databind.version}</version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jamon</groupId>
|
|
|
|
|
<artifactId>jamon-runtime</artifactId>
|
|
|
|
|
<version>${jamon-runtime.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- REST dependencies -->
|
|
|
|
|
<dependency>
|
2017-01-30 14:54:54 -05:00
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
<version>${servlet.api.version}</version>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependency>
|
2017-06-28 17:28:40 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
|
<version>${wx.rs.api.version}</version>
|
|
|
|
|
</dependency>
|
2019-04-15 20:52:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.activation</groupId>
|
|
|
|
|
<artifactId>javax.activation</artifactId>
|
|
|
|
|
<version>1.2.0</version>
|
|
|
|
|
</dependency>
|
2019-05-02 16:37:31 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
</dependency>
|
2017-09-04 16:10:20 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<!--This lib has JspC in it. Needed precompiling jsps in hbase-rest, etc.-->
|
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
|
|
|
|
<version>${glassfish.jsp.version}</version>
|
|
|
|
|
</dependency>
|
2018-04-09 14:37:44 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<!-- this lib is used by the compiled Jsp from the above JspC -->
|
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
|
<version>2.3.1</version>
|
|
|
|
|
</dependency>
|
2017-09-15 20:30:12 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
|
<version>${glassfish.el.version}</version>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
<version>${jaxb-api.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.xml.stream</groupId>
|
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
2012-12-03 16:30:19 -05:00
|
|
|
|
</dependency>
|
2015-01-21 16:12:57 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
2015-01-25 19:48:29 -05:00
|
|
|
|
<scope>test</scope>
|
2015-01-21 16:12:57 -05:00
|
|
|
|
</dependency>
|
2020-01-16 11:46:39 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2017-10-03 01:53:34 -04:00
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito-core.version}</version>
|
2015-01-25 19:48:29 -05:00
|
|
|
|
<scope>test</scope>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependency>
|
2013-04-25 01:02:07 -04:00
|
|
|
|
<dependency>
|
2015-01-21 16:02:24 -05:00
|
|
|
|
<groupId>org.apache.htrace</groupId>
|
2017-10-26 17:23:42 -04:00
|
|
|
|
<artifactId>htrace-core4</artifactId>
|
2013-08-14 19:20:51 -04:00
|
|
|
|
<version>${htrace.version}</version>
|
|
|
|
|
</dependency>
|
2014-01-25 23:41:39 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
|
<version>${disruptor.version}</version>
|
|
|
|
|
</dependency>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
<dependency>
|
2015-03-27 16:15:27 -04:00
|
|
|
|
<groupId>net.spy</groupId>
|
|
|
|
|
<artifactId>spymemcached</artifactId>
|
|
|
|
|
<version>${spy.version}</version>
|
|
|
|
|
<optional>true</optional>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2018-10-09 13:06:10 -04:00
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
<version>${bouncycastle.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-10-21 21:12:07 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kerby</groupId>
|
|
|
|
|
<artifactId>kerb-core</artifactId>
|
|
|
|
|
<version>${kerby.version}</version>
|
|
|
|
|
</dependency>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kerby</groupId>
|
|
|
|
|
<artifactId>kerb-client</artifactId>
|
|
|
|
|
<version>${kerby.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kerby</groupId>
|
|
|
|
|
<artifactId>kerb-simplekdc</artifactId>
|
|
|
|
|
<version>${kerby.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-crypto</artifactId>
|
|
|
|
|
<version>${commons-crypto.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-framework</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
2017-09-26 16:00:49 -04:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-client</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
2017-09-26 16:00:49 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
|
</exclusion>
|
2016-10-27 21:50:20 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2017-10-13 06:18:39 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.curator</groupId>
|
|
|
|
|
<artifactId>curator-recipes</artifactId>
|
|
|
|
|
<version>${curator.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
|
|
|
<artifactId>zookeeper</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2017-08-19 04:23:52 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.yetus</groupId>
|
|
|
|
|
<artifactId>audience-annotations</artifactId>
|
|
|
|
|
<version>${audience-annotations.version}</version>
|
|
|
|
|
</dependency>
|
2019-10-11 08:30:29 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-gson</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
|
|
|
|
</dependency>
|
2017-07-05 15:06:29 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-miscellaneous</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-netty</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-protobuf</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
2020-08-25 00:05:52 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-jetty</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
|
|
|
|
<artifactId>hbase-shaded-jersey</artifactId>
|
|
|
|
|
<version>${hbase-thirdparty.version}</version>
|
2017-07-05 15:06:29 -04:00
|
|
|
|
</dependency>
|
2019-06-12 17:42:34 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
|
|
|
<artifactId>jaxws-ri</artifactId>
|
2019-06-19 03:21:08 -04:00
|
|
|
|
<version>2.3.2</version>
|
2019-06-12 17:42:34 -04:00
|
|
|
|
<type>pom</type>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>javax.activation-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
<dependencies>
|
2017-08-31 11:03:22 -04:00
|
|
|
|
<!--REMOVE THIS. HERE TEMPORARILY.
|
|
|
|
|
Implication is that every module needs junit which is not so.
|
|
|
|
|
Cannot undo though because build runs test on each module and
|
|
|
|
|
it fails if no junit. TODO. -->
|
2010-05-20 01:24:32 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2019-07-23 09:22:00 -04:00
|
|
|
|
<scope>test</scope>
|
2010-05-20 01:24:32 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2017-08-31 11:03:22 -04:00
|
|
|
|
|
2010-04-12 19:50:51 -04:00
|
|
|
|
<!--
|
|
|
|
|
To publish, use the following settings.xml file ( placed in ~/.m2/settings.xml )
|
2010-02-24 15:17:17 -05:00
|
|
|
|
|
2010-04-12 19:50:51 -04:00
|
|
|
|
<settings>
|
|
|
|
|
<servers>
|
|
|
|
|
<server>
|
|
|
|
|
<id>apache.releases.https</id>
|
|
|
|
|
<username>hbase_committer</username>
|
|
|
|
|
<password>********</password>
|
|
|
|
|
</server>
|
|
|
|
|
|
|
|
|
|
<server>
|
|
|
|
|
<id>apache.snapshots.https</id>
|
|
|
|
|
<username>hbase_committer</username>
|
|
|
|
|
<password>********</password>
|
|
|
|
|
</server>
|
|
|
|
|
|
|
|
|
|
</servers>
|
|
|
|
|
</settings>
|
|
|
|
|
|
|
|
|
|
$ mvn deploy
|
|
|
|
|
(or)
|
2010-06-07 19:06:24 -04:00
|
|
|
|
$ mvn -s /my/path/settings.xml deploy
|
2010-04-12 19:50:51 -04:00
|
|
|
|
|
|
|
|
|
-->
|
2011-03-15 18:20:08 -04:00
|
|
|
|
<profiles>
|
2016-03-14 21:28:50 -04:00
|
|
|
|
<profile>
|
2015-12-26 17:47:53 -05:00
|
|
|
|
<id>build-with-jdk8</id>
|
|
|
|
|
<activation>
|
2019-01-30 03:20:33 -05:00
|
|
|
|
<jdk>[1.8,)</jdk>
|
2015-12-26 17:47:53 -05:00
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2019-01-30 03:20:33 -05:00
|
|
|
|
<profile>
|
|
|
|
|
<id>build-with-jdk11</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<jdk>[1.11,)</jdk>
|
|
|
|
|
</activation>
|
2020-02-13 15:43:05 -05:00
|
|
|
|
<properties>
|
|
|
|
|
<!-- TODO: replicate logic for windows support -->
|
|
|
|
|
<argLine>--add-opens=java.base/jdk.internal.ref=ALL-UNNAMED ${hbase-surefire.argLine}</argLine>
|
2020-03-30 12:31:10 -04:00
|
|
|
|
<!-- We need a minimum HDFS version of 3.2.0 for HADOOP-12760 -->
|
|
|
|
|
<hadoop-three.version>3.2.0</hadoop-three.version>
|
|
|
|
|
<!--
|
2020-04-14 00:35:43 -04:00
|
|
|
|
Value to use for surefire when running jdk11.
|
2020-03-30 12:31:10 -04:00
|
|
|
|
TODO: replicate logic for windows
|
|
|
|
|
-->
|
2020-04-14 00:35:43 -04:00
|
|
|
|
<surefire.Xmx>2200m</surefire.Xmx>
|
2020-02-13 15:43:05 -05:00
|
|
|
|
</properties>
|
2019-01-30 03:20:33 -05:00
|
|
|
|
</profile>
|
2015-03-11 14:18:30 -04:00
|
|
|
|
<!-- profile activated by the Jenkins patch testing job -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>jenkins.patch</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
<property>
|
|
|
|
|
<name>HBasePatchProcess</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
2015-12-28 00:26:49 -05:00
|
|
|
|
<properties>
|
|
|
|
|
<surefire.rerunFailingTestsCount>2</surefire.rerunFailingTestsCount>
|
|
|
|
|
</properties>
|
2015-03-11 14:18:30 -04:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<tasks>
|
2015-06-04 19:11:15 -04:00
|
|
|
|
<echo>Maven Execution Environment</echo>
|
2015-03-11 14:18:30 -04:00
|
|
|
|
<echo>MAVEN_OPTS="${env.MAVEN_OPTS}"</echo>
|
|
|
|
|
</tasks>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2015-10-14 15:22:27 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<id>jacoco</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
|
<version>${jacoco.version}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>prepare-agent</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>report</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>report</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<systemPropertyVariables>
|
|
|
|
|
<jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
|
|
|
|
|
</systemPropertyVariables>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/generated/**/*.class</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2011-06-06 19:16:09 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<id>os.linux</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
<os>
|
|
|
|
|
<family>Linux</family>
|
|
|
|
|
</os>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.platform>${os.name}-${os.arch}-${sun.arch.data.model}</build.platform>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<id>os.mac</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<os>
|
|
|
|
|
<family>Mac</family>
|
|
|
|
|
</os>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.platform>Mac_OS_X-${sun.arch.data.model}</build.platform>
|
|
|
|
|
</properties>
|
2011-06-06 19:16:09 -04:00
|
|
|
|
</profile>
|
2013-01-30 16:31:21 -05:00
|
|
|
|
<profile>
|
|
|
|
|
<id>os.windows</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<os>
|
|
|
|
|
<family>Windows</family>
|
|
|
|
|
</os>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<build.platform>cygwin</build.platform>
|
2015-10-14 15:22:27 -04:00
|
|
|
|
<argLine>${hbase-surefire.cygwin-argLine}</argLine>
|
2013-01-30 16:31:21 -05:00
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2019-12-02 07:39:24 -05:00
|
|
|
|
<!-- this profile should match the name of the release profile in the root asf pom -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>apache-release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- This should insert itself in place of the normal deploy plugin and then
|
|
|
|
|
handle either closing or dropping the staging repository for us depending
|
|
|
|
|
on if the build succeeds.
|
|
|
|
|
-->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.8</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<nexusUrl>https://repository.apache.org/</nexusUrl>
|
|
|
|
|
<serverId>apache.releases.https</serverId>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<!-- this profile should be activated for release builds -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.rat</groupId>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<executions>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2015-05-31 11:17:23 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2017-09-14 20:20:59 -04:00
|
|
|
|
<version>${enforcer.version}</version>
|
2019-09-18 09:16:19 -04:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>extra-enforcer-rules</artifactId>
|
|
|
|
|
<version>${extra.enforcer.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2015-05-31 11:17:23 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<rules>
|
|
|
|
|
<enforceBytecodeVersion>
|
|
|
|
|
<maxJdkVersion>${compileSource}</maxJdkVersion>
|
|
|
|
|
<message>HBase has unsupported dependencies.
|
|
|
|
|
HBase requires that all dependencies be compiled with version ${compileSource} or earlier
|
|
|
|
|
of the JDK to properly build from source. You appear to be using a newer dependency. You can use
|
|
|
|
|
either "mvn -version" or "mvn enforcer:display-info" to verify what version is active.
|
|
|
|
|
Non-release builds can temporarily build with a newer JDK version by setting the
|
|
|
|
|
'compileSource' property (eg. mvn -DcompileSource=1.8 clean package).
|
|
|
|
|
</message>
|
2019-09-18 09:16:19 -04:00
|
|
|
|
<ignoreClasses>
|
|
|
|
|
<ignoreClass>module-info</ignoreClass>
|
|
|
|
|
</ignoreClasses>
|
2015-05-31 11:17:23 -04:00
|
|
|
|
</enforceBytecodeVersion>
|
|
|
|
|
</rules>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2012-02-11 17:12:23 -05:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<!-- Dependency management profiles for submodules when building against specific hadoop branches.-->
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- Submodules that need hadoop dependencies should declare
|
2020-04-16 06:57:40 -04:00
|
|
|
|
profiles with activation properties matching the profile here.
|
|
|
|
|
Generally, it should be sufficient to copy the first
|
|
|
|
|
few lines of the profile you want to match. -->
|
|
|
|
|
<!-- Profile for building against Hadoop 3.0.0. Activate by default -->
|
2012-03-08 12:58:08 -05:00
|
|
|
|
<profile>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<id>hadoop-3.0</id>
|
2012-03-08 12:58:08 -05:00
|
|
|
|
<activation>
|
2020-04-16 06:57:40 -04:00
|
|
|
|
<property><name>!hadoop.profile</name></property>
|
2012-03-08 12:58:08 -05:00
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<hadoop.version>${hadoop-three.version}</hadoop.version>
|
2020-01-20 00:22:04 -05:00
|
|
|
|
<assembly.file>src/main/assembly/hadoop-three-compat.xml</assembly.file>
|
2012-03-08 12:58:08 -05:00
|
|
|
|
</properties>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-mapreduce-client-core</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<exclusions>
|
2019-03-25 09:25:15 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2019-08-21 10:06:05 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-xc</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2020-04-29 10:37:05 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
2017-08-21 20:14:53 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.inject</groupId>
|
|
|
|
|
<artifactId>javax.inject</artifactId>
|
|
|
|
|
</exclusion>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-mapreduce-client-jobclient</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<exclusions>
|
2019-03-25 09:25:15 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2020-04-29 10:37:05 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-mapreduce-client-jobclient</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
2019-03-25 09:25:15 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2020-04-29 10:37:05 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
2017-12-14 10:19:34 -05:00
|
|
|
|
<version>${hadoop-three.version}</version>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusions>
|
2017-12-14 10:19:34 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2018-02-13 15:35:26 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
|
</exclusion>
|
2016-08-02 12:36:51 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
|
</exclusion>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
|
</exclusion>
|
2016-08-02 12:36:51 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
|
</exclusion>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
|
</exclusion>
|
2017-12-14 10:19:34 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
2018-02-13 15:35:26 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2018-02-13 15:35:26 -05:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-hdfs</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-auth</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
2017-07-24 21:25:08 -04:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</exclusion>
|
2018-10-17 14:31:56 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
|
<artifactId>json-smart</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2017-07-24 21:25:08 -04:00
|
|
|
|
</exclusions>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<exclusions>
|
2017-12-14 10:19:34 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-json</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-servlet</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
2017-12-14 10:19:34 -05:00
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
</exclusion>
|
2017-01-01 15:15:32 -05:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</exclusion>
|
2017-10-02 17:31:48 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehause.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehause.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2020-02-13 15:43:05 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<!--
|
|
|
|
|
a missing transitive dependency on JDK9+ (obsoleted by Hadoop-3.3.0+, HADOOP-15775)
|
|
|
|
|
-->
|
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>javax.activation-api</artifactId>
|
|
|
|
|
<version>1.2.0</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-02-13 15:35:26 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
|
<type>test-jar</type>
|
|
|
|
|
<classifier>tests</classifier>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
2019-03-25 09:25:15 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
</exclusion>
|
2018-02-13 15:35:26 -05:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-client</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-annotations</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- This was marked as test dep in earlier pom, but was scoped compile.
|
|
|
|
|
Where do we actually need it? -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-minicluster</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<exclusions>
|
2019-03-25 09:25:15 -04:00
|
|
|
|
<!--If we comment this in, a few tests in hbase-mapreduce
|
|
|
|
|
fail. They depend on jersey-core somehow. But excluding
|
|
|
|
|
jersey-core here messes up hbase-it because jersey-core
|
|
|
|
|
implements a 1.x jaxrs Response Interface when we depend
|
|
|
|
|
on the 2.x Interface... . Letting this jar come in
|
|
|
|
|
transitively here but will exclude it down in hbase-it.
|
|
|
|
|
See HBASE-22029.
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
-->
|
2017-10-26 17:23:42 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>stax</groupId>
|
|
|
|
|
<artifactId>stax-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty</artifactId>
|
|
|
|
|
</exclusion>
|
2016-08-02 02:17:59 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
</exclusion>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2015-02-17 20:46:27 -05:00
|
|
|
|
<dependency>
|
2020-05-12 00:03:30 -04:00
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-minikdc</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2020-03-04 11:01:40 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-distcp</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
|
<artifactId>hadoop-hdfs-client</artifactId>
|
|
|
|
|
<version>${hadoop-three.version}</version>
|
|
|
|
|
</dependency>
|
2014-09-30 01:28:12 -04:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
2012-05-01 17:08:11 -04:00
|
|
|
|
</profile>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<!-- profiles for the tests
|
2011-11-19 11:38:07 -05:00
|
|
|
|
See as well the properties of the project for the values
|
|
|
|
|
when no profile is active. -->
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
2015-11-03 23:47:07 -05:00
|
|
|
|
<!-- Use it to launch all tests in the same JVM -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>singleJVMTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<surefire.firstPartGroups/>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch small tests only -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>runSmallTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.SmallTests</surefire.firstPartGroups>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<surefire.secondPartGroups/>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch medium tests only -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>runMediumTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.MediumTests</surefire.firstPartGroups>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<surefire.secondPartGroups/>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch large tests only -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>runLargeTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.LargeTests</surefire.firstPartGroups>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<surefire.secondPartGroups/>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch small & medium tests -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>runDevTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>false</surefire.skipSecondPart>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.SmallTests</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups>org.apache.hadoop.hbase.testclassification.MediumTests</surefire.secondPartGroups>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch all tests -->
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<id>runAllTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
<surefire.skipSecondPart>false</surefire.skipSecondPart>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.SmallTests</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups>org.apache.hadoop.hbase.testclassification.MediumTests,org.apache.hadoop.hbase.testclassification.LargeTests</surefire.secondPartGroups>
|
2011-11-19 11:38:07 -05:00
|
|
|
|
</properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
</profile>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<id>runMiscTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.MiscTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runCoprocessorTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>
|
|
|
|
|
org.apache.hadoop.hbase.testclassification.CoprocessorTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runClientTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.ClientTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runMasterTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.MasterTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runMapredTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.MapredTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runMapreduceTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.MapReduceTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runRegionServerTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>
|
|
|
|
|
org.apache.hadoop.hbase.testclassification.RegionServerTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runVerySlowMapReduceTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>2</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>
|
|
|
|
|
org.apache.hadoop.hbase.testclassification.VerySlowMapReduceTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runVerySlowRegionServerTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>2</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>
|
|
|
|
|
org.apache.hadoop.hbase.testclassification.VerySlowRegionServerTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runFilterTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.FilterTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runIOTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.IOTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runRestTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.RestTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runRPCTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.RPCTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runReplicationTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>
|
|
|
|
|
org.apache.hadoop.hbase.testclassification.ReplicationTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runSecurityTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.SecurityTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>runFlakeyTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.FlakeyTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2017-12-02 19:30:30 -05:00
|
|
|
|
<profile>
|
|
|
|
|
<id>runZKTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.ZKTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2019-11-15 05:56:01 -05:00
|
|
|
|
<profile>
|
|
|
|
|
<id>runRSGroupTests</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<surefire.firstPartForkCount>1</surefire.firstPartForkCount>
|
|
|
|
|
<surefire.secondPartForkCount>1</surefire.secondPartForkCount>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
|
|
|
|
<surefire.firstPartGroups>org.apache.hadoop.hbase.testclassification.RSGroupTests
|
|
|
|
|
</surefire.firstPartGroups>
|
|
|
|
|
<surefire.secondPartGroups></surefire.secondPartGroups>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2014-09-13 00:37:06 -04:00
|
|
|
|
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Use it to launch tests locally-->
|
2011-12-05 16:20:04 -05:00
|
|
|
|
<id>localTests</id>
|
|
|
|
|
<activation>
|
2012-12-13 08:53:06 -05:00
|
|
|
|
<property>
|
2013-04-07 01:49:57 -04:00
|
|
|
|
<name>test</name>
|
2012-12-13 08:53:06 -05:00
|
|
|
|
</property>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
[jira] [HBASE-4908] HBase cluster test tool (port from 0.89-fb)
Summary:
Porting one of our HBase cluster test tools (a single-process multi-threaded
load generator and verifier) from 0.89-fb to trunk.
I cleaned up the code a bit compared to what's in 0.89-fb, and discovered that
it has some features that I have not tried yet (some kind of a kill test, and
some way to run HBase as multiple processes on one machine).
The main utility of this piece of code for us has been the HBaseClusterTest
command-line tool (called HBaseTest in 0.89-fb), which we usually invoke as a
load test in our five-node dev cluster testing, e.g.:
hbase org.apache.hadoop.hbase.util.LoadTestTool -write 50:100:20 -tn loadtest4
-read 100:10 -zk <zk_quorum_node> -bloom ROWCOL -compression LZO -key_window 5
-max_read_errors 10000 -num_keys 10000000000 -start_key 0
Test Plan:
Run this on a dev cluster. Run all unit tests.
Reviewers: stack, Karthik, Kannan, nspiegelberg, JIRA
Reviewed By: nspiegelberg
CC: stack, nspiegelberg, mbautin, Karthik
Differential Revision: 549
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1211746 13f79535-47bb-0310-9956-ffa450edef68
2011-12-07 21:38:27 -05:00
|
|
|
|
<surefire.provider>surefire-junit4</surefire.provider>
|
|
|
|
|
<surefire.skipFirstPart>false</surefire.skipFirstPart>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
<surefire.firstPartGroups/>
|
2011-12-05 16:20:04 -05:00
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<!-- Profile for running clover. You need to have a clover license under ~/.clover.license for ${clover.version}
|
|
|
|
|
or you can provide the license with -Dmaven.clover.licenseLocation=/path/to/license. Committers can find
|
|
|
|
|
the license under https://svn.apache.org/repos/private/committers/donated-licenses/clover/
|
2015-05-02 00:53:13 -04:00
|
|
|
|
The report will be generated under target/site/clover/index.html when you run
|
2016-09-24 19:07:25 -04:00
|
|
|
|
MAVEN_OPTS="-Xmx2048m" mvn clean package -Pclover site -->
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<id>clover</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
|
<property>
|
|
|
|
|
<name>clover</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.clover.licenseLocation>${user.home}/.clover.license</maven.clover.licenseLocation>
|
|
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2015-05-02 00:53:13 -04:00
|
|
|
|
<!-- When Clover is active, we need to add it as a dependency for the javadoc plugin, or
|
|
|
|
|
our instrumented classes for the doclet will fail
|
|
|
|
|
-->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-clover2-plugin</artifactId>
|
|
|
|
|
<version>${clover.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2012-05-26 01:56:04 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-clover2-plugin</artifactId>
|
|
|
|
|
<version>${clover.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includesAllSourceRoots>true</includesAllSourceRoots>
|
|
|
|
|
<includesTestSourceRoots>true</includesTestSourceRoots>
|
|
|
|
|
<targetPercentage>50%</targetPercentage>
|
|
|
|
|
<generateHtml>true</generateHtml>
|
|
|
|
|
<generateXml>true</generateXml>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/generated/**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>clover-setup</id>
|
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>setup</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>clover</id>
|
|
|
|
|
<phase>site</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>clover</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2012-06-03 17:59:50 -04:00
|
|
|
|
</profile>
|
2018-04-12 22:55:27 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<!-- Used by the website generation script on jenkins to
|
|
|
|
|
do a local install of the jars we need to run a normal
|
|
|
|
|
site build w/o forking.
|
|
|
|
|
-->
|
|
|
|
|
<id>site-install-step</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
|
|
|
<enforcer.skip>true</enforcer.skip>
|
|
|
|
|
<checkstyle.skip>true</checkstyle.skip>
|
2020-03-11 22:18:09 -04:00
|
|
|
|
<spotbugs.skip>true</spotbugs.skip>
|
2018-04-12 22:55:27 -04:00
|
|
|
|
<warbucks.skip>true</warbucks.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<!-- Used by the website generation script on jenkins to
|
|
|
|
|
mitigate the impact of unneeded build forks while building
|
|
|
|
|
our javadocs.
|
|
|
|
|
-->
|
|
|
|
|
<id>site-build-step</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
<enforcer.skip>true</enforcer.skip>
|
|
|
|
|
<maven.main.skip>true</maven.main.skip>
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
<warbucks.skip>true</warbucks.skip>
|
|
|
|
|
<protoc.skip>true</protoc.skip>
|
|
|
|
|
<remoteresources.skip>true</remoteresources.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2019-03-21 12:34:12 -04:00
|
|
|
|
<profile>
|
|
|
|
|
<id>eclipse-specific</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>m2e.version</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- General config for eclipse classpath/settings -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
|
<version>${maven.eclipse.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
|
|
|
|
only. It has no influence on the Maven build itself. m2e does not
|
|
|
|
|
provide any safeguards against rogue maven plugins that leak
|
|
|
|
|
classloaders, modify random files inside workspace or throw nasty
|
|
|
|
|
exceptions to fail the build.
|
|
|
|
|
Top level doesn't do any specific configuration currently - left
|
|
|
|
|
to modules to decide what they want to bind, sans those plugins
|
|
|
|
|
defined in this pom. -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
|
<version>${lifecycle.mapping.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
|
<pluginExecutions>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
|
<versionRange>[0.6.2.201302030002,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore></ignore>
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
|
<versionRange>${enforcer.version}</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore />
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
|
<versionRange>[1.5,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process</goal>
|
|
|
|
|
<goal>bundle</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<ignore />
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
<pluginExecution>
|
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
|
<versionRange>[1.3,)</versionRange>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>create-timestamp</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
|
<action>
|
|
|
|
|
<execute>
|
|
|
|
|
<runOnConfiguration>true</runOnConfiguration>
|
|
|
|
|
<runOnIncremental>true</runOnIncremental>
|
|
|
|
|
</execute>
|
|
|
|
|
</action>
|
|
|
|
|
</pluginExecution>
|
|
|
|
|
</pluginExecutions>
|
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2020-01-17 18:27:44 -05:00
|
|
|
|
<profile>
|
|
|
|
|
<id>aarch64</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<external.protobuf.groupid>org.openlabtesting.protobuf</external.protobuf.groupid>
|
|
|
|
|
</properties>
|
|
|
|
|
<activation>
|
|
|
|
|
<os>
|
|
|
|
|
<family>linux</family>
|
|
|
|
|
<arch>aarch64</arch>
|
|
|
|
|
</os>
|
|
|
|
|
</activation>
|
|
|
|
|
</profile>
|
2011-03-15 18:20:08 -04:00
|
|
|
|
</profiles>
|
2019-05-21 15:34:25 -04:00
|
|
|
|
<!-- See https://jira.codehaus.org/browse/MSITE-443 why the settings need to be here and not in pluginManagement. -->
|
2010-02-22 18:49:24 -05:00
|
|
|
|
<reporting>
|
|
|
|
|
<plugins>
|
2010-03-04 12:54:27 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
2019-07-31 13:39:35 -04:00
|
|
|
|
<version>${maven.project.info.report.version}</version>
|
2015-10-12 00:23:46 -04:00
|
|
|
|
<reportSets>
|
|
|
|
|
<reportSet>
|
2015-10-22 05:16:08 -04:00
|
|
|
|
<reports>
|
2015-10-22 07:41:10 -04:00
|
|
|
|
<report>dependencies</report>
|
|
|
|
|
<report>dependency-convergence</report>
|
|
|
|
|
<report>dependency-info</report>
|
|
|
|
|
<report>dependency-management</report>
|
|
|
|
|
<report>index</report>
|
2019-07-31 13:39:35 -04:00
|
|
|
|
<report>issue-tracking</report>
|
|
|
|
|
<report>mailing-list</report>
|
2015-10-22 05:34:19 -04:00
|
|
|
|
<report>plugin-management</report>
|
|
|
|
|
<report>plugins</report>
|
2019-07-31 13:39:35 -04:00
|
|
|
|
<report>project-team</report>
|
2015-10-22 07:41:10 -04:00
|
|
|
|
<report>scm</report>
|
|
|
|
|
<report>summary</report>
|
2015-10-22 05:16:08 -04:00
|
|
|
|
</reports>
|
2015-10-12 00:23:46 -04:00
|
|
|
|
</reportSet>
|
|
|
|
|
</reportSets>
|
2017-07-03 08:33:01 -04:00
|
|
|
|
<!-- see src/site/site.xml for selected reports -->
|
2013-03-11 00:11:33 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
|
|
|
|
</configuration>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</plugin>
|
2014-09-11 20:09:25 -04:00
|
|
|
|
|
2013-09-12 20:04:22 -04:00
|
|
|
|
<plugin>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2013-09-12 20:04:22 -04:00
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2019-08-11 15:48:08 -04:00
|
|
|
|
<configuration>
|
|
|
|
|
<tags>
|
|
|
|
|
<tag>
|
|
|
|
|
<name>apiNote</name>
|
|
|
|
|
<placement>a</placement>
|
|
|
|
|
<head>API Note:</head>
|
|
|
|
|
</tag>
|
|
|
|
|
</tags>
|
|
|
|
|
</configuration>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<reportSets>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- Dev API -->
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<reportSet>
|
|
|
|
|
<id>devapi</id>
|
|
|
|
|
<reports>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<report>aggregate-no-fork</report>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</reports>
|
|
|
|
|
<configuration>
|
|
|
|
|
<destDir>devapidocs</destDir>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<name>Developer API</name>
|
|
|
|
|
<description>The full HBase API, including private and unstable APIs</description>
|
2015-10-25 20:11:10 -04:00
|
|
|
|
<sourceFileExcludes>
|
|
|
|
|
<exclude>**/generated/*</exclude>
|
|
|
|
|
<exclude>**/protobuf/*</exclude>
|
|
|
|
|
</sourceFileExcludes>
|
2018-11-06 16:17:32 -05:00
|
|
|
|
<excludePackageNames>org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated*</excludePackageNames>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<show>private</show> <!-- (shows all classes and members) -->
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<quiet>true</quiet>
|
|
|
|
|
<linksource>true</linksource>
|
|
|
|
|
<sourcetab>2</sourcetab>
|
|
|
|
|
<validateLinks>true</validateLinks>
|
|
|
|
|
<fixClassComment>true</fixClassComment>
|
|
|
|
|
<fixFieldComment>true</fixFieldComment>
|
|
|
|
|
<fixMethodComment>true</fixMethodComment>
|
|
|
|
|
<fixTags>all</fixTags>
|
|
|
|
|
<notimestamp>true</notimestamp>
|
2019-03-05 05:47:21 -05:00
|
|
|
|
<locale>en_US</locale>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- Pass some options straight to the javadoc executable since it is easier -->
|
|
|
|
|
<additionalJOption>-J-Xmx2G</additionalJOption>
|
|
|
|
|
<!-- JDK8 javadoc requires test scope transitive dependencies due to our custom doclet -->
|
|
|
|
|
<additionalDependencies>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2017-10-03 01:53:34 -04:00
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito-core.version}</version>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependency>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
|
|
|
|
</additionalDependency>
|
2019-10-16 11:31:47 -04:00
|
|
|
|
<!-- javadoc tooling requires jsr305 due to references to it from things we rely on -->
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
</additionalDependency>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependencies>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
</configuration>
|
|
|
|
|
</reportSet>
|
|
|
|
|
<reportSet>
|
|
|
|
|
<id>testdevapi</id>
|
|
|
|
|
<reports>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<report>test-aggregate-no-fork</report>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</reports>
|
|
|
|
|
<configuration>
|
|
|
|
|
<destDir>testdevapidocs</destDir>
|
|
|
|
|
<name>Developer API</name>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<description>The full HBase API test code, including private and unstable APIs</description>
|
2015-10-25 20:11:10 -04:00
|
|
|
|
<sourceFileExcludes>
|
|
|
|
|
<exclude>**/generated/*</exclude>
|
|
|
|
|
<exclude>**/protobuf/*</exclude>
|
|
|
|
|
</sourceFileExcludes>
|
2018-11-06 16:17:32 -05:00
|
|
|
|
<excludePackageNames>org.apache.hadoop.hbase.tmpl.common:com.google.protobuf:org.apache.hadoop.hbase.generated*</excludePackageNames>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<show>private</show> <!-- (shows all classes and members) -->
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<quiet>true</quiet>
|
|
|
|
|
<linksource>true</linksource>
|
|
|
|
|
<sourcetab>2</sourcetab>
|
|
|
|
|
<validateLinks>true</validateLinks>
|
|
|
|
|
<fixClassComment>true</fixClassComment>
|
|
|
|
|
<fixFieldComment>true</fixFieldComment>
|
|
|
|
|
<fixMethodComment>true</fixMethodComment>
|
|
|
|
|
<fixTags>all</fixTags>
|
|
|
|
|
<notimestamp>true</notimestamp>
|
2019-03-05 05:47:21 -05:00
|
|
|
|
<locale>en_US</locale>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- Pass some options straight to the javadoc executable since it is easier -->
|
|
|
|
|
<additionalJOption>-J-Xmx2G</additionalJOption>
|
|
|
|
|
<!-- JDK8 javadoc requires test scope transitive dependencies due to our custom doclet -->
|
|
|
|
|
<additionalDependencies>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2017-10-03 01:53:34 -04:00
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito-core.version}</version>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependency>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
|
|
|
|
</additionalDependency>
|
2019-10-16 11:31:47 -04:00
|
|
|
|
<!-- javadoc tooling requires jsr305 due to references to it from things we rely on -->
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
</additionalDependency>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependencies>
|
|
|
|
|
<inherited>false</inherited>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</reportSet>
|
2013-09-16 15:26:46 -04:00
|
|
|
|
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- User API -->
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<reportSet>
|
|
|
|
|
<id>userapi</id>
|
|
|
|
|
<reports>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<report>aggregate-no-fork</report>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</reports>
|
|
|
|
|
<configuration>
|
|
|
|
|
<doclet>
|
2017-08-19 04:23:52 -04:00
|
|
|
|
org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</doclet>
|
|
|
|
|
<docletArtifact>
|
2017-08-19 04:23:52 -04:00
|
|
|
|
<groupId>org.apache.yetus</groupId>
|
|
|
|
|
<artifactId>audience-annotations</artifactId>
|
|
|
|
|
<version>${audience-annotations.version}</version>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</docletArtifact>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<useStandardDocletOptions>true</useStandardDocletOptions>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
<destDir>apidocs</destDir>
|
|
|
|
|
<name>User API</name>
|
|
|
|
|
<description>The HBase Application Programmer's API</description>
|
|
|
|
|
<excludePackageNames>
|
2017-01-19 13:24:24 -05:00
|
|
|
|
org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress*
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</excludePackageNames>
|
2014-09-22 21:46:35 -04:00
|
|
|
|
<!-- switch on dependency-driven aggregation -->
|
|
|
|
|
<includeDependencySources>false</includeDependencySources>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<sourceFilesExclude>**/generated/*</sourceFilesExclude>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<show>protected</show> <!-- (shows only public and protected classes and members) -->
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<quiet>true</quiet>
|
|
|
|
|
<linksource>true</linksource>
|
|
|
|
|
<sourcetab>2</sourcetab>
|
|
|
|
|
<validateLinks>true</validateLinks>
|
|
|
|
|
<fixClassComment>true</fixClassComment>
|
|
|
|
|
<fixFieldComment>true</fixFieldComment>
|
|
|
|
|
<fixMethodComment>true</fixMethodComment>
|
|
|
|
|
<fixTags>all</fixTags>
|
|
|
|
|
<notimestamp>true</notimestamp>
|
2019-03-05 05:47:21 -05:00
|
|
|
|
<locale>en_US</locale>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- Pass some options straight to the javadoc executable since it is easier -->
|
|
|
|
|
<additionalJOption>-J-Xmx2G</additionalJOption>
|
|
|
|
|
<!-- JDK8 javadoc requires test scope transitive dependencies due to our custom doclet -->
|
|
|
|
|
<additionalDependencies>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2017-10-03 01:53:34 -04:00
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito-core.version}</version>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependency>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
|
|
|
|
</additionalDependency>
|
2019-10-16 11:31:47 -04:00
|
|
|
|
<!-- javadoc tooling requires jsr305 due to references to it from things we rely on -->
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
</additionalDependency>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependencies>
|
|
|
|
|
<inherited>false</inherited>
|
|
|
|
|
</configuration>
|
|
|
|
|
</reportSet>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<!-- User Test API -->
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<reportSet>
|
|
|
|
|
<id>testuserapi</id>
|
|
|
|
|
<reports>
|
2019-03-16 16:02:22 -04:00
|
|
|
|
<report>test-aggregate-no-fork</report>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</reports>
|
|
|
|
|
<configuration>
|
|
|
|
|
<doclet>
|
2017-08-19 04:23:52 -04:00
|
|
|
|
org.apache.yetus.audience.tools.IncludePublicAnnotationsStandardDoclet
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</doclet>
|
|
|
|
|
<docletArtifact>
|
2017-08-19 04:23:52 -04:00
|
|
|
|
<groupId>org.apache.yetus</groupId>
|
|
|
|
|
<artifactId>audience-annotations</artifactId>
|
|
|
|
|
<version>${audience-annotations.version}</version>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</docletArtifact>
|
|
|
|
|
<useStandardDocletOptions>true</useStandardDocletOptions>
|
|
|
|
|
<destDir>testapidocs</destDir>
|
|
|
|
|
<name>User API</name>
|
|
|
|
|
<description>The HBase Application Programmer's API</description>
|
|
|
|
|
<excludePackageNames>
|
2017-01-19 13:24:24 -05:00
|
|
|
|
org.apache.hadoop.hbase.backup*:org.apache.hadoop.hbase.catalog:org.apache.hadoop.hbase.client.coprocessor:org.apache.hadoop.hbase.client.metrics:org.apache.hadoop.hbase.codec*:org.apache.hadoop.hbase.constraint:org.apache.hadoop.hbase.coprocessor.*:org.apache.hadoop.hbase.executor:org.apache.hadoop.hbase.fs:*.generated.*:org.apache.hadoop.hbase.io.hfile.*:org.apache.hadoop.hbase.mapreduce.hadoopbackport:org.apache.hadoop.hbase.mapreduce.replication:org.apache.hadoop.hbase.master.*:org.apache.hadoop.hbase.metrics*:org.apache.hadoop.hbase.migration:org.apache.hadoop.hbase.monitoring:org.apache.hadoop.hbase.p*:org.apache.hadoop.hbase.regionserver.compactions:org.apache.hadoop.hbase.regionserver.handler:org.apache.hadoop.hbase.regionserver.snapshot:org.apache.hadoop.hbase.replication.*:org.apache.hadoop.hbase.rest.filter:org.apache.hadoop.hbase.rest.model:org.apache.hadoop.hbase.rest.p*:org.apache.hadoop.hbase.security.*:org.apache.hadoop.hbase.thrift*:org.apache.hadoop.hbase.tmpl.*:org.apache.hadoop.hbase.tool:org.apache.hadoop.hbase.trace:org.apache.hadoop.hbase.util.byterange*:org.apache.hadoop.hbase.util.test:org.apache.hadoop.hbase.util.vint:org.apache.hadoop.metrics2*:org.apache.hadoop.hbase.io.compress*
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</excludePackageNames>
|
|
|
|
|
<!-- switch on dependency-driven aggregation -->
|
|
|
|
|
<includeDependencySources>false</includeDependencySources>
|
|
|
|
|
<sourceFilesExclude>**/generated/*</sourceFilesExclude>
|
2015-11-03 17:31:24 -05:00
|
|
|
|
<show>protected</show> <!-- (shows only public and protected classes and members) -->
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<quiet>true</quiet>
|
|
|
|
|
<linksource>true</linksource>
|
|
|
|
|
<sourcetab>2</sourcetab>
|
|
|
|
|
<validateLinks>true</validateLinks>
|
|
|
|
|
<fixClassComment>true</fixClassComment>
|
|
|
|
|
<fixFieldComment>true</fixFieldComment>
|
|
|
|
|
<fixMethodComment>true</fixMethodComment>
|
|
|
|
|
<fixTags>all</fixTags>
|
|
|
|
|
<notimestamp>true</notimestamp>
|
2019-03-05 05:47:21 -05:00
|
|
|
|
<locale>en_US</locale>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
<!-- Pass some options straight to the javadoc executable since it is easier -->
|
|
|
|
|
<additionalJOption>-J-Xmx2G</additionalJOption>
|
|
|
|
|
<!-- JDK8 javadoc requires test scope transitive dependencies due to our custom doclet -->
|
|
|
|
|
<additionalDependencies>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
2017-10-03 01:53:34 -04:00
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<version>${mockito-core.version}</version>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependency>
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
|
<version>${hamcrest.version}</version>
|
|
|
|
|
</additionalDependency>
|
2019-10-16 11:31:47 -04:00
|
|
|
|
<!-- javadoc tooling requires jsr305 due to references to it from things we rely on -->
|
|
|
|
|
<additionalDependency>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
</additionalDependency>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
</additionalDependencies>
|
|
|
|
|
<inherited>false</inherited>
|
2014-08-21 04:50:14 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</reportSet>
|
|
|
|
|
</reportSets>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
</plugin>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2018-02-20 18:15:34 -05:00
|
|
|
|
<version>${maven.checkstyle.version}</version>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
<configuration>
|
2015-03-09 22:50:56 -04:00
|
|
|
|
<excludes>target/**</excludes>
|
2014-10-15 13:28:45 -04:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2015-10-16 09:37:20 -04:00
|
|
|
|
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</plugins>
|
|
|
|
|
</reporting>
|
2015-10-22 08:28:36 -04:00
|
|
|
|
<distributionManagement>
|
|
|
|
|
<site>
|
|
|
|
|
<id>hbase.apache.org</id>
|
|
|
|
|
<name>HBase Website at hbase.apache.org</name>
|
|
|
|
|
<!-- On why this is the tmp dir and not hbase.apache.org, see
|
2020-04-09 17:41:41 -04:00
|
|
|
|
https://issues.apache.org/jira/browse/HBASE-7593?focusedCommentId=13555866&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13555866
|
|
|
|
|
-->
|
2015-10-22 08:28:36 -04:00
|
|
|
|
<url>file:///tmp</url>
|
|
|
|
|
</site>
|
|
|
|
|
</distributionManagement>
|
2010-02-22 18:49:24 -05:00
|
|
|
|
</project>
|