From 5d4255a80156d2cacfea8184b41805070223d3a9 Mon Sep 17 00:00:00 2001 From: Kihwal Lee Date: Fri, 22 Apr 2016 11:08:44 -0500 Subject: [PATCH] HDFS-9555. LazyPersistFileScrubber should still sleep if there are errors in the clear progress. Contributed by Phil Yang. --- .../apache/hadoop/hdfs/server/namenode/FSNamesystem.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java index 471e6b9fc7..1f7a2f0779 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSNamesystem.java @@ -3894,14 +3894,17 @@ public class FSNamesystem implements Namesystem, FSNamesystemMBean, .debug("Namenode is in safemode, skipping scrubbing of corrupted lazy-persist files."); } } + } catch (Exception e) { + FSNamesystem.LOG.error( + "Ignoring exception in LazyPersistFileScrubber:", e); + } + + try { Thread.sleep(scrubIntervalSec * 1000); } catch (InterruptedException e) { FSNamesystem.LOG.info( "LazyPersistFileScrubber was interrupted, exiting"); break; - } catch (Exception e) { - FSNamesystem.LOG.error( - "Ignoring exception in LazyPersistFileScrubber:", e); } } }