HDFS-6943. Improve NN allocateBlock log to include replicas' datanode IPs. Contributed by Ming Ma.
This commit is contained in:
parent
302d9a0a0d
commit
c1f8323234
|
@ -446,6 +446,9 @@ Release 2.6.0 - UNRELEASED
|
|||
|
||||
HDFS-6940. Refactoring to allow ConsensusNode implementation. (shv)
|
||||
|
||||
HDFS-6943. Improve NN allocateBlock log to include replicas' datanode IPs.
|
||||
(Ming Ma via wheat9)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-6690. Deduplicate xattr names in memory. (wang)
|
||||
|
|
|
@ -305,7 +305,7 @@ public class DatanodeStorageInfo {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "[" + storageType + "]" + storageID + ":" + state;
|
||||
return "[" + storageType + "]" + storageID + ":" + state + ":" + dn;
|
||||
}
|
||||
|
||||
StorageReport toStorageReport() {
|
||||
|
|
Loading…
Reference in New Issue