HDFS-10862. Typos in 4 log messages. Contributed by Mehran Hassani.
This commit is contained in:
parent
ec3ea18875
commit
b09a03cd7d
|
@ -814,7 +814,7 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
|||
attrs = Nfs3Utils.getFileAttr(dfsClient, Nfs3Utils.getFileIdPath(handle),
|
||||
iug);
|
||||
if (readCount < count) {
|
||||
LOG.info("Partical read. Asked offset: " + offset + " count: " + count
|
||||
LOG.info("Partial read. Asked offset: " + offset + " count: " + count
|
||||
+ " and read back: " + readCount + " file size: "
|
||||
+ attrs.getSize());
|
||||
}
|
||||
|
|
|
@ -201,7 +201,7 @@ class FsVolumeList {
|
|||
+ " " + bpid + " on volume " + v + ": " + timeTaken + "ms");
|
||||
} catch (ClosedChannelException e) {
|
||||
FsDatasetImpl.LOG.info("The volume " + v + " is closed while " +
|
||||
"addng replicas, ignored.");
|
||||
"adding replicas, ignored.");
|
||||
} catch (IOException ioe) {
|
||||
FsDatasetImpl.LOG.info("Caught exception while adding replicas " +
|
||||
"from " + v + ". Will throw later.", ioe);
|
||||
|
|
|
@ -326,7 +326,7 @@ public class FSDirectory implements Closeable {
|
|||
int threshold = conf.getInt(
|
||||
DFSConfigKeys.DFS_NAMENODE_NAME_CACHE_THRESHOLD_KEY,
|
||||
DFSConfigKeys.DFS_NAMENODE_NAME_CACHE_THRESHOLD_DEFAULT);
|
||||
NameNode.LOG.info("Caching file names occuring more than " + threshold
|
||||
NameNode.LOG.info("Caching file names occurring more than " + threshold
|
||||
+ " times");
|
||||
nameCache = new NameCache<ByteArray>(threshold);
|
||||
namesystem = ns;
|
||||
|
|
|
@ -245,7 +245,7 @@ public class NNStorage extends Storage implements Closeable,
|
|||
/* We don't want more than one thread trying to restore at a time */
|
||||
synchronized (this.restorationLock) {
|
||||
LOG.info("NNStorage.attemptRestoreRemovedStorage: check removed(failed) "+
|
||||
"storarge. removedStorages size = " + removedStorageDirs.size());
|
||||
"storage. removedStorages size = " + removedStorageDirs.size());
|
||||
for (StorageDirectory sd : this.removedStorageDirs) {
|
||||
File root = sd.getRoot();
|
||||
LOG.info("currently disabled dir " + root.getAbsolutePath() +
|
||||
|
|
Loading…
Reference in New Issue