stack
f4d7cd5f58
HBASE-16150 Remove ConcurrentIndex (Hiroshi Ikeda)
2016-06-30 15:04:36 -07:00
Elliott Clark
e721aa1a8a
HBASE-16061 Allow logging to a buffered console
2016-06-17 17:09:18 -07:00
Enis Soztutar
ff5dbf584e
HBASE-15950 Fix memstore size estimates to be more tighter
2016-06-15 14:19:28 -07:00
stack
867150333c
HBASE-15994 Allow selection of RpcSchedulers
...
Adds logging by the RpcExecutors of their run configs
Adds a FifoRpcSchedulerFactory so you can try Fifo scheduler.
2016-06-08 20:25:38 -07:00
stack
e90a6db20b
Revert "HBASE-15994 Allow selection of RpcSchedulers Adds logging by the RpcExecutors of their run configs Changes the default RpcSchedulerFactory from SimpleRpcSchedulerFactory.class to RpcSchedulerFactoryImpl.class. RpcSchedulerFactoryImpl.class. defaults to using SimpleRpcSchedulerFactory.class and the SimpleRpcScheduler, as has been default up to this, unless you set "hbase.region.server.rpc.scheduler.class" to org.apache.hadoop.hbase.ipc.FifoRpcScheduler"
...
This reverts commit d49b883825
.
2016-06-08 20:25:09 -07:00
stack
d49b883825
HBASE-15994 Allow selection of RpcSchedulers Adds logging by the RpcExecutors of their run configs Changes the default RpcSchedulerFactory from SimpleRpcSchedulerFactory.class to RpcSchedulerFactoryImpl.class. RpcSchedulerFactoryImpl.class. defaults to using SimpleRpcSchedulerFactory.class and the SimpleRpcScheduler, as has been default up to this, unless you set "hbase.region.server.rpc.scheduler.class" to org.apache.hadoop.hbase.ipc.FifoRpcScheduler
...
Signed-off-by: stack <stack@apache.org>
2016-06-08 20:06:22 -07:00
Sean Mackrory
878b1ea721
HBASE-15889. String case conversions are locale-sensitive, used without locale
...
Signed-off-by: Sean Busbey <busbey@apache.org>
2016-06-06 12:14:20 -05:00
Lars Hofhansl
9f343b5871
HBASE-15881 Allow BZIP2 compression.
2016-06-03 15:33:05 -07:00
tedyu
ce43e33876
HBASE-15769 Perform validation on cluster key for add_peer (Matt Warhaftig)
2016-05-17 13:26:45 -07:00
Sean Busbey
e365191896
HBASE-15780 Make AuthUtil public and rely on it for talking to secure HBase.
...
Signed-off-by: Gary Helmling <garyh@apache.org>
Signed-off-by: Mikhail Antonov <antonov@apache.org>
Signed-off-by: stack <stack@apache.org>
2016-05-16 00:53:45 -05:00
Jonathan M Hsieh
137d891fbc
HBASE-15791 Improve javadoc around ScheduledChore
2016-05-09 09:57:31 -07:00
Ramkrishna
94c4d568b5
HBASE-15609 Remove PB references from Result, DoubleColumnInterpreter and
...
any such public facing class for 2.0 (Ram)
2016-05-09 14:57:39 +05:30
Junegunn Choi
615d77722c
HBASE-15528 Clean up outdated entries in hbase-default.xml
...
Signed-off-by: Enis Soztutar <enis@apache.org>
Conflicts:
src/main/asciidoc/_chapters/hbase-default.adoc
2016-05-03 21:21:20 -07:00
tedyu
c512750914
HBASE-15686 Add override mechanism for the exempt classes when dynamically loading table coprocessor
2016-04-28 09:21:22 -07:00
stack
6b78409eb2
HBASE-15477 Purge 'next block header' from cached blocks
...
When we read from HDFS, we overread to pick up the next blocks header.
Doing this saves a seek as we move through the hfile; we save having to
do an explicit seek just to read the block header every time we need to
read the body. We used to read in the next header as part of the
current blocks buffer. This buffer was then what got persisted to
blockcache; so we were over-persisting: our block plus the next blocks'
header (33 bytes).
This patch undoes this over-persisting.
Removes support for version 1 blocks (0.2 was added in hbase-0.92.0).
Not needed any more.
There is an open question on whether checksums should be persisted
when caching. The code seems to say no but if cache is SSD backed or
backed by anything that does not do error correction, we'll want
checksums.
Adds loads of documentation.
M hbase-common/src/main/java/org/apache/hadoop/hbase/io/hfile/BlockType.java
(write) Add writing from a ByteBuff.
M hbase-common/src/main/java/org/apache/hadoop/hbase/nio/ByteBuff.java
(toString) Add one so ByteBuff looks like ByteBuffer when you click on
it in IDE
M hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileBlock.java
Remove support for version 1 blocks.
Cleaned up handling of metadata added when we serialize a block to
caches. Metadata is smaller now.
When we serialize (used when caching), do not persist the next blocks
header if present.
Removed a bunch of methods, a few of which had overlapping
functionality and others that exposed too much of our internals.
Also removed a bunch of constructors and unified the constructors we
had left over making them share a common init method.
Shutdown access to defines that should only be used internally here.
Renamed all to do w/ 'EXTRA' and 'extraSerialization' to instead talk
about metadata saved to caches; was unclear previously what EXTRA was
about.
Renamed static final declarations as all uppercase.
(readBlockDataInternal): Redid. Couldn't make sense of it previously.
Undid heavy-duty parse of header by constructing HFileBlock. Other
cleanups. Its 1/3rd the length it used to be. More to do in here.
Signed-off-by: stack <stack@apache.org>
2016-04-27 10:41:47 -07:00
Phil Yang
d5acbdd1e4
HBASE-15645 hbase.rpc.timeout is not used in operations of HTable
...
Signed-off-by: stack <stack@apache.org>
2016-04-26 10:52:12 -07:00
stack
27446a5c4a
HBASE-15392 Single Cell Get reads two HFileBlocks
...
M hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScanQueryMatcher.java
moreRowsMayExistAfterCell Exploit the fact a Scan is a Get Scan. Also save compares
if no non-default stopRow.
M hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java
optimize Add doc on what is being optimized. Also, if a Get Scan, do not
optimize else we'll keep going after our row is DONE.
Another place to make use of the Get Scan fact is when we are DONE.. if
Get Scan, we can close out the scan.
Signed-off-by: stack <stack@apache.org>
2016-04-22 09:07:09 -07:00
stack
0b65f2002b
HBASE-15366 Add doc, trace-level logging, and test around No change in operation, just adding doc., and some helpful logging
...
M hbase-common/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileContext.java
Make it emit its toString in format that matches the way we log
elsewhere
M hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFile.java
Capitalize statics.
M hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileBlock.java
Verify and cleanup documentation of hfileblock format at head of class.
Explain what 'EXTRA_SERIALIZATION_SPACE' is all about.
Connect how we serialize and deserialize... done in different places
and one way when pulling from HDFS and another when pulling from cache
(TO BE FIXED). Shut down a load of public access.
M hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java
Add trace-level logging
Signed-off-by: stack <stack@apache.org>
2016-04-21 10:56:07 -07:00
Enis Soztutar
1e6d7e811d
HBASE-15683 Min latency in latency histograms are emitted as Long.MAX_VALUE
2016-04-21 10:44:08 -07:00
stack
fd49923350
HBASE-15650 Remove TimeRangeTracker as point of contention when many threads reading a StoreFile
...
Refactor so we use the immutable, unsynchronized TimeRange when doing
time-based checks at read time rather than use heavily synchronized
TimeRangeTracker; let TimeRangeTracker be for write-time only.
While in here, changed the Segment stuff so that when an immutable
segment, it uses TimeRange rather than TimeRangeTracker too.
M hbase-common/src/main/java/org/apache/hadoop/hbase/io/TimeRange.java
Make allTime final.
Add a includesTimeRange method copied from TimeRangeTracker.
M hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/TimeRangeTracker.java
Change name of a few methods so they match TimeRange methods that do
same thing.
(getTimeRangeTracker, getTimeRange, toTimeRange) add utility methods
M hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFile.java
Change Reader to use TimeRange-based checks instead of
TimeRangeTracker.
2016-04-15 16:56:05 -07:00
tedyu
043ffd1db1
HBASE-15187 Integrate CSRF prevention filter to REST gateway
2016-04-15 13:46:30 -07:00
tedyu
e31361dcb8
HBASE-14985 TimeRange constructors should set allTime when appropriate (Geoffrey Jacoby)
2016-04-11 17:58:38 -07:00
Junegunn Choi
c8190d7e2e
HBASE-15569 Make Bytes.toStringBinary faster
...
Signed-off-by: stack <stack@apache.org>
2016-03-31 21:27:11 -07:00
Elliott Clark
295e5cbcf0
HBASE-15460 Fix infer issues in hbase-common
...
Summary: Fix issues found by static analysis
Test Plan: Unit test pass
Differential Revision: https://reviews.facebook.net/D55551
2016-03-21 11:55:51 -07:00
tedyu
1cb82d9118
HBASE-15439 getMaximumAllowedTimeBetweenRuns in ScheduledChore ignores the TimeUnit (Jingcheng Du)
2016-03-14 07:10:34 -07:00
Andrew Purtell
e8063d4f17
Amend HBASE-15322 Operations using Unsafe path broken for platforms not having sun.misc.Unsafe
...
"Object cannot be cast to boolean" in UnsafeAvailChecker
2016-03-11 17:37:39 -08:00
anoopsjohn
75547a42b9
HBASE-15322 Operations using Unsafe path broken for platforms not having sun.misc.Unsafe.
2016-03-11 09:38:24 +05:30
Matteo Bertozzi
46bf3c3275
HBASE-15113 Procedure v2 - Speedup eviction of sys operation results
2016-03-08 11:08:05 -08:00
Stephen Yuan Jiang
0a025a1aca
HBASE-15413 Procedure-V2: print out ProcedureInfo during trace (Stephen Yuan Jiang)
2016-03-07 20:45:43 -08:00
zhangduo
12853268e1
HBASE-15365 Do not write to '/tmp' in TestHBaseConfiguration
...
Conflicts:
hbase-common/src/test/java/org/apache/hadoop/hbase/TestHBaseConfiguration.java
2016-03-02 11:26:13 +08:00
Mikhail Antonov
998e339d6e
HBASE-15342 create branch-1.3 and update branch-1 poms to 1.4.0-SNAPSHOT
2016-02-28 16:23:29 -08:00
stack
46ffa85982
HBASE-15351 Fix description of hbase.bucketcache.size in hbase-default.xml
2016-02-26 13:53:59 -08:00
Elliott Clark
7c290e922a
HBASE-15222 Addendum - Use less contended classes for metrics
2016-02-25 09:34:47 -08:00
Mikhail Antonov
04a3b27330
HBASE-15136 Explore different queuing behaviors while busy
2016-02-24 20:42:23 -08:00
Elliott Clark
3352173ec8
HBASE-15222 Use less contended classes for metrics
...
Summary:
Use less contended things for metrics.
For histogram which was the largest culprit we use FastLongHistogram
For atomic long where possible we now use counter.
Test Plan: unit tests
Reviewers:
Subscribers:
Differential Revision: https://reviews.facebook.net/D54381
2016-02-24 14:47:00 -08:00
stack
b4f747f52e
HBASE-12133 Add FastLongHistogram for metric computation (Yi Deng)
2016-02-24 14:35:22 -08:00
stack
5e7fecc15b
HBASE-15279 OrderedBytes.isEncodedValue does not check for int8 and int16 types (Robert Yokota)
2016-02-17 22:10:35 -08:00
Jonathan M Hsieh
2e1a3ef644
HBASE-15283 Revert to IOException in TimeRange constructor to maintain API compat in 1.x line
...
[branch-1 and branch-1.2 only] HBASE-14355 changed the type of exception thrown if an invalid TimeRange is specified. This reverts to 1.1.x semantics.
2016-02-17 15:57:54 -08:00
Matteo Bertozzi
455e09c325
HBASE-15100 ProcedureInfo constructor should be InterfaceAudience.Private (addendum)
2016-02-17 15:40:39 -08:00
Enis Soztutar
73d6778820
HBASE-15177 Reduce garbage created under high load
...
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/RpcServer.java
2016-02-04 13:26:22 -08:00
Enis Soztutar
f1e7c06539
HBASE-15129 Set default value for hbase.fs.tmp.dir rather than fully depend on hbase-default.xml (Yu Li)
...
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/security/SecureBulkLoadUtil.java
2016-02-02 17:06:20 -08:00
Matteo Bertozzi
931e1b03ab
HBASE-15100 Master WALProcs are deleted out of order ending up with older wals not removed
2016-01-22 16:15:58 -08:00
stack
a9c008344f
HBASE-15091 Forward-port to 1.2 HBASE-15031 "Fix merge of MVCC and SequenceID performance regression in branch-1.0"
2016-01-21 10:26:46 -08:00
stack
44dc9d1162
HBASE-15098 Normalizer switch in configuration is not used
2016-01-20 09:36:46 -08:00
Gary Helmling
17130e4d2f
HBASE-15111 hbase version should write to stdout
...
Signed-off-by: Sean Busbey <busbey@cloudera.com>
Conflicts:
hbase-common/src/main/java/org/apache/hadoop/hbase/util/VersionInfo.java
2016-01-19 22:50:37 -06:00
stack
d6654ea7ea
HBASE-15118 Fix findbugs complaint in hbase-server
2016-01-18 15:37:53 -08:00
stack
546adefcd6
HBASE-15087 Fix hbase-common findbugs complaints
2016-01-14 17:18:16 -08:00
Matteo Bertozzi
3c2229a9a8
HBASE-14837 Procedure v2 - Procedure Queue Improvement
2016-01-14 09:25:06 -08:00
tedyu
c2256bd2ae
HBASE-15026 The default value of "hbase.regions.slop" in docs is obsolete (Tianyin Xu)
2015-12-25 15:41:52 -08:00
Jonathan M Hsieh
03e1451070
HBASE-15035 bulkloading hfiles with tags that require splits do not preserve tags
2015-12-25 12:24:47 -08:00
anoopsjohn
4a7565af9c
HBASE-14940 Make our unsafe based ops more safe.
2015-12-24 07:56:27 +05:30
chenheng
f7b67ca763
HBASE-14684 Try to remove all MiniMapReduceCluster in unit tests
2015-12-23 10:35:48 +08:00
Enis Soztutar
1b66f474b5
HBASE-14977 ChoreService.shutdown may result in ConcurrentModificationException - ADDENDUM to fix extra concurrency issues
2015-12-22 02:04:32 -08:00
anoopsjohn
a93c0e822e
HBASE-14999 Remove ref to org.mortbay.log.Log.
2015-12-17 23:33:39 +05:30
Enis Soztutar
31d73a4bde
HBASE-14977 ChoreService.shutdown may result in ConcurrentModificationException (Vladimir Rodionov)
2015-12-15 11:57:33 -08:00
ramkrishna
65117d3d04
HBASE-13153 Bulk Loaded HFile Replication (Ashish Singhi)
2015-12-10 13:10:41 +05:30
Gary Helmling
5dec5ad250
HBASE-14866 VerifyReplication and ReplicationAdmin should use full peer configuration for peer connection
2015-12-09 16:47:25 -08:00
stack
d955cb3280
Revert "Revert "HBASE-14922 Delayed flush doesn't work causing flush storms; addendum by Lars Hofhansl""
...
This reverts commit 693e1dee4c
.
2015-12-05 14:29:31 -08:00
stack
693e1dee4c
Revert "HBASE-1422 Delayed flush doesn't work causing flush storms; addendum by Lars Hofhansl"
...
Pushed with wrong JIRA number. Revert to fix.
This reverts commit 7d0c08fbcd
.
2015-12-05 14:29:12 -08:00
stack
7d0c08fbcd
HBASE-1422 Delayed flush doesn't work causing flush storms; addendum by Lars Hofhansl
2015-12-05 11:39:59 -08:00
Elliott Clark
9cf2d641ff
HBASE-14922 Delayed flush doesn't work causing flush storms. -- ADD
2015-12-04 18:37:40 -08:00
Elliott Clark
85167849ab
HBASE-14922 Delayed flush doesn't work causing flush storms.
2015-12-04 16:53:56 -08:00
Enis Soztutar
edb8edfeb3
HBASE-14904 Mark Base[En|De]coder LimitedPrivate and fix binary compat issue
...
Conflicts:
hbase-common/src/main/java/org/apache/hadoop/hbase/codec/BaseDecoder.java
hbase-common/src/main/java/org/apache/hadoop/hbase/codec/BaseEncoder.java
2015-12-03 18:27:20 -08:00
tedyu
66adeb3048
HBASE-14894 Fix misspellings of threshold in log4j.properties files for tests (Youngjoon Kim)
2015-11-28 10:10:27 -08:00
Gary Helmling
07b07300b8
HBASE-14821 Allow configuration overrides in TableOutputFormat
2015-11-24 12:15:25 -08:00
Enis Soztutar
8a69dd5b08
HBASE-14468 Compaction improvements: FIFO compaction policy (Vladimir Rodionov)
2015-11-18 19:27:15 -08:00
Elliott Clark
4d5ac316b6
HBASE-14708 Use copy on write Map for region location cache
...
Summary:
Create and use a copy on write map for region location.
- Create a copy on write map backed by a sorted array.
- Create a test for both comparing each with a jdk provided map.
- Change MetaCache to use the new map.
Test Plan:
- org.apache.hadoop.hbase.client.TestFromClientSide
- TestHCM
Differential Revision: https://reviews.facebook.net/D49545
2015-11-17 11:01:52 -08:00
zhangduo
f8ee447c55
HBASE-14806 Missing sources.jar for several modules when building HBase
...
Conflicts:
hbase-common/pom.xml
2015-11-17 08:55:24 +08:00
stack
336eb92016
HBASE-14355 Scan different TimeRange for each column family
2015-11-13 22:44:05 -08:00
Elliott Clark
2b84c40f01
HBASE-14765 Remove snappy profile
2015-11-05 10:21:14 -08:00
Gary Helmling
85f2aee070
HBASE-14700 Support a permissive mode for secure clusters to allow SIMPLE auth clients
2015-10-30 20:06:23 -07:00
anoopsjohn
de89172244
HBASE-14557 MapReduce WALPlayer issue with NoTagsKeyValue.
2015-10-30 21:19:12 +05:30
Enis Soztutar
87c97c231a
HBASE-14680 Two configs for snapshot timeout and better defaults (Heng Chen)
...
Conflicts:
hbase-common/src/main/resources/hbase-default.xml
hbase-server/src/main/java/org/apache/hadoop/hbase/master/snapshot/DisabledTableSnapshotHandler.java
2015-10-27 15:06:37 -07:00
Andrew Purtell
53a8ce5fab
HBASE-14705 Javadoc for KeyValue constructor is not correct (Jean-Marc Spaggiari)
2015-10-27 14:39:14 -07:00
Ben Lau
288a274052
HBASE-14283 Reverse scan doesn’t work with HFile inline index/bloom blocks
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
2015-10-26 15:13:07 -07:00
stack
4f8387959a
HBASE-14266 RegionServers have a lock contention of Configuration.getProps
2015-10-24 15:37:55 -07:00
stack
9e3c381bee
HBASE-14657 Remove unneeded API from EncodedSeeker (Heng Chen)
2015-10-22 21:32:51 -07:00
stack
836afcc901
HBASE-14637 Loosen TestChoreService assert AND have TestDataBlockEncoders do less work (and add timeouts)
2015-10-17 16:27:23 -07:00
Elliott Clark
f4a4c3a489
HBASE-14597 Fix Groups cache in multi-threaded env
2015-10-16 15:19:19 -07:00
tedyu
be04ede5b9
HBASE-14594 Use new DNS API introduced in HADOOP-12437 (Josh Elser)
2015-10-14 14:24:24 -07:00
stack
11066d0459
HBASE-14598 ByteBufferOutputStream grows its HeapByteBuffer beyond JVM limitations (Ian Friedman)
2015-10-14 13:13:35 -07:00
stack
4588620a04
HBASE-14268 Improve KeyLocker; ADDENDUM: FIX JAVADOC WARNING
2015-10-14 09:59:07 -07:00
Nicolas Liochon
56ecbc1a2c
HBASE-14268 Improve KeyLocker - add missing files
2015-10-13 08:06:27 -07:00
stack
98f1387f86
HBASE-14268 Improve KeyLocker (Hiroshi Ikeda)
2015-10-12 23:14:16 -07:00
Enis Soztutar
bbbb52cfbf
HBASE-14501 NPE in replication with TDE
...
Conflicts:
hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java
hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValueUtil.java
2015-10-12 20:44:35 -07:00
anoopsjohn
5dba2c71f7
HBASE-13819 Make RPC layer CellBlock buffer a DirectByteBuffer.
2015-10-13 07:59:11 +05:30
Stephen Yuan Jiang
a6d90bcc97
HBASE-14432 Procedure V2 - enforce ACL on procedure admin tasks (Stephen Yuan Jiang)
2015-10-06 09:11:38 -07:00
Matteo Bertozzi
12e8076fba
HBASE-14347 Add a switch to DynamicClassLoader to disable it (huaxiang sun)
2015-10-05 16:17:30 -07:00
smaddineni
373c75dde6
HBASE-13770 Programmatic JAAS configuration option for secure zookeeper may be broken
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/HQuorumPeer.java
2015-10-02 18:00:47 -07:00
Elliott Clark
cca2ba4d93
HBASE-14512 Cache UGI groups
...
Summary:
Don't create a user for every call. Instead create one user per connection.
Then inside of SecureHadoopUser cache the groupNames. This allows HBase to cache
empty groups. This is needed since it's much more likely that HBase will be accessed
by a user that's not present on the posix /etc/group file.
Test Plan: Unit Tests
Differential Revision: https://reviews.facebook.net/D47751
2015-09-30 12:52:50 -07:00
stack
4812d9a178
HBASE-14465 Backport 'Allow rowlock to be reader/write' to branch-1
2015-09-30 11:48:46 -07:00
Apekshit(Appy) Sharma
efc51bced6
HBASE-14469 Fix comment, validation and logging in HeapMemorySizeUtil.getGlobalMemStoreLowerMark
2015-09-24 19:15:33 -07:00
Stephen Yuan Jiang
e38fd84d3f
HBASE-14107 Administrative Task: Provide an API to List all procedures (Stephen Yuan Jiang)
2015-09-24 07:17:23 -07:00
Nick Dimiduk
364b977269
HBASE-14382 TestInterfaceAudienceAnnotations should hadoop-compt module resources
2015-09-09 11:11:08 -07:00
Lars Hofhansl
16d4ed6337
HBASE-12988 [Replication]Parallel apply edits across regions.
2015-09-04 13:23:36 -07:00
stack
5dcb3d85a1
HBASE-14224 Fix coprocessor handling of duplicate classes
2015-08-24 14:12:57 -07:00
stack
95682e7b7d
HBASE-13127 Add timeouts on all tests so less zombie sightings
2015-08-24 13:38:03 -07:00
Andrew Purtell
234a4632a4
HBASE-13996 Add write sniffing in canary (Liu Shaohui)
...
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java
Amending-Author: Andrew Purtell <apurtell@apache.org>
2015-08-21 22:57:28 -07:00
Sean Busbey
71fbd4ac63
HBASE-14251 ensure javadoc jars have LICENSE/NOTICE that match content.
2015-08-20 11:20:47 -05:00
Jerry He
d322ebadf5
HBASE-13706 CoprocessorClassLoader should not exempt Hive classes
2015-08-08 22:06:41 -07:00
Gábor Lipták
51061f08a3
HBASE-13865 Increase the default value for hbase.hregion.memstore.block.multipler from 2 to 4 (part 2)
2015-08-06 10:04:41 -07:00
tedyu
6a2b618d97
HBASE-13965 Stochastic Load Balancer JMX Metrics (Lei Chen)
2015-08-05 19:22:44 -07:00
Sean Busbey
a45651c2cf
HBASE-14085 Update LICENSE and NOTICE files.
...
* corrects license/notice for source distribution
* adds inception year to correct copyright in generated NOTICE files for jars
* updates project names in poms to use "Apache HBase" instead of "HBase" so jar NOTICE files will be correct
* uses append-resources to include supplemental info on jars with 3rd party works in source
* adds an hbase specific resource bundle for jars that include 3rd party works for binaries
** uses supplemental-model to fill in license gaps
** uses the above and a shade plugin transformation to build proper files for shaded jars.
** uses the above and the assembly plugin to build the proper files for bin assembly
* adds a NOTICE item for things copied out of Hadoop (TODO legal-discuss)
Conflicts:
NOTICE.txt
hbase-checkstyle/pom.xml
hbase-resource-bundle/pom.xml
hbase-server/pom.xml
hbase-thrift/pom.xml
pom.xml
2015-08-05 14:52:33 -07:00
tedyu
24dbe25e95
HBASE-13965 Revert due to test failure in TestAssignmentManager
2015-08-03 15:32:43 -07:00
tedyu
c215b900f4
HBASE-13965 Stochastic Load Balancer JMX Metrics (Lei Chen)
2015-08-03 12:50:44 -07:00
Sean Busbey
9091409800
HBASE-14087 Ensure correct ASF headers for docs/code
...
* adds missing headers
* corrects some old-form headers to current
* restores proper header for guava copied LimitInputStream
* adds proper header for protobuf copied read/writeRawVarint
Conflicts:
bin/considerAsDead.sh
dev-support/rebase_all_git_branches.sh
2015-07-31 11:22:50 -07:00
Andrew Purtell
67f4a077b9
HBASE-14155 StackOverflowError in reverse scan (Ramkrishna S. Vasudevan and Ted Yu)
2015-07-29 18:22:55 -07:00
Srikanth Srungarapu
da811332cf
HBASE-14057 HBase shell user_permission should list super users defined on hbase-site.xml
2015-07-28 11:43:24 -07:00
Matteo Bertozzi
b62f134545
HBASE-13415 Procedure v2 - Use nonces for double submits from client (Stephen Yuan Jiang)
...
Signed-off-by: Sean Busbey <busbey@apache.org>
2015-07-13 11:19:02 -05:00
Sean Busbey
88ff206c57
Revert "Procedure v2 - Use nonces for double submits from client (Stephen Yuan Jiang)"
...
This reverts commit 4eb84651a2
.
2015-07-13 11:16:21 -05:00
stack
a81b3c5afe
HBASE-14052 Mark a few methods in CellUtil audience private since only make sense internally to hbase
2015-07-10 10:44:08 -07:00
stack
8da1214099
HBASE-14053 Disable DLR in branch-1+
2015-07-09 16:38:04 -07:00
Matteo Bertozzi
4eb84651a2
Procedure v2 - Use nonces for double submits from client (Stephen Yuan Jiang)
2015-07-09 08:13:32 -07:00
Lars Hofhansl
29969dcf5c
HBASE-13329 ArrayIndexOutOfBoundsException in CellComparator#getMinimumMidpointArray.
2015-07-05 12:18:59 -07:00
Sean Busbey
a58848507a
HBASE-13990 make maven site generation work with jdk8
...
* includes additiona branch-1 specific fixes to javadocs
* includes rollback of 2 changes from HBASE-13898 that didn't apply to branch-1
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileBlock.java
2015-07-01 08:00:15 -05:00
Lars Hofhansl
163ddbf03c
HBASE-13959 Region splitting uses a single thread in most common cases. (Hari Krishna Dara)
2015-06-29 18:09:17 -07:00
Gábor Lipták
8e6fb569c5
HBASE-13963 Do not leak jdk.tools dependency from hbase-annotations
...
Signed-off-by: Sean Busbey <busbey@apache.org>
Conflicts:
hbase-common/pom.xml
2015-06-26 08:56:14 -05:00
ramkrishna
92f4e30f45
HBASE-13945 - Prefix_Tree seekBefore() does not work correctly (Ram)
2015-06-24 09:15:56 +05:30
Misty Stanley-Jones
9ac6539f6a
HBASE-13898 correct additional javadoc failures under java 8 <Gabor Liptak>
...
Ammending-Author: Sean Busbey <busbey@apache.org>
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
hbase-common/src/main/java/org/apache/hadoop/hbase/CellComparator.java
hbase-protocol/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufMagic.java
hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionObserver.java
hbase-server/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileBlockIndex.java
hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilterChunk.java
hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
2015-06-23 01:14:15 -05:00
Mikhail Antonov
84675ef615
HBASE-13103 [ergonomics] add region size balancing as a feature of master
2015-06-22 22:48:19 -07:00
Nick Dimiduk
34cd3377f8
HBASE-13933 DBE's seekBefore with tags corrupts the tag's offset information thus leading to incorrect results (ramkrishna.s.vasudevan)
2015-06-19 14:26:02 -07:00
Sean Busbey
f2f19ddb5c
HBASE-13909 update branch-1 poms to 1.3.0-SNAPSHOT
2015-06-15 22:30:56 -05:00
Matteo Bertozzi
ceba0659f0
HBASE-13894 Avoid visitor alloc each call of ByteBufferArray get/putMultiple()
2015-06-15 09:20:24 -07:00
Gábor Lipták
0a0ff3354a
HBASE-13569 Correct Javadoc (for Java8)
...
Signed-off-by: Sean Busbey <busbey@apache.org>
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
hbase-client/src/main/java/org/apache/hadoop/hbase/MetaTableAccessor.java
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Result.java
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
hbase-client/src/main/java/org/apache/hadoop/hbase/filter/FilterBase.java
hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
hbase-common/src/main/java/org/apache/hadoop/hbase/KeyValue.java
hbase-server/src/main/java/org/apache/hadoop/hbase/constraint/ConstraintException.java
hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/RegionObserver.java
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderV2.java
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileScanner.java
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MiniBatchOperationInProgress.java
hbase-server/src/main/java/org/apache/hadoop/hbase/util/BloomFilterWriter.java
2015-06-13 22:23:53 -05:00
Mikhail Antonov
366d7028ec
HBASE-13755 Provide single super user check implementation
2015-06-12 23:47:02 -07:00
Dave Latham
ae121ee7e9
HBASE-13639 SyncTable - rsync for HBase tables
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
Amending-Author: Andrew Purtell <apurtell@apache.org>
2015-06-12 16:00:01 -07:00
stack
ccdb26370f
HBASE-13729 Old hbase.regionserver.global.memstore.upperLimit and lowerLimit properties are ignored if present (Esteban Guitierrez)
2015-06-05 13:23:05 -07:00
Andrey Stepachev
27697498b6
HBASE-13647 Default value for hbase.client.operation.timeout is too high
2015-06-02 11:01:45 +01:00
Enis Soztutar
518a29140e
Revert "HBASE-13647 Default value for hbase.client.operation.timeout is too high"
...
This reverts commit 5383e476d5
.
2015-05-29 12:53:16 -07:00
stack
94f0ee7ee3
HBASE-13616 Move ServerShutdownHandler to Pv2
2015-05-28 15:04:27 -07:00
Nick Dimiduk
2f9851af26
HBASE-13761 Optimize FuzzyRowFilter (Vladimir Rodionov)
2015-05-28 10:17:46 -07:00
anoopsjohn
2133241849
HBASE-13778 BoundedByteBufferPool incorrectly increasing runningAverage buffer length.
2015-05-28 11:53:45 +05:30
Sean Busbey
279dd43570
HBASE-13710 Remove dependency on Hadoop's ReflectionUtil.
...
* copies ReflectionUtils.logThreadInfo and needed private methods from Hadoop
branch-2, fixes minor issues specific to our use.
* updates HttpServer's use of RU.newInstance to use the HBase version.
Side effect: previously, FilterInitializer instances that happened to also
implement Configurable would have setConfiguration called. Such uses should
instead rely on the mandatory FilterInitializer.initFilter method call.
2015-05-28 00:25:16 -05:00
ramkrishna
17a75083e8
HBASE-13393 - Optimize memstore flushing to avoid writing tag information
...
to hfiles when no tags are present. (Ram)
2015-05-28 10:38:18 +05:30
Enis Soztutar
2ba61ee1ab
HBASE-13732 TestHBaseFsck#testParallelWithRetriesHbck fails intermittently (Stephen Yuan Jiang)
2015-05-27 17:54:23 -07:00
Andrew Purtell
7df1814f7f
HBASE-13780 Default to 700 for HDFS root dir permissions for secure deployments (Enis Soztutar)
2015-05-27 13:15:43 -07:00
Andrey Stepachev
5383e476d5
HBASE-13647 Default value for hbase.client.operation.timeout is too high
2015-05-16 18:59:48 -07:00
Apekshit(Appy) Sharma
1cf85b3f7f
HBASE-11927 Use Native Hadoop Library for HFile checksum. (Apekshit)
...
Signed-off-by: stack <stack@apache.org>
2015-05-15 11:50:07 -07:00
Enis Soztutar
77b155858f
HBASE-13661 Correct binary compatibility issues discovered in 1.1.0RC0
2015-05-11 18:33:44 -07:00
stack
fdaeb86019
HBASE-13649 CellComparator.compareTimestamps javadoc inconsistent and wrong (Dave Latham)
2015-05-08 21:44:07 -07:00
tedyu
ec3d7189ad
HBASE-13625 Use HDFS for HFileOutputFormat2 partitioner's path (Stephen Yuan Jiang)
2015-05-06 07:29:57 -07:00
ramkrishna
ad8f1d076f
HBASE-13632 - Backport HBASE-13368 to branch-1 and 0.98 (Ram)
2015-05-06 13:44:48 +05:30
ramkrishna
426c7eef09
HBASE-13579 - Avoid isCellTTLExpired() for NO-TAG cases (Ram)
2015-05-06 12:12:39 +05:30
tedyu
9a4ea44d1e
HBASE-12413 Mismatch in the equals and hashcode methods of KeyValue (Jingcheng Du and Gariel Reid)
...
Conflicts:
hbase-common/src/main/java/org/apache/hadoop/hbase/CellComparator.java
hbase-common/src/test/java/org/apache/hadoop/hbase/TestKeyValue.java
2015-05-01 18:31:16 -07:00
Andrew Purtell
30d1fe2195
HBASE-12415 Add add(byte[][] arrays) to Bytes (Jean-Marc Spaggiari)
2015-05-01 18:19:25 -07:00
Devaraj Das
8aae3bfab6
HBASE-13351 Annotate internal MasterRpcServices methods with admin priority (Josh Elser)
2015-04-28 23:45:01 -07:00
Usha Kuchibhotla
0dbbc8b8de
HBASE-11677 Making Logger instance modifiers consistent.
...
* IA.Public accessible logger instances deprecated
* logger instances modified by tests left in place
* all others made private static final
Signed-off-by: Sean Busbey <busbey@apache.org>
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClientIdGenerator.java
hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionImplementation.java
hbase-client/src/main/java/org/apache/hadoop/hbase/client/RpcRetryingCallerImpl.java
hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestAsyncProcess.java
hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestIngestWithEncryption.java
hbase-rest/src/test/java/org/apache/hadoop/hbase/rest/TestStatusResource.java
hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java
hbase-server/src/test/java/org/apache/hadoop/hbase/TestTableDescriptor.java
hbase-server/src/test/java/org/apache/hadoop/hbase/mapreduce/TestRowCounter.java
hbase-server/src/test/java/org/apache/hadoop/hbase/util/hbck/TestOfflineMetaRebuildHole.java
hbase-server/src/test/java/org/apache/hadoop/hbase/util/hbck/TestOfflineMetaRebuildOverlap.java
2015-04-28 10:10:21 -05:00
stack
9e1cea17d0
HBASE-13575 TestChoreService has to make sure that the opened ChoreService is closed for each unit test (Stephen Yuan Jiang)
2015-04-27 14:24:30 -07:00
stack
16f8e7f55f
HBASE-13552 ChoreService shutdown message could be more informative (Jonathan Lawlor)
2015-04-24 13:42:55 -07:00
anoopsjohn
4666bf86a2
HBASE-13496 Make Bytes::compareTo inlineable.
2015-04-23 10:40:56 +05:30
ramkrishna
385b5fa1f6
HBASE-13502 - Deprecate/remove getRowComparator() in TableName (Ram)
2015-04-22 09:34:10 +05:30
zhangduo
ca7efc183a
HBASE-13499 AsyncRpcClient test cases failure in powerpc
2015-04-14 23:00:17 +08:00
Sean Busbey
b924c7564f
HBASE-13498 Add more docs and a basic check for storage policy handling.
...
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java
hbase-server/src/test/java/org/apache/hadoop/hbase/util/TestFSUtils.java
2015-04-20 10:54:05 -05:00
Jonathan Lawlor
a4f77d49a5
HBASE-13090 Progress heartbeats for long running scanners
...
Signed-off-by: stack <stack@apache.org>
2015-04-17 15:43:13 -07:00
Nick Dimiduk
cf45c8d30a
Bump pom version to 1.2.0-SNAPSHOT
2015-04-16 17:30:48 -07:00
stack
8166142b2e
HBASE-13291 Making methods under ScannerV2#next inlineable and faster
2015-04-16 14:56:08 -07:00
Devaraj Das
65bf10a47f
HBASE-13453. Master should not bind to region server ports (Srikanth Srungarapu)
2015-04-15 11:06:43 -07:00
Matteo Bertozzi
58b1598b44
HBASE-13203 Procedure v2 - master create/delete table
2015-04-15 11:01:36 +01:00
Matteo Bertozzi
bea57f2377
HBASE-13202 Procedure v2 - core framework
2015-04-15 11:00:44 +01:00
anoopsjohn
ba4c14133e
HBASE-13447 Bypass logic in TimeRange.compare.
2015-04-14 11:39:06 +05:30
Apekshit(Appy) Sharma
3ecd02cb4a
HBASE-13423 Remove old duplicate entry for hbase.regionserver.regionSplitLimit.
2015-04-10 20:41:16 +10:00
Andrew Purtell
356422e1ae
HBASE-13275 Setting hbase.security.authorization to false does not disable authorization
...
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/security/access/AccessController.java
hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestAccessController.java
2015-04-09 14:43:29 -07:00
Lars Hofhansl
562859f4af
HBASE-13362 Set max result size from client only (like scanner caching).
2015-04-08 21:43:22 -07:00
tedyu
c031d8de23
HBASE-13205 [branch-1] Backport HBASE-11598 Add simple rpc throttling (Ashish Singhi)
2015-04-07 18:29:03 -07:00
unknown
f1173f9975
HBASE-13410 - Bug in KeyValueUtil.oswrite() for non Keyvalue cases (Ram)
2015-04-07 10:30:44 +05:30
Apekshit(Appy) Sharma
4d8bcd4629
HBASE-6919 Remove unnecessary throws IOException from Bytes.readVLong.
...
Added readAsVLong() to deprecate readVLong() which was throwing IOException. Added test for readAsVLong().
Signed-off-by: Sean Busbey <busbey@apache.org>
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderV2.java
2015-04-03 21:41:39 -05:00
tedyu
4df24b8e6d
HBASE-12954 Ability impaired using HBase on multihomed hosts
2015-04-01 06:47:26 -07:00
Andrew Purtell
af1715933e
HBASE-12972 Region, a supportable public/evolving subset of HRegion
2015-03-30 18:01:32 -07:00
Andrew Purtell
e90ac5f812
HBASE-13303 Fix size calculation of results on the region server
2015-03-20 17:25:17 -07:00
Matteo Bertozzi
4230b1ae2e
HBASE-13282 Fix the minor issues of running Canary on kerberized environment (Srikanth Srungarapu)
2015-03-20 21:14:07 +00:00
Lars Hofhansl
676fb753d9
Reapply "HBASE-12976 Set default value for hbase.client.scanner.max.result.size." in 1.1 and 2.0 only
...
This reverts commit 64589abe99
.
2015-03-19 15:07:56 -07:00
Lars Hofhansl
aad299faba
Revert "HBASE-12976 Set default value for hbase.client.scanner.max.result.size."
...
This reverts commit 2583e8de57
.
2015-03-19 14:20:46 -07:00
Matteo Bertozzi
6b411b5d00
HBASE-13235 Revisit the security auditing semantics (Srikanth Srungarapu)
2015-03-19 07:01:55 +00:00
tedyu
e1f972170d
HBASE-13256 HBaseConfiguration#checkDefaultsVersion(Configuration) has spelling error (Josh Elser)
2015-03-17 07:24:38 -07:00
Josh Elser
c3b47f2251
HBASE-13236 Add addt'l lifecycle-mapping executions.
...
Adds a number of lifecycle-mapping entries which
prevent errors from showing up in Eclipse on a fresh
import of HBase. For plugins defined in the top-level
pom, the mapping is added there; otherwise, the mapping
is pushed down to the child pom.
Signed-off-by: Sean Busbey <busbey@apache.org>
2015-03-14 00:19:44 -05:00
stack
78d6a3402c
HBASE-13188 java.lang.ArithmeticException issue in BoundedByteBufferPool.putBuffer
2015-03-10 08:42:59 -07:00
Andrew Purtell
4afae59cfa
HBASE-13183 Make ZK tickTime configurable in standalone HBase (Alex Araujo)
2015-03-09 18:34:48 -07:00
stack
880215b728
HBASE-13142 [PERF] Reuse the IPCUtil#buildCellBlock buffer: ADDENDUM -- Fix build breakage
2015-03-06 16:30:50 -08:00
stack
3e3276d7fa
HBASE-13142 [PERF] Reuse the IPCUtil#buildCellBlock buffer
2015-03-06 14:35:49 -08:00
Jonathan Lawlor
0c64a57e52
HBASE-11544: [Ergonomics] hbase.client.scanner.caching is dogged and will try to return batch even if it means OOME
...
Signed-off-by: stack <stack@apache.org>
2015-03-04 18:04:15 -08:00
Lars Hofhansl
f5020e9c1a
HBASE-13109 Make better SEEK vs SKIP decisions during scanning.
2015-03-04 14:13:41 -08:00
stack
6b1674b31c
HBASE-13017 Backport HBASE-12035 Keep table state in Meta to 1.0 branch; REVERT
2015-03-03 13:26:15 -08:00
Enis Soztutar
9e7ad99593
HBASE-11580 Failover handling for secondary region replicas
...
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/client/RegionAdminServiceCallable.java
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/RegionReplicaReplicationEndpoint.java
2015-03-03 13:21:01 -08:00
zhangduo
0c4c60a99e
HBASE-13146 Race Condition in ScheduledChore and ChoreService
...
Signed-off-by: stack <stack@apache.org>
2015-03-03 11:32:12 -08:00
Ashish Singhi
41d93323f2
HBASE-13002 Make encryption cipher configurable
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
Conflicts:
hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
hbase-common/src/test/java/org/apache/hadoop/hbase/io/crypto/TestEncryption.java
2015-02-18 11:42:22 -08:00
stack
f5e2a82328
HBASE-13017 Backport HBASE-12035 Keep table state in Meta to 1.0 branch (Andrey Stepachev)
2015-02-18 09:58:32 -08:00
Abhishek Kumar
0004aeea80
HBASE-13050 Empty Namespace validation
...
Signed-off-by: Matteo Bertozzi <matteo.bertozzi@cloudera.com>
2015-02-18 08:32:55 +01:00
Andrew Purtell
b33f50e1d4
HBASE-13044 Configuration option for disabling coprocessor loading
...
Conflicts:
hbase-common/src/main/resources/hbase-default.xml
hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterCoprocessorHost.java
hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestCoprocessorConfiguration.java
2015-02-15 11:21:22 -08:00
stack
1338f0980e
HBASE-13030 [1.0.0 polish] Make ScanMetrics public again and align Put 'add' with Get, Delete, etc., addColumn
...
Conflicts:
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Scan.java
hbase-server/src/test/java/org/apache/hadoop/hbase/ScanPerformanceEvaluation.java
2015-02-13 15:28:51 -08:00
Enis Soztutar
36e76c4be6
HBASE-11569 Flush / Compaction handling from secondary region replicas
...
Conflicts:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
2015-02-13 12:49:08 -08:00
Ashish Singhi
74d373c03e
HBASE-13038 Fix the java doc continuously reported by Hadoop QA
2015-02-13 10:13:30 -06:00
Andrew Purtell
7841bf73be
HBASE-13008 Better default for hbase.regionserver.regionSplitLimit parameter (Srikanth Srungarapu)
2015-02-12 10:17:23 -08:00
Bhupendra
38de2d2276
HBASE-13026: Wrong error message in case incorrect snapshot name OR Incorrect table name
...
Signed-off-by: Matteo Bertozzi <matteo.bertozzi@cloudera.com>
2015-02-12 15:30:29 +01:00
stack
aca9aacfb4
HBASE-13007 Fix the test timeouts being caused by ChoreService (Jonathan Lawlor); ADDENDUM
2015-02-11 20:47:07 -08:00
stack
c3473eb2d7
HBASE-13007 Fix the test timeouts being caused by ChoreService (Jonathan Lawlor)
2015-02-10 21:19:50 -08:00
stack
31b3327184
HBASE-12978 Region goes permanently offline (WAS: hbase:meta has a row missing hregioninfo and it causes my long-running job to fail)
2015-02-10 17:04:01 -08:00
tedyu
968c4574d7
HBASE-13004 Addendum fixes timeout value in message (Andrey Stepachev)
2015-02-10 09:42:28 -08:00
tedyu
8fdc5bdb2a
HBASE-13004 Make possible to explain why HBaseTestingUtility.waitFor fails (Andrey Stepachev)
2015-02-10 08:54:43 -08:00
tedyu
4c4eb58ead
HBASE-12992 TestChoreService doesn't close services, that can break test on slow virtual hosts (Andrey Stepachev)
2015-02-09 12:17:27 -08:00
stack
cd996ea240
HBASE-12982 Adding timeouts to TestChoreService
2015-02-06 19:46:13 -08:00