From daa1e147454c3f14704aca904aaae168b47f3de0 Mon Sep 17 00:00:00 2001 From: sunlisheng Date: Mon, 17 Jun 2019 19:32:41 +0800 Subject: [PATCH] when evictableMmapped or evictable size is zero, do not throw NoSuchElementException Signed-off-by: sunlisheng --- .../hdfs/shortcircuit/ShortCircuitCache.java | 40 +++++-------------- 1 file changed, 11 insertions(+), 29 deletions(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java index c2f0350bc3e..d91dd7ded43 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/shortcircuit/ShortCircuitCache.java @@ -109,13 +109,8 @@ public void run() { int numDemoted = demoteOldEvictableMmaped(curMs); int numPurged = 0; Long evictionTimeNs; - while (true) { - Object eldestKey; - try { - eldestKey = evictable.firstKey(); - } catch (NoSuchElementException e) { - break; - } + while (!evictable.isEmpty()) { + Object eldestKey = evictable.firstKey(); evictionTimeNs = (Long)eldestKey; long evictionTimeMs = TimeUnit.MILLISECONDS.convert(evictionTimeNs, TimeUnit.NANOSECONDS); @@ -493,13 +488,8 @@ private int demoteOldEvictableMmaped(long now) { boolean needMoreSpace = false; Long evictionTimeNs; - while (true) { - Object eldestKey; - try { - eldestKey = evictableMmapped.firstKey(); - } catch (NoSuchElementException e) { - break; - } + while (!evictableMmapped.isEmpty()) { + Object eldestKey = evictableMmapped.firstKey(); evictionTimeNs = (Long)eldestKey; long evictionTimeMs = TimeUnit.MILLISECONDS.convert(evictionTimeNs, TimeUnit.NANOSECONDS); @@ -533,23 +523,15 @@ private void trimEvictionMaps() { long now = Time.monotonicNow(); demoteOldEvictableMmaped(now); - while (true) { - long evictableSize = evictable.size(); - long evictableMmappedSize = evictableMmapped.size(); - if (evictableSize + evictableMmappedSize <= maxTotalSize) { - return; - } + while (evictable.size() + evictableMmapped.size() > maxTotalSize) { ShortCircuitReplica replica; - try { - if (evictableSize == 0) { - replica = (ShortCircuitReplica)evictableMmapped.get(evictableMmapped - .firstKey()); - } else { - replica = (ShortCircuitReplica)evictable.get(evictable.firstKey()); - } - } catch (NoSuchElementException e) { - break; + if (evictable.isEmpty()) { + replica = (ShortCircuitReplica) evictableMmapped + .get(evictableMmapped.firstKey()); + } else { + replica = (ShortCircuitReplica) evictable.get(evictable.firstKey()); } + if (LOG.isTraceEnabled()) { LOG.trace(this + ": trimEvictionMaps is purging " + replica + StringUtils.getStackTrace(Thread.currentThread()));