HBASE-23066 Allow cache on write during compactions when prefetching … (#935)

* HBASE-23066 Allow cache on write during compactions when prefetching is enabled

* Fix checkstyle issues - recommit
This commit is contained in:
ramkrish86 2019-12-16 15:20:30 +05:30 committed by GitHub
parent ec317a6629
commit eee9480cb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 100 additions and 52 deletions

View File

@ -81,6 +81,12 @@ public class CacheConfig {
*/ */
public static final String PREFETCH_BLOCKS_ON_OPEN_KEY = "hbase.rs.prefetchblocksonopen"; public static final String PREFETCH_BLOCKS_ON_OPEN_KEY = "hbase.rs.prefetchblocksonopen";
/**
* Configuration key to cache blocks when a compacted file is written
*/
public static final String CACHE_COMPACTED_BLOCKS_ON_WRITE_KEY =
"hbase.rs.cachecompactedblocksonwrite";
public static final String DROP_BEHIND_CACHE_COMPACTION_KEY = public static final String DROP_BEHIND_CACHE_COMPACTION_KEY =
"hbase.hfile.drop.behind.compaction"; "hbase.hfile.drop.behind.compaction";
@ -93,6 +99,7 @@ public class CacheConfig {
public static final boolean DEFAULT_EVICT_ON_CLOSE = false; public static final boolean DEFAULT_EVICT_ON_CLOSE = false;
public static final boolean DEFAULT_CACHE_DATA_COMPRESSED = false; public static final boolean DEFAULT_CACHE_DATA_COMPRESSED = false;
public static final boolean DEFAULT_PREFETCH_ON_OPEN = false; public static final boolean DEFAULT_PREFETCH_ON_OPEN = false;
public static final boolean DEFAULT_CACHE_COMPACTED_BLOCKS_ON_WRITE = false;
public static final boolean DROP_BEHIND_CACHE_COMPACTION_DEFAULT = true; public static final boolean DROP_BEHIND_CACHE_COMPACTION_DEFAULT = true;
/** /**
@ -124,6 +131,11 @@ public class CacheConfig {
/** Whether data blocks should be prefetched into the cache */ /** Whether data blocks should be prefetched into the cache */
private final boolean prefetchOnOpen; private final boolean prefetchOnOpen;
/**
* Whether data blocks should be cached when compacted file is written
*/
private final boolean cacheCompactedDataOnWrite;
private final boolean dropBehindCompaction; private final boolean dropBehindCompaction;
// Local reference to the block cache // Local reference to the block cache
@ -174,6 +186,8 @@ public class CacheConfig {
(family == null ? false : family.isEvictBlocksOnClose()); (family == null ? false : family.isEvictBlocksOnClose());
this.prefetchOnOpen = conf.getBoolean(PREFETCH_BLOCKS_ON_OPEN_KEY, DEFAULT_PREFETCH_ON_OPEN) || this.prefetchOnOpen = conf.getBoolean(PREFETCH_BLOCKS_ON_OPEN_KEY, DEFAULT_PREFETCH_ON_OPEN) ||
(family == null ? false : family.isPrefetchBlocksOnOpen()); (family == null ? false : family.isPrefetchBlocksOnOpen());
this.cacheCompactedDataOnWrite = conf.getBoolean(CACHE_COMPACTED_BLOCKS_ON_WRITE_KEY,
DEFAULT_CACHE_COMPACTED_BLOCKS_ON_WRITE);
this.blockCache = blockCache; this.blockCache = blockCache;
this.byteBuffAllocator = byteBuffAllocator; this.byteBuffAllocator = byteBuffAllocator;
LOG.info("Created cacheConfig: " + this + (family == null ? "" : " for family " + family) + LOG.info("Created cacheConfig: " + this + (family == null ? "" : " for family " + family) +
@ -193,6 +207,7 @@ public class CacheConfig {
this.evictOnClose = cacheConf.evictOnClose; this.evictOnClose = cacheConf.evictOnClose;
this.cacheDataCompressed = cacheConf.cacheDataCompressed; this.cacheDataCompressed = cacheConf.cacheDataCompressed;
this.prefetchOnOpen = cacheConf.prefetchOnOpen; this.prefetchOnOpen = cacheConf.prefetchOnOpen;
this.cacheCompactedDataOnWrite = cacheConf.cacheCompactedDataOnWrite;
this.dropBehindCompaction = cacheConf.dropBehindCompaction; this.dropBehindCompaction = cacheConf.dropBehindCompaction;
this.blockCache = cacheConf.blockCache; this.blockCache = cacheConf.blockCache;
this.byteBuffAllocator = cacheConf.byteBuffAllocator; this.byteBuffAllocator = cacheConf.byteBuffAllocator;
@ -207,6 +222,7 @@ public class CacheConfig {
this.evictOnClose = false; this.evictOnClose = false;
this.cacheDataCompressed = false; this.cacheDataCompressed = false;
this.prefetchOnOpen = false; this.prefetchOnOpen = false;
this.cacheCompactedDataOnWrite = false;
this.dropBehindCompaction = false; this.dropBehindCompaction = false;
this.blockCache = null; this.blockCache = null;
this.byteBuffAllocator = ByteBuffAllocator.HEAP; this.byteBuffAllocator = ByteBuffAllocator.HEAP;
@ -319,6 +335,13 @@ public class CacheConfig {
return this.prefetchOnOpen; return this.prefetchOnOpen;
} }
/**
* @return true if blocks should be cached while writing during compaction, false if not
*/
public boolean shouldCacheCompactedBlocksOnWrite() {
return this.cacheCompactedDataOnWrite;
}
/** /**
* Return true if we may find this type of block in block cache. * Return true if we may find this type of block in block cache.
* <p> * <p>

View File

@ -1118,9 +1118,9 @@ public class HStore implements Store, HeapSize, StoreConfigInformation, Propagat
boolean shouldDropBehind) throws IOException { boolean shouldDropBehind) throws IOException {
final CacheConfig writerCacheConf; final CacheConfig writerCacheConf;
if (isCompaction) { if (isCompaction) {
// Don't cache data on write on compactions. // Don't cache data on write on compactions, unless specifically configured to do so
writerCacheConf = new CacheConfig(cacheConf); writerCacheConf = new CacheConfig(cacheConf);
writerCacheConf.setCacheDataOnWrite(false); writerCacheConf.setCacheDataOnWrite(cacheConf.shouldCacheCompactedBlocksOnWrite());
} else { } else {
writerCacheConf = cacheConf; writerCacheConf = cacheConf;
} }

View File

@ -405,8 +405,16 @@ public class TestCacheOnWrite {
storeFilePath = sfw.getPath(); storeFilePath = sfw.getPath();
} }
private void testNotCachingDataBlocksDuringCompactionInternals(boolean useTags) private void testCachingDataBlocksDuringCompactionInternals(boolean useTags,
throws IOException, InterruptedException { boolean cacheBlocksOnCompaction) throws IOException, InterruptedException {
// create a localConf
boolean localValue = conf.getBoolean(CacheConfig.CACHE_COMPACTED_BLOCKS_ON_WRITE_KEY,
false);
try {
// Set the conf if testing caching compacted blocks on write
conf.setBoolean(CacheConfig.CACHE_COMPACTED_BLOCKS_ON_WRITE_KEY,
cacheBlocksOnCompaction);
// TODO: need to change this test if we add a cache size threshold for // TODO: need to change this test if we add a cache size threshold for
// compactions, or if we implement some other kind of intelligent logic for // compactions, or if we implement some other kind of intelligent logic for
// deciding what blocks to cache-on-write on compaction. // deciding what blocks to cache-on-write on compaction.
@ -414,17 +422,15 @@ public class TestCacheOnWrite {
final String cf = "myCF"; final String cf = "myCF";
final byte[] cfBytes = Bytes.toBytes(cf); final byte[] cfBytes = Bytes.toBytes(cf);
final int maxVersions = 3; final int maxVersions = 3;
ColumnFamilyDescriptor cfd = ColumnFamilyDescriptor cfd = ColumnFamilyDescriptorBuilder.newBuilder(cfBytes)
ColumnFamilyDescriptorBuilder.newBuilder(cfBytes).setCompressionType(compress) .setCompressionType(compress).setBloomFilterType(BLOOM_TYPE).setMaxVersions(maxVersions)
.setBloomFilterType(BLOOM_TYPE).setMaxVersions(maxVersions)
.setDataBlockEncoding(NoOpDataBlockEncoder.INSTANCE.getDataBlockEncoding()).build(); .setDataBlockEncoding(NoOpDataBlockEncoder.INSTANCE.getDataBlockEncoding()).build();
HRegion region = TEST_UTIL.createTestRegion(table, cfd, blockCache); HRegion region = TEST_UTIL.createTestRegion(table, cfd, blockCache);
int rowIdx = 0; int rowIdx = 0;
long ts = EnvironmentEdgeManager.currentTime(); long ts = EnvironmentEdgeManager.currentTime();
for (int iFile = 0; iFile < 5; ++iFile) { for (int iFile = 0; iFile < 5; ++iFile) {
for (int iRow = 0; iRow < 500; ++iRow) { for (int iRow = 0; iRow < 500; ++iRow) {
String rowStr = "" + (rowIdx * rowIdx * rowIdx) + "row" + iFile + "_" + String rowStr = "" + (rowIdx * rowIdx * rowIdx) + "row" + iFile + "_" + iRow;
iRow;
Put p = new Put(Bytes.toBytes(rowStr)); Put p = new Put(Bytes.toBytes(rowStr));
++rowIdx; ++rowIdx;
for (int iCol = 0; iCol < 10; ++iCol) { for (int iCol = 0; iCol < 10; ++iCol) {
@ -448,16 +454,35 @@ public class TestCacheOnWrite {
} }
region.flush(true); region.flush(true);
} }
clearBlockCache(blockCache); clearBlockCache(blockCache);
assertEquals(0, blockCache.getBlockCount()); assertEquals(0, blockCache.getBlockCount());
region.compact(false); region.compact(false);
LOG.debug("compactStores() returned"); LOG.debug("compactStores() returned");
boolean dataBlockCached = false;
for (CachedBlock block : blockCache) { for (CachedBlock block : blockCache) {
assertNotEquals(BlockType.ENCODED_DATA, block.getBlockType()); if (BlockType.ENCODED_DATA.equals(block.getBlockType())
assertNotEquals(BlockType.DATA, block.getBlockType()); || BlockType.DATA.equals(block.getBlockType())) {
dataBlockCached = true;
break;
} }
}
// Data blocks should be cached in instances where we are caching blocks on write. In the case
// of testing
// BucketCache, we cannot verify block type as it is not stored in the cache.
assertTrue(
"\nTest description: " + testDescription + "\ncacheBlocksOnCompaction: "
+ cacheBlocksOnCompaction + "\n",
(cacheBlocksOnCompaction && !(blockCache instanceof BucketCache)) == dataBlockCached);
region.close(); region.close();
} finally {
// reset back
conf.setBoolean(CacheConfig.CACHE_COMPACTED_BLOCKS_ON_WRITE_KEY, localValue);
}
} }
@Test @Test
@ -467,8 +492,8 @@ public class TestCacheOnWrite {
} }
@Test @Test
public void testNotCachingDataBlocksDuringCompaction() throws IOException, InterruptedException { public void testCachingDataBlocksDuringCompaction() throws IOException, InterruptedException {
testNotCachingDataBlocksDuringCompactionInternals(false); testCachingDataBlocksDuringCompactionInternals(false, false);
testNotCachingDataBlocksDuringCompactionInternals(true); testCachingDataBlocksDuringCompactionInternals(true, true);
} }
} }