HBASE-27365 Minimise block addition failures due to no space in bucket cache writers queue by introducing wait time - addendum added mistakenly removed in-memory flag
This commit is contained in:
parent
f47a7287c6
commit
33872f7791
@ -1342,7 +1342,8 @@ public abstract class HFileReaderImpl implements HFile.Reader, Configurable {
|
||||
cacheConf.getBlockCache().ifPresent(cache -> {
|
||||
if (cacheBlock && cacheConf.shouldCacheBlockOnRead(category)) {
|
||||
// Using the wait on cache during compaction and prefetching.
|
||||
cache.cacheBlock(cacheKey, cacheCompressed ? hfileBlock : unpacked, cacheOnly);
|
||||
cache.cacheBlock(cacheKey, cacheCompressed ? hfileBlock : unpacked,
|
||||
cacheConf.isInMemory(), cacheOnly);
|
||||
}
|
||||
});
|
||||
if (unpacked != hfileBlock) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user