HDFS-9706. Log more details in debug logs in BlockReceiver's constructor. (Xiao Chen via Yongjun Zhang)

This commit is contained in:
Yongjun Zhang 2016-01-28 22:53:26 -08:00
parent ac68666803
commit 8ee060311c
2 changed files with 15 additions and 6 deletions

View File

@ -1860,6 +1860,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8898. Create API and command-line argument to get quota and quota
usage without detailed content summary. (Ming Ma via kihwal)
HDFS-9706. Log more details in debug logs in BlockReceiver's constructor.
(Xiao Chen via Yongjun Zhang)
OPTIMIZATIONS
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than

View File

@ -187,11 +187,17 @@ class BlockReceiver implements Closeable {
this.maxSendIdleTime = (long) (readTimeout * 0.9);
if (LOG.isDebugEnabled()) {
LOG.debug(getClass().getSimpleName() + ": " + block
+ "\n isClient =" + isClient + ", clientname=" + clientname
+ "\n isDatanode=" + isDatanode + ", srcDataNode=" + srcDataNode
+ "\n inAddr=" + inAddr + ", myAddr=" + myAddr
+ "\n cachingStrategy = " + cachingStrategy
+ "\n pinning=" + pinning
+ "\n storageType=" + storageType + ", inAddr=" + inAddr
+ ", myAddr=" + myAddr + "\n stage=" + stage + ", newGs=" + newGs
+ ", minBytesRcvd=" + minBytesRcvd
+ ", maxBytesRcvd=" + maxBytesRcvd + "\n clientname=" + clientname
+ ", srcDataNode=" + srcDataNode
+ ", datanode=" + datanode.getDisplayName()
+ "\n requestedChecksum=" + requestedChecksum
+ "\n cachingStrategy=" + cachingStrategy
+ "\n allowLazyPersist=" + allowLazyPersist + ", pinning=" + pinning
+ ", isClient=" + isClient + ", isDatanode=" + isDatanode
+ ", responseInterval=" + responseInterval
);
}