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
@@ -140,7 +140,8 @@ public String toString() {
140
140
+ ", missing metadata files: " + missingMetaFile
141
141
+ ", missing block files: " + missingBlockFile
142
142
+ ", missing blocks in memory: " + missingMemoryBlocks
143
-
+ ", mismatched blocks: " + mismatchBlocks;
143
+
+ ", mismatched blocks: " + mismatchBlocks
144
+
+ ", duplicated blocks: " + duplicateBlocks;
144
145
}
145
146
}
146
147
@@ -355,7 +356,7 @@ private void clear() {
355
356
}
356
357
357
358
/**
358
-
* Main program loop for DirectoryScanner. Runs {@link reconcile()} and
359
+
* Main program loop for DirectoryScanner. Runs {@link #reconcile()} and
0 commit comments