You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ta...@apache.org on 2021/09/22 16:18:27 UTC

[hbase] branch master updated (96fa015 -> 6556a5e)

This is an automated email from the ASF dual-hosted git repository.

taklwu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    from 96fa015  HBASE-26261 Store configuration loss when use update_config (#3664)
     add 6556a5e  HBASE-26274 Create an option to reintroduce BlockCache to mapreduce job (#3684)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/hadoop/hbase/HConstants.java   |  11 ++
 .../hbase/client/ClientSideRegionScanner.java      |  15 +++
 .../apache/hadoop/hbase/io/hfile/BlockCache.java   |   9 ++
 .../hadoop/hbase/io/hfile/BlockCacheFactory.java   |   4 +-
 .../hadoop/hbase/io/hfile/CombinedBlockCache.java  |   5 -
 ...reamReader.java => IndexOnlyLruBlockCache.java} |  32 ++++--
 .../hadoop/hbase/io/util/MemorySizeUtil.java       |   8 +-
 .../hbase/client/TestClientSideRegionScanner.java  | 115 +++++++++++++++++++++
 .../hadoop/hbase/io/hfile/TestCacheConfig.java     |  30 ++++++
 9 files changed, 210 insertions(+), 19 deletions(-)
 copy hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/{HFileStreamReader.java => IndexOnlyLruBlockCache.java} (51%)
 create mode 100644 hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestClientSideRegionScanner.java