HDFS-7175. Client-side SocketTimeoutException during Fsck. Contributed by Stephen O'Donnell, Akira Ajisaka.
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org> Co-authored-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
bf8686f43f
commit
1e3a0b0d93
|
@ -147,7 +147,6 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
private boolean showLocations = false;
|
||||
private boolean showRacks = false;
|
||||
private boolean showStoragePolcies = false;
|
||||
private boolean showprogress = false;
|
||||
private boolean showCorruptFileBlocks = false;
|
||||
|
||||
private boolean showReplicaDetails = false;
|
||||
|
@ -249,7 +248,10 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
} else if (key.equals("storagepolicies")) {
|
||||
this.showStoragePolcies = true;
|
||||
} else if (key.equals("showprogress")) {
|
||||
this.showprogress = true;
|
||||
out.println("The fsck switch -showprogress is deprecated and no " +
|
||||
"longer has any effect. Progress is now shown by default.");
|
||||
LOG.warn("The fsck switch -showprogress is deprecated and no longer " +
|
||||
"has any effect. Progress is now shown by default.");
|
||||
} else if (key.equals("openforwrite")) {
|
||||
this.showOpenFiles = true;
|
||||
} else if (key.equals("listcorruptfileblocks")) {
|
||||
|
@ -501,9 +503,8 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
void check(String parent, HdfsFileStatus file, Result replRes, Result ecRes)
|
||||
throws IOException {
|
||||
String path = file.getFullName(parent);
|
||||
if (showprogress &&
|
||||
(totalDirs + totalSymlinks + replRes.totalFiles + ecRes.totalFiles)
|
||||
% 100 == 0) {
|
||||
if ((totalDirs + totalSymlinks + replRes.totalFiles + ecRes.totalFiles)
|
||||
% 1000 == 0) {
|
||||
out.println();
|
||||
out.flush();
|
||||
}
|
||||
|
@ -607,7 +608,7 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
} else if (showFiles) {
|
||||
out.print(path + " " + fileLen + " bytes, " + redundancyPolicy + " " +
|
||||
blocks.locatedBlockCount() + " block(s): ");
|
||||
} else if (showprogress) {
|
||||
} else if (res.totalFiles % 100 == 0) {
|
||||
out.print('.');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ Usage:
|
|||
| `-list-corruptfileblocks` | Print out list of missing blocks and files they belong to. |
|
||||
| `-move` | Move corrupted files to /lost+found. |
|
||||
| `-openforwrite` | Print out files opened for write. |
|
||||
| `-showprogress` | Print out dots for progress in output. Default is OFF (no progress). |
|
||||
| `-showprogress` | Deprecated. A dot is print every 100 files processed with or without this switch. |
|
||||
| `-storagepolicies` | Print out storage policy summary for the blocks. |
|
||||
| `-maintenance` | Print out maintenance state node details. |
|
||||
| `-blockId` | Print out information about the block. |
|
||||
|
|
Loading…
Reference in New Issue