9360 Commits

Author SHA1 Message Date
stack
0e1e64b821 HBASE-12133 Add FastLongHistogram for metric computation (Yi Deng) 2014-10-02 10:38:56 -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
Enis Soztutar
11e28eb76b HBASE-12140 Add ConnectionFactory.createConnection() to create using default HBaseConfiguration. (Jean-Marc Spaggiari)) 2014-10-01 19:26:39 -07:00
Enis Soztutar
387f90e394 HBASE-12127 Move the core Connection creation functionality into ConnectionFactory (Solomon Duskis) 2014-10-01 19:00:59 -07:00
Matteo Bertozzi
79b11ae8fe HBASE-12120 HBase shell doesn't allow deleting of a cell by user with W-only permissions to it (Srikanth Srungarapu) 2014-10-02 02:31:02 +01:00
zhangduo
504352e5e3 HBASE-12078 Missing Data when scanning using PREFIX_TREE DATA-BLOCK-ENCODING
Signed-off-by: Andrew Purtell <apurtell@apache.org>
2014-10-01 17:03:24 -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
stack
4ee6a73490 Try adding javadoc url to email output 2014-10-01 16:06:27 -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
Misty Stanley-Jones
dd34b91c33 HBASE-11930 Document new permission check to roll WAL writer (Jerry He) 2014-10-02 07:42:38 +10: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
915b338634 HBASE-11804 Raise default heap size if unspecified 2014-10-01 13:39:52 -07:00
Ted Yu
ed441ad814 HBASE-12143 Minor fix for Table code (Solomon Duskis) 2014-10-01 20:31:31 +00: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
Misty Stanley-Jones
231bc98761 HBASE-12049 Help for alter command is a bit confusing (Ashish Singhi) 2014-10-01 16:24:02 +10:00
Misty Stanley-Jones
456e9fa7a7 HBASE-12134 publish_hbase_website.sh script can delete the website accidentally 2014-10-01 15:44:21 +10:00
stack
ff31691c84 HBASE-11879 Change TableInputFormatBase to take interface arguments (Solomon Duskis) 2014-09-30 21:25:04 -07:00
stack
e97b43a16b HBASE-10607 [JDK8] NoSuchMethodError involving ConcurrentHashMap.keySet if running on JRE 7 2014-09-30 20:58:41 -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
02cdcefe4f HBASE-12118 Explain how to grant permission to a namespace in grant command usage 2014-09-30 08:05:18 -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
a36ffdaff7 HBASE-12008 Remove IntegrationTestImportTsv#testRunFromOutputCommitter 2014-09-29 13:29:28 -07:00
Nick Dimiduk
8ed4ee2225 HBASE-12003 Fix SecureBulkLoadEndpoint class javadoc formatting 2014-09-29 13:14:09 -07:00
stack
82bb370703 HBASE-6290 Add a function a mark a server as dead and start the recovery the process (Talat Uyarer) DOC ADDENDUM 2014-09-29 10:49:03 -07:00
stack
8e5aad43a2 HBASE-6290 Add a function a mark a server as dead and start the recovery the process (Talat Uyarer) 2014-09-29 10:23:32 -07:00
stack
4be3cf8fec HBASE-6290 Add a function a mark a server as dead and start the recovery the process (Talat Uyarer) 2014-09-29 10:22:10 -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
anoopsjohn
8895ee694c HBASE-12079 Deprecate KeyValueUtil#ensureKeyValue(s). 2014-09-29 08:06:23 +05:30
anoopsjohn
b48a474988 HBASE-12111 Remove deprecated APIs from Mutation(s). 2014-09-29 08:03:00 +05:30
Elliott Clark
21e31f0c86 HBASE-12110 Fix .arcconfig
Summary: Not many people are currently using arc but it's a nice tool for the developers who are used to it. Since it's already there let's make it work.

Test Plan: If this works then it's tested.

Differential Revision: https://reviews.facebook.net/D24075
2014-09-28 14:26:05 -07:00
Lars Hofhansl
dc5295df8c HBASE-11957 addendum 2; fix TestAssignmentManager 2014-09-27 21:07:14 -07:00
Lars Hofhansl
5aeec324e7 HBASE-12090 Bytes: more Unsafe, more Faster. (Vladimir Rodionov) 2014-09-27 19:41:13 -07:00
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
Ted Yu
88cd708d8d HBASE-11948 graceful_stop.sh should use hbase-daemon.sh when executed on the decomissioned node (Sebastien Barrier) 2014-09-26 15:35:57 +00:00
anoopsjohn
375fc1efe3 HBASE-12084 Remove deprecated APIs from Result - shell addendum 2014-09-26 10:04:58 +05:30