Jimmy Xiang
a463aef8bc
HBASE-12122 Try not to assign user regions to master all the time
2014-10-02 13:30:55 -07:00
stack
546f436a41
HBASE-12152 TestLoadIncrementalHFiles shows up as zombie test; ADD TIMEOUT ON TESTS -- Up timeout from 120 to 120000
2014-10-02 13:18:08 -07:00
stack
8ac42d4b40
HBASE-12148 Remove TimeRangeTracker as point of contention when many threads writing a Store
2014-10-02 12:39:33 -07:00
stack
129b93bc0e
HBASE-12148 Remove TimeRangeTracker as point of contention when many threads writing a Store
2014-10-02 12:30:31 -07:00
stack
630a66f1d3
HBASE-12149 TestRegionPlacement is failing undeterministically (Manukranth Kolloju)
2014-10-02 11:29:44 -07:00
stack
6f104e3ac6
HBASE-12158 TestHttpServerLifecycle.testStartedServerWithRequestLog goes zombie on occasion
2014-10-02 11:03:45 -07:00
stack
e92036cd54
HBASE-12152 TestLoadIncrementalHFiles shows up as zombie test; ADD TIMEOUT ON TESTS
2014-10-02 09:58:03 -07:00
stack
ff847978ad
HBASE-12156 TableName cache doesn't used for once of valueOf methods (Andrey Stepachev)
2014-10-02 09:45:57 -07:00
stack
2c8f6b66cf
HBASE-12153 Fixing TestReplicaWithCluster (Manukranth Kolloju)
2014-10-02 09:22:48 -07:00
stack
43301167db
HBASE-12145 Fix javadoc and findbugs so new folks aren't freaked when they see them
...
Fix javadoc warnings.
Fixup findbugs warnings mostly by adding annotations saying 'working as expected'.
In RpcRetryingCallerWithReadReplicas made following change which findbugs spotted:
- if (completed == null) tasks.wait();
+ while (completed == null) tasks.wait();
In RecoverableZooKeeper, made all zk accesses synchronized -- we were doing it
half-ways previously.
In RatioBasedCompactionPolicy we were making an instance of Random on
each invocation of getNextMajorCompactionTime
2014-10-01 16:37:13 -07:00
Andrew Purtell
c88a6c93ad
HBASE-12065 Import tool is not restoring multiple DeleteFamily markers of a row (Maddineni Sukumar)
2014-10-01 14:53:03 -07:00
stack
0d45272e40
HBASE-12130 HBASE-11980 calls hflush and hsync doing near double the syncing work
2014-10-01 14:11:48 -07:00
Elliott Clark
eb385abfae
HBASE-12139 StochasticLoadBalancer doesn't work on large lightly loaded clusters
...
Summary:
Currently the move cost overshadows the skew cost on a large cluster. This can render the split policy worse than useless
and it can trap meta on the most loaded server in the cluster.
Test Plan:
Unit tests everywhere
likeaboss
Reviewers: stack, manukranthk
Subscribers: tedyu
Differential Revision: https://reviews.facebook.net/D24285
2014-10-01 13:01:09 -07:00
Ted Yu
1587068a2c
HBASE-12095 SecureWALCellCodec should handle the case where encryption is disabled
2014-10-01 14:22:18 +00:00
anoopsjohn
4fac4c1ba6
HBASE-12112 Avoid KeyValueUtil#ensureKeyValue some more simple cases.
2014-10-01 14:05:57 +05:30
stack
ff31691c84
HBASE-11879 Change TableInputFormatBase to take interface arguments (Solomon Duskis)
2014-09-30 21:25:04 -07:00
Nick Dimiduk
7a064f96ba
HBASE-12123 Failed assertion in BucketCache after 11331
2014-09-30 17:00:52 -07:00
stack
b5783795cd
HBASE-12038 Replace internal uses of signatures with byte[] and String tableNames to use the TableName equivalents (Solomon Duskis)
2014-09-30 16:35:55 -07:00
Jimmy Xiang
c4107d5307
HBASE-12119 Master regionserver web UI NOT_FOUND
2014-09-30 14:42:32 -07:00
manukranthk
0075528615
HBASE-12115 Fix TableInputFormatBase.reverseDNS for ipv6 addresses
...
Summary: Hadoop's DNS.reverDns function cannot handle Inet6Address properly and throws Runtime Exceptions.
Test Plan: Added Unit test to test the particular case.
Differential Revision: https://reviews.facebook.net/D24225
Signed-off-by: Elliott Clark <eclark@apache.org>
2014-09-30 13:27:34 -07:00
Enis Soztutar
e241d9dd81
HBASE-12099 TestScannerModel fails if using jackson 1.9.13 (Esteban Gutierrez)
2014-09-30 11:33:58 -07:00
Nick Dimiduk
26dcd96b60
HBASE-11178 Remove deprecation annotations from mapred namespace
...
Our parent project is not dropping its legacy API, so neither shall we. Remove
the deprecation annotations from that implementation.
2014-09-30 11:21:10 -07:00
Matteo Bertozzi
321a6085fb
HBASE-12098 User granted namespace table create permissions can't create a table (Srikanth Srungarapu)
2014-09-30 19:10:00 +01:00
stack
8d1a87fabc
HBASE-12096 In ZKSplitLog Coordination and AggregateImplementation replace enhaced for statements with basic for statement to avoid unnecessary object allocation
2014-09-30 08:10:42 -07:00
stack
aa432fd68f
HBASE-11980 Change sync to hsync, remove unused InfoServer, and reference our httpserver instead of hadoops
2014-09-29 22:28:28 -07:00
Enis Soztutar
6189b52fb0
HBASE-12042 Replace internal uses of HTable(Configuration, String) with HTable(Configuration, TableName) (Solomon Duskis)
2014-09-29 18:39:44 -07:00
Jimmy Xiang
683f3b3d50
HBASE-12034 If I kill single RS in branch-1, all regions end up on Master!
2014-09-29 13:50:59 -07:00
Nick Dimiduk
8ed4ee2225
HBASE-12003 Fix SecureBulkLoadEndpoint class javadoc formatting
2014-09-29 13:14:09 -07:00
anoopsjohn
df2ce0c389
HBASE-12082 Find a way to set timestamp on Cells on the server.
2014-09-29 11:22:12 +05:30
Jeffrey Zhong
4e56a19cf1
HBASE-12052: BulkLoad Failed due to no write permission on input files - Addendum
2014-09-26 17:51:29 -07:00
Jeffrey Zhong
8ee39f1971
HBASE-12052: BulkLoad Failed due to no write permission on input files
2014-09-26 14:48:51 -07:00
Enis Soztutar
3beb168b4f
HBASE-11995 Use Connection and ConnectionFactory where possible (Solomon Duskis)
2014-09-26 11:49:37 -07:00
David Deng
78d532e5f3
HBASE-12086 Fix bug of HTableMultipliexer
...
Signed-off-by: Elliott Clark <eclark@apache.org>
2014-09-25 11:30:29 -07:00
stack
31ed817447
HBASE-12069 Finish making HFile.Writer Cell-centric; undo APIs that expect KV serializations
2014-09-25 10:49:09 -07:00
Ramkrishna
44a27c5cd7
HBASE-11920 Add CP hooks for ReplicationEndPoint
2014-09-25 22:11:28 +05:30
anoopsjohn
a2e05b9f8f
HBASE-12050 Avoid KeyValueUtil#ensureKeyValue from DefaultMemStore.
2014-09-25 17:41:19 +05:30
anoopsjohn
1b5e6daef2
HBASE-12084 Remove deprecated APIs from Result.
2014-09-25 07:36:15 +05:30
Andrew Purtell
011bc04416
HBASE-11796 Add client support for atomic checkAndMutate (Srikanth Srungarapu)
2014-09-24 15:07:38 -07:00
Matteo Bertozzi
9152d8677e
HBASE-12054 bad state after NamespaceUpgrade with reserved table names
2014-09-24 19:39:52 +01:00
Elliott Clark
46eada6e02
HBASE-12076 Move InterfaceAudience imports to hbase-annotations
2014-09-24 04:10:19 -07:00
Elliott Clark
0a28af366b
HBASE-12076 Move InterfaceAudience imports to hbase-annotations
2014-09-24 03:57:55 -07:00
Enis Soztutar
c316257671
HBASE-12056 RPC logging too much in DEBUG mode
2014-09-23 19:53:57 -07:00
Elliott Clark
a5bd931682
HBASE-12059 Create hbase-annotations module
2014-09-23 16:44:14 -07:00
Andrew Purtell
83c2de2575
Amend HBASE-12023 HRegion.applyFamilyMapToMemstore creates too many iterator objects; More cases (Vladimir Rodionov)
2014-09-23 13:14:16 -07:00
Andrew Purtell
e06b4bcf35
HBASE-12064 hbase.master.balancer.stochastic.numRegionLoadsToRemember is not used (Junegunn Choi)
2014-09-23 12:36:34 -07:00
Elliott Clark
d94f24b901
HBASE-12067 Remove deprecated metrics classes.
2014-09-23 11:40:16 -07:00
anoopsjohn
564b3d8bc2
HBASE-12048 Remove deprecated APIs from Filter.
2014-09-23 23:07:38 +05:30
Elliott Clark
2635791027
HBASE-12062 Fix usage of Collections.toArray
2014-09-23 09:58:24 -07:00
anoopsjohn
791a03b40f
HBASE-12047 Avoid usage of KeyValueUtil#ensureKeyValue in simple cases.
2014-09-23 16:42:01 +05:30
Andrew Purtell
411991cf1d
HBASE-12045 REST proxy users configuration in hbase-site.xml is ignored (Aditya Kishore)
2014-09-22 17:37:19 -07:00