Skip to content

Commit

Permalink
HBASE-26830 Rewrite TestLruBlockCache to make it more stable (#4212)
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
  • Loading branch information
Apache9 authored Mar 14, 2022
1 parent fd301ad commit c3d0cc7
Showing 1 changed file with 40 additions and 43 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ public class TestLruBlockCache {

private static final Logger LOG = LoggerFactory.getLogger(TestLruBlockCache.class);

private static final Configuration CONF = HBaseConfiguration.create();

@Test
public void testCacheEvictionThreadSafe() throws Exception {
long maxSize = 100000;
Expand All @@ -74,13 +76,10 @@ public void testCacheEvictionThreadSafe() throws Exception {
final long blockSize = calculateBlockSizeDefault(maxSize, numBlocks);
assertTrue("calculateBlockSize appears broken.", blockSize * numBlocks <= maxSize);

final Configuration conf = HBaseConfiguration.create();
final LruBlockCache cache = new LruBlockCache(maxSize, blockSize);
EvictionThread evictionThread = cache.getEvictionThread();
assertTrue(evictionThread != null);
while (!evictionThread.isEnteringRun()) {
Thread.sleep(1);
}
Waiter.waitFor(CONF, 10000, 100, () -> evictionThread.isEnteringRun());
final String hfileName = "hfile";
int threads = 10;
final int blocksPerThread = 5 * numBlocks;
Expand All @@ -103,7 +102,7 @@ public void run() {
service.shutdown();
// The test may fail here if the evict thread frees the blocks too fast
service.awaitTermination(10, TimeUnit.MINUTES);
Waiter.waitFor(conf, 10000, 100, new ExplainingPredicate<Exception>() {
Waiter.waitFor(CONF, 10000, 100, new ExplainingPredicate<Exception>() {
@Override
public boolean evaluate() throws Exception {
return cache.getBlockCount() == 0;
Expand Down Expand Up @@ -132,21 +131,26 @@ public void testBackgroundEvictionThread() throws Exception {
CachedItem[] blocks = generateFixedBlocks(numBlocks + 1, blockSize, "block");

// Make sure eviction thread has entered run method
while (!evictionThread.isEnteringRun()) {
Thread.sleep(10);
}
Waiter.waitFor(CONF, 10000, 10, () -> evictionThread.isEnteringRun());

// Add all the blocks
for (CachedItem block : blocks) {
cache.cacheBlock(block.cacheKey, block);
}

// wait until at least one eviction has run
int n = 0;
while(cache.getStats().getEvictionCount() == 0) {
Thread.sleep(200);
assertTrue("Eviction never happened.", n++ < 20);
}
Waiter.waitFor(CONF, 30000, 200, new ExplainingPredicate<Exception>() {

@Override
public boolean evaluate() throws Exception {
return cache.getStats().getEvictionCount() > 0;
}

@Override
public String explainFailure() throws Exception {
return "Eviction never happened.";
}
});

// let cache stabilize
// On some systems, the cache will run multiple evictions before it attains
Expand All @@ -155,22 +159,20 @@ public void testBackgroundEvictionThread() throws Exception {
// evicts another. I think this is due to the delta between minSize and
// acceptableSize, combined with variance between object overhead on
// different environments.
n = 0;
for (long prevCnt = 0 /* < number of blocks added */,
curCnt = cache.getBlockCount();
prevCnt != curCnt; prevCnt = curCnt, curCnt = cache.getBlockCount()) {
int n = 0;
for (long prevCnt = 0 /* < number of blocks added */, curCnt =
cache.getBlockCount(); prevCnt != curCnt; prevCnt = curCnt, curCnt = cache.getBlockCount()) {
Thread.sleep(200);
assertTrue("Cache never stabilized.", n++ < 20);
assertTrue("Cache never stabilized.", n++ < 100);
}

long evictionCount = cache.getStats().getEvictionCount();
assertTrue(evictionCount >= 1);
System.out.println("Background Evictions run: " + evictionCount);
LOG.info("Background Evictions run: {}", evictionCount);
}

@Test
public void testCacheSimple() throws Exception {

long maxSize = 1000000;
long blockSize = calculateBlockSizeDefault(maxSize, 101);

Expand Down Expand Up @@ -229,7 +231,6 @@ public void testCacheSimple() throws Exception {

@Test
public void testCacheEvictionSimple() throws Exception {

long maxSize = 100000;
long blockSize = calculateBlockSizeDefault(maxSize, 10);

Expand Down Expand Up @@ -269,14 +270,13 @@ public void testCacheEvictionSimple() throws Exception {

@Test
public void testCacheEvictionTwoPriorities() throws Exception {

long maxSize = 100000;
long blockSize = calculateBlockSizeDefault(maxSize, 10);

LruBlockCache cache = new LruBlockCache(maxSize,blockSize,false);

CachedItem [] singleBlocks = generateFixedBlocks(5, 10000, "single");
CachedItem [] multiBlocks = generateFixedBlocks(5, 10000, "multi");
CachedItem[] singleBlocks = generateFixedBlocks(5, 10000, "single");
CachedItem[] multiBlocks = generateFixedBlocks(5, 10000, "multi");

long expectedCacheSize = cache.heapSize();

Expand Down Expand Up @@ -328,7 +328,6 @@ public void testCacheEvictionTwoPriorities() throws Exception {

@Test
public void testCacheEvictionThreePriorities() throws Exception {

long maxSize = 100000;
long blockSize = calculateBlockSize(maxSize, 10);

Expand All @@ -345,9 +344,9 @@ public void testCacheEvictionThreePriorities() throws Exception {
false,
16 * 1024 * 1024);

CachedItem [] singleBlocks = generateFixedBlocks(5, blockSize, "single");
CachedItem [] multiBlocks = generateFixedBlocks(5, blockSize, "multi");
CachedItem [] memoryBlocks = generateFixedBlocks(5, blockSize, "memory");
CachedItem[] singleBlocks = generateFixedBlocks(5, blockSize, "single");
CachedItem[] multiBlocks = generateFixedBlocks(5, blockSize, "multi");
CachedItem[] memoryBlocks = generateFixedBlocks(5, blockSize, "memory");

long expectedCacheSize = cache.heapSize();

Expand Down Expand Up @@ -574,8 +573,8 @@ public void testScanResistance() throws Exception {
false,
16 * 1024 * 1024);

CachedItem [] singleBlocks = generateFixedBlocks(20, blockSize, "single");
CachedItem [] multiBlocks = generateFixedBlocks(5, blockSize, "multi");
CachedItem[] singleBlocks = generateFixedBlocks(20, blockSize, "single");
CachedItem[] multiBlocks = generateFixedBlocks(5, blockSize, "multi");

// Add 5 multi blocks
for (CachedItem block : multiBlocks) {
Expand All @@ -584,7 +583,7 @@ public void testScanResistance() throws Exception {
}

// Add 5 single blocks
for(int i=0;i<5;i++) {
for (int i = 0; i < 5; i++) {
cache.cacheBlock(singleBlocks[i].cacheKey, singleBlocks[i]);
}

Expand All @@ -607,7 +606,7 @@ public void testScanResistance() throws Exception {
// blocks evicted. Inserting 13 blocks should yield 3 more evictions and
// 12 more evicted.

for(int i=5;i<18;i++) {
for (int i = 5; i < 18; i++) {
cache.cacheBlock(singleBlocks[i].cacheKey, singleBlocks[i]);
}

Expand Down Expand Up @@ -637,8 +636,8 @@ public void testMaxBlockSize() throws Exception {
1.2f, // limit
false,
1024);
CachedItem [] tooLong = generateFixedBlocks(10, 1024+5, "long");
CachedItem [] small = generateFixedBlocks(15, 600, "small");
CachedItem[] tooLong = generateFixedBlocks(10, 1024+5, "long");
CachedItem[] small = generateFixedBlocks(15, 600, "small");


for (CachedItem i:tooLong) {
Expand All @@ -661,7 +660,6 @@ public void testMaxBlockSize() throws Exception {
// test setMaxSize
@Test
public void testResizeBlockCache() throws Exception {

long maxSize = 300000;
long blockSize = calculateBlockSize(maxSize, 31);

Expand All @@ -678,13 +676,12 @@ public void testResizeBlockCache() throws Exception {
false,
16 * 1024 * 1024);

CachedItem [] singleBlocks = generateFixedBlocks(10, blockSize, "single");
CachedItem [] multiBlocks = generateFixedBlocks(10, blockSize, "multi");
CachedItem [] memoryBlocks = generateFixedBlocks(10, blockSize, "memory");
CachedItem[] singleBlocks = generateFixedBlocks(10, blockSize, "single");
CachedItem[] multiBlocks = generateFixedBlocks(10, blockSize, "multi");
CachedItem[] memoryBlocks = generateFixedBlocks(10, blockSize, "memory");

// Add all blocks from all priorities
for(int i=0;i<10;i++) {

for (int i = 0; i < 10; i++) {
// Just add single blocks
cache.cacheBlock(singleBlocks[i].cacheKey, singleBlocks[i]);

Expand Down Expand Up @@ -726,7 +723,7 @@ public void testResizeBlockCache() throws Exception {
// test metricsPastNPeriods
@Test
public void testPastNPeriodsMetrics() throws Exception {
double delta = 0.01;
double delta = 0.01;

// 3 total periods
CacheStats stats = new CacheStats("test", 3);
Expand Down Expand Up @@ -874,11 +871,11 @@ public void testCacheBlockNextBlockMetadataMissing() {
return blocks;
}

private CachedItem [] generateFixedBlocks(int numBlocks, long size, String pfx) {
private CachedItem[] generateFixedBlocks(int numBlocks, long size, String pfx) {
return generateFixedBlocks(numBlocks, (int)size, pfx);
}

private CachedItem [] generateRandomBlocks(int numBlocks, long maxSize) {
private CachedItem[] generateRandomBlocks(int numBlocks, long maxSize) {
CachedItem [] blocks = new CachedItem[numBlocks];
Random rand = ThreadLocalRandom.current();
for(int i=0;i<numBlocks;i++) {
Expand Down

0 comments on commit c3d0cc7

Please sign in to comment.