HBASE-22363 Remove hardcoded number of read cache block buckets

Signed-off-by: Peter Somogyi <psomogyi@apache.org>
This commit is contained in:
Biju Nair 2019-05-05 00:10:28 -04:00 committed by Peter Somogyi
parent d08463e683
commit ebc1fab882
2 changed files with 2 additions and 2 deletions

View File

@ -685,7 +685,7 @@ public class LruBlockCache implements ResizableBlockCache, HeapSize {
bucketQueue.add(bucketMulti);
bucketQueue.add(bucketMemory);
int remainingBuckets = 3;
int remainingBuckets = bucketQueue.size();
BlockBucket bucket;
while((bucket = bucketQueue.poll()) != null) {

View File

@ -764,7 +764,7 @@ public class BucketCache implements BlockCache, HeapSize {
bucketQueue.add(bucketMulti);
bucketQueue.add(bucketMemory);
int remainingBuckets = 3;
int remainingBuckets = bucketQueue.size();
long bytesFreed = 0;
BucketEntryGroup bucketGroup;