Commit Graph

8763 Commits

Author SHA1 Message Date
Nicolas Liochon f00d21179c HBASE-11215 Deprecate void setAutoFlush(boolean autoFlush, boolean clearBufferOnFail) 2014-05-27 15:46:43 +02:00
anoopsjohn 04b9a0a573 HBASE-11252 Fixing new javadoc warnings in master branch.(Anoop) 2014-05-27 10:11:27 +05:30
Andrew Purtell 8e2a8cc0a8 HBASE-11096 stop method of Master and RegionServer coprocessor is not invoked (Qiang Tian) 2014-05-26 11:33:20 -07:00
Andrew Purtell 1279ae807c HBASE-11253 IntegrationTestWithCellVisibilityLoadAndVerify failing since HBASE-10326 (Anoop Sam John) 2014-05-26 11:28:07 -07:00
Andrew Purtell 1f14726afb Amend HBASE-11251 Attempt grants during tests only when security is enabled 2014-05-26 11:04:11 -07:00
Matteo Bertozzi fb1bc37ad9 HBASE-7987 Snapshot Manifest file instead of multiple empty files -- ADDENDUM regen MR pb 2014-05-26 10:40:27 +01:00
Ramkrishna 1ce333901e HBASE-11251-LoadTestTool should grant READ permission for the users that
are given READ access for specific cells (Ram)
2014-05-26 11:47:04 +05:30
Enis Soztutar de1f96096a Added jenkinsEnv.sh for jenkins build environment 2014-05-23 18:52:08 -07:00
Andrew Purtell b85cbbdea9 Amend HBASE-11161 Provide example of POJO encoding with protobuf; Add explicit dependency on protobuf-java to hbase-common for Hadoop 1 2014-05-23 23:30:47 +00:00
Andrew Purtell be85f89cd4 Amend HBASE-9857 Blockcache prefetch option; add missing license header to correct file this time 2014-05-23 23:13:00 +00:00
Devaraj Das e9017586ca HBASE-11149. Addendum for fixing unit test 2014-05-23 15:42:07 -07:00
Andrew Purtell 8b145419ed HBASE-11161 Provide example of POJO encoding with protobuf (Nick Dimiduk) 2014-05-23 13:53:23 -07:00
Andrew Purtell 30aab8b5ea HBASE-11227 Mention 8- and 16-bit fixed-with encodings in OrderedBytes docstring (Nick Dimiduk) 2014-05-23 13:50:12 -07:00
Nicolas Liochon 7ee058bc20 HBASE-11202 Cleanup on HRegion class 2014-05-23 19:37:40 +02:00
Nicolas Liochon 220037c465 HBASE-10573 Use Netty 4 - addendum 2014-05-23 19:34:49 +02:00
Nicolas Liochon ca2a11cd3b HBASE-11209 Increase the default value for hbase.hregion.memstore.block.multipler from 2 to 4 2014-05-23 19:32:21 +02:00
Nicolas Liochon 28adf60658 HBASE-11226 Document and increase the default value for hbase.hstore.flusher.count 2014-05-23 19:28:51 +02:00
Ramkrishna 8e13fea268 Merge remote-tracking branch 'origin/master' 2014-05-23 16:35:11 +05:30
Ramkrishna f36b42b9e9 HBASE-10801-Ensure DBE interfaces can work with Cell (Ram) 2014-05-23 16:33:11 +05:30
Jesse Yates c61cb7fb55 HBASE-11048 Support setting custom priority per client RPC 2014-05-22 23:33:22 -07:00
Michael Stack 0b883059ea HBASE-11239 Forgot to svn add test that was part of HBASE-11171, TestCacheConfig 2014-05-22 23:10:25 -07:00
Michael Stack ea9e657694 HBASE-11229 Change block cache percentage metrics to be doubles rather than ints -- ADDENDUM to fix broke TestMetricsRegionServer 2014-05-22 22:35:39 -07:00
zjusch edae564856 HBASE-11234 FastDiffDeltaEncoder#getFirstKeyInBlock returns wrong result 2014-05-23 12:57:10 +08:00
Andrew Purtell 41691e469a HBASE-10831 IntegrationTestIngestWithACL is not setting up LoadTestTool correctly (Vandana Ayyalasomayajula) 2014-05-22 18:56:20 -07:00
Andrew Purtell fd94fcde58 HBASE-11211 LoadTestTool option for specifying number of regions per server 2014-05-22 18:49:14 -07:00
Andrew Purtell b168b8b2d5 HBASE-11149 Wire encryption is broken (Devaraj Das) 2014-05-22 18:46:29 -07:00
Enis Soztutar 9dcebc396b HBASE-11217 Race between SplitLogManager task creation + TimeoutMonitor - ADDENDUM to fix unit test 2014-05-22 18:27:42 -07:00
Michael Stack ea0731d60f HBASE-11108 Split ZKTable into interface and implementation (Mikhail Antononv) 2014-05-22 16:15:51 -07:00
Michael Stack c5d5a5d1bc HBASE-11108 Split ZKTable into interface and implementation (Mikhail Antononv) 2014-05-22 16:15:35 -07:00
Michael Stack 33f842855a Fix formatting error in developer 2014-05-22 15:33:20 -07:00
Jimmy Xiang 26387cbf18 HBASE-11237 Bulk load initiated by user other than hbase fails 2014-05-22 15:27:34 -07:00
Michael Stack 3054c3b9b8 Add in note on how to proceed committing patches now we are up on new GIT context -- fix formatting problem 2014-05-22 14:25:08 -07:00
Michael Stack 35e3b9c31a Add in note on how to proceed committing patches now we are up on new GIT context 2014-05-22 14:17:19 -07:00
Lars Hofhansl dd9ac0c0ad HBASE-11212 Fix increment index in KeyValueSortReducer. (Gustavo Anatoly) 2014-05-22 11:54:30 -07:00
Michael Stack 46e53b089a HBASE-11229 Change block cache percentage metrics to be doubles rather than ints
In HBASE-8370 "Report data block cache hit rates apart from aggregate cache hit rates"
discussion highlights small changes in caching percentage can make for large
changes in cache contents; e.g. lots of data blocks may be getting evicited
but because meta blocks -- index and blooms -- are staying in cache with
high hit rates, a large data block eviction may show as a small change in
overall cache percentage (e.g. from 99.99 to 99.11).

Changes the getBlockCacheHitPercent from an int to a double.
Also changes name of the jmx metric blockCountHitPercent to be
blockCacheCountHitPercent instead.

May be incompatible change.
2014-05-22 11:37:50 -07:00
Michael Stack 98de4b04ff Update references to svn to instead reference git now we have migrated; fix a formatting error 2014-05-22 11:25:25 -07:00
Enis Soztutar 92b2c86776 HBASE-11217 Race between SplitLogManager task creation + TimeoutMonitor 2014-05-22 11:22:57 -07:00
Michael Stack 75d1431a28 Update references to svn to instead reference git now we have migrated 2014-05-22 11:02:47 -07:00
Andrew Purtell 264725d592 Amend HBASE-9857 Blockcache prefetch option; add missing license header 2014-05-22 10:31:31 -07:00
Michael Stack 624e34a2a5 Update pom scm section to refer to apache git instead of apache svn now we migrated, INFRA-7768 2014-05-22 10:27:27 -07:00
Andrew Purtell 58818496da HBASE-9857 Blockcache prefetch option 2014-05-22 10:17:39 -07:00
anoopsjohn 53513dcb45 HBASE-10835 DBE encode path improvements.(Anoop) 2014-05-22 11:59:52 +05:30
tedyu cb1428ddca HBASE-11219 HRegionServer#createRegionLoad() should reuse RegionLoad.Builder instance when called in a loop 2014-05-22 04:40:47 +00:00
tedyu c45ffa4986 HBASE-11016 Remove Filter#filterRow(List) 2014-05-22 04:32:14 +00:00
Michael Stack 4053868e72 HBASE-11203 Clean up javadoc and findbugs warnings in trunk
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596383 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 20:12:41 +00:00
Zhihong Yu ffc7215a50 HBASE-10417 index is not incremented in PutSortReducer#reduce() (Gustavo)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596381 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 19:54:17 +00:00
Zhihong Yu 71c1d02f02 HBASE-11104 IntegrationTestImportTsv#testRunFromOutputCommitter misses credential initialization (Vandana)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596277 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 14:51:00 +00:00
nkeywal b6646596c6 HBASE-10573 Use Netty 4
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596192 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 10:57:11 +00:00
mbertozzi 8a420c52ac HBASE-11186 Improve TestExportSnapshot verifications
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596172 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 09:55:10 +00:00
mbertozzi 0ea99974fe HBASE-11185 Parallelize Snapshot operations
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596168 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 09:47:01 +00:00