You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DirectoryScanner.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,8 @@ public String toString() {
141
141
+ ", missing metadata files: " + missingMetaFile
142
142
+ ", missing block files: " + missingBlockFile
143
143
+ ", missing blocks in memory: " + missingMemoryBlocks
144
-
+ ", mismatched blocks: " + mismatchBlocks;
144
+
+ ", mismatched blocks: " + mismatchBlocks
145
+
+ ", duplicated blocks: " + duplicateBlocks;
145
146
}
146
147
}
147
148
@@ -391,7 +392,7 @@ private void clear() {
391
392
}
392
393
393
394
/**
394
-
* Main program loop for DirectoryScanner. Runs {@link reconcile()} and
395
+
* Main program loop for DirectoryScanner. Runs {@link #reconcile()} and
0 commit comments