Sean Busbey
1a0c61c974
HBASE-13546 handle nulls in MasterAddressTracker when there is no master active.
2015-04-24 13:54:36 -05:00
tedyu
42ad845032
HBASE-13528 A bug on selecting compaction pool (Shuaifeng Zhou)
2015-04-24 02:19:31 -07:00
Matteo Bertozzi
0b86c75220
HBASE-13529 Procedure v2 - WAL Improvements
2015-04-24 09:46:43 +01:00
Apekshit(Appy) Sharma
2b392de640
HBASE-13534 Changed Master UI to promptly display if it is a backup master. (Apekshit)
...
Signed-off-by: Elliott Clark <eclark@apache.org>
2015-04-23 15:32:42 -07:00
Jerry He
f1c29a8385
HBASE-13526 TestRegionServerReportForDuty can be flaky: hang or timeout
2015-04-22 22:21:54 -07:00
anoopsjohn
4666bf86a2
HBASE-13496 Make Bytes::compareTo inlineable.
2015-04-23 10:40:56 +05:30
Jonathan Lawlor
c8d8499da8
HBASE-13527 The default value for hbase.client.scanner.max.result.size is never actually set on Scans
...
Signed-off-by: stack <stack@apache.org>
2015-04-22 13:29:48 -07:00
tedyu
30880bca55
HBASE-13437 Addendum removes MiscTests
2015-04-22 07:45:01 -07:00
tedyu
71b7755584
HBASE-13437 ThriftServer leaks ZooKeeper connections (Winger Pun)
2015-04-22 07:42:44 -07:00
ramkrishna
385b5fa1f6
HBASE-13502 - Deprecate/remove getRowComparator() in TableName (Ram)
2015-04-22 09:34:10 +05:30
Elliott Clark
59cc620e85
HBASE-13524 TestReplicationAdmin fails on JDK 1.8
2015-04-21 17:06:16 -07:00
zhangduo
ca7efc183a
HBASE-13499 AsyncRpcClient test cases failure in powerpc
2015-04-14 23:00:17 +08:00
Rajesh Nishtala
ba8d985000
HBASE-13471 Fix a possible infinite loop in doMiniBatchMutation
...
Summary: in doMiniBatchMutation it is possible to get into an infinite loop when a query has a row that is not in the region. If the batch had an invalid row, the row lock further down the function would fail to acquire because it was an invalid row. However we'd catch the exception and improperly treat it as if we had not acquired the lock and then try acquiring the lock again. Thus once we got into this state we'd be stuck in an infinite loop. Worse yet, this infiite loop would occur with the readLock held. So any other opertaions such as doClose() would be locked out and stuck. The patch is to check whether the row is valid and short circuit the failure when it doesn't work.
Test Plan: IntegrationTestReplication would consistently fail when trying to disable large tables before the fix. After the test the tests pass consistently.
Reviewers: eclark
Subscribers: asameet
Differential Revision: https://reviews.facebook.net/D37437
Signed-off-by: Elliott Clark <eclark@apache.org>
2015-04-21 15:25:01 -07:00
stack
ddc4a4ab54
HBASE-13078 Removal of IntegrationTestSendTraceRequests (Josh Elser)
2015-04-21 12:46:45 -07:00
Enis Soztutar
0c6b1c9388
HBASE-13515 Handle FileNotFoundException in region replica replay for flush/compaction events
2015-04-21 11:56:14 -07:00
anoopsjohn
8e6353ccd1
HBASE-13520 NullPointerException in TagRewriteCell.(Josh Elser)
2015-04-21 17:39:07 +05:30
tedyu
cac134c14a
HBASE-13514 Fix test failures in TestScannerHeartbeatMessages caused by incorrect setting of hbase.rpc.timeout (Jonathan Lawlor)
2015-04-20 14:25:17 -07:00
Sean Busbey
83b6f88d5f
HBASE-13498 Addendum missed local change from conflict resolution.
2015-04-20 11:21:14 -05: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
Devaraj Das
4001492e7f
HBASE-13482. Phoenix is failing to scan tables on secure environments. (Alicia Shu)
2015-04-19 22:18:05 -07:00
Tobi Vollebregt
10254b74ae
HBASE-13430 HFiles that are in use by a table cloned from a snapshot may be deleted when that snapshot is deleted
...
Signed-off-by: Matteo Bertozzi <matteo.bertozzi@cloudera.com>
2015-04-18 09:53:04 +01:00
Matteo Bertozzi
a8432fbd5a
HBASE-13202 Procedure v2 - core framework (addendum)
2015-04-18 09:52:10 +01:00
Enis Soztutar
60c30c707c
HBASE-13491 Issue in FuzzyRowFilter#getNextForFuzzyRule (Anoop Sam John)
2015-04-17 21:56:04 -07:00
Enis Soztutar
49bf9aec8b
HBASE-13481 Master should respect master (old) DNS/bind related configurations
2015-04-17 18:13:47 -07:00
tedyu
b655a9909e
HBASE-13090 Addendum fixes compilation error in TestScannerHeartbeatMessages
2015-04-17 17:04:59 -07: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
Elliott Clark
91e09bc0ab
HBASE-13477 Create metrics on failed requests
...
Summary: Add metrics on how many requests are exceptions and what type.
Test Plan: behold unit tests.
Differential Revision: https://reviews.facebook.net/D37167
2015-04-17 15:38:38 -07:00
Jerry He
3c81d656e0
HBASE-13456 Improve HFilePrettyPrinter first hbase:meta region processing (Samir Ahmic)
2015-04-17 11:33:24 -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
tedyu
3ca1e46bd9
HBASE-13473 deleted cells come back alive after the stripe compaction (jeongmin kim)
2015-04-16 11:35:53 -07:00
tedyu
8ce7f905d2
HBASE-13463 Quota needs to be updated only in case of successful region merge
2015-04-16 11:08:54 -07:00
Matt Warhaftig
a778c38ab4
HBASE-13350 Log warnings for sanity check failures when checks disabled.
...
Signed-off-by: Matteo Bertozzi <matteo.bertozzi@cloudera.com>
2015-04-16 10:00:48 +01:00
Josh Elser
ffd7bbfd6b
HBASE-12987 Pare repeated hbck output and increase verbosity in long-running tasks.
2015-04-15 14:36:27 -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
Andrew Purtell
c2eeddfb27
HBASE-12006 [JDK 8] KeyStoreTestUtil#generateCertificate fails due to "subject class type invalid"
...
This is a port of the fix from HADOOP-10847
2015-04-15 09:47:45 -07:00
Devaraj Das
fe8658ce35
HBASE-13460. Revise the MetaLookupPool executor-related defaults (introduced in HBASE-13036).
2015-04-15 07:56:58 -07:00
tedyu
bbab9bf0c4
HBASE-13475 Small spelling mistake in region_mover#isSuccessfulScan causes NoMethodError (Victor Xu)
2015-04-15 05:04:32 -07:00
Matteo Bertozzi
ec472fb18a
HBASE-13455 Procedure V2 - master truncate table
2015-04-15 11:07:08 +01:00
Matteo Bertozzi
7c5ae63850
HBASE-13290 Procedure v2 - client enable/disable table sync (Stephen Yuan Jiang)
2015-04-15 11:05:49 +01:00
Matteo Bertozzi
2cbb1afe52
HBASE-13211 Procedure V2 - master Enable/Disable table (Stephen Yuan Jiang)
2015-04-15 11:04:58 +01:00
Matteo Bertozzi
4cc464dae1
HBASE-13209 Procedure V2 - master Add/Modify/Delete Column Family (Stephen Yuan Jiang)
2015-04-15 11:04:07 +01:00
Matteo Bertozzi
c967595acb
HBASE-13210 Procedure V2 - master Modify table (Stephen Yuan Jiang)
2015-04-15 11:03:14 +01:00
Matteo Bertozzi
67149d253b
HBASE-13204 Procedure v2 - client create/delete table sync
2015-04-15 11:02:26 +01: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
tedyu
daa82b9fd9
HBASE-13438 [branch-1] Backport Basic quota support for namespaces (Ashish Singhi)
2015-04-14 04:42:56 -07:00
zhangduo
bcd5c4d137
HBASE-13301 Possible memory leak in BucketCache
...
Conflicts:
hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/bucket/TestBucketCache.java
2015-04-14 17:43:46 +08:00
anoopsjohn
ba4c14133e
HBASE-13447 Bypass logic in TimeRange.compare.
2015-04-14 11:39:06 +05:30
Matteo Bertozzi
4fc39fd7c9
HBASE-13457 SnapshotExistsException doesn't honor the DoNotRetry
2015-04-13 23:22:28 +01:00