HDFS-6943. Improve NN allocateBlock log to include replicas' datanode IPs. Contributed by Ming Ma.

This commit is contained in:
Haohui Mai 2014-09-08 11:07:23 -07:00
parent 302d9a0a0d
commit c1f8323234
2 changed files with 4 additions and 1 deletions

View File

@ -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)

View File

@ -305,7 +305,7 @@ public int hashCode() {
@Override
public String toString() {
return "[" + storageType + "]" + storageID + ":" + state;
return "[" + storageType + "]" + storageID + ":" + state + ":" + dn;
}
StorageReport toStorageReport() {