HDFS-10822. Log DataNodes in the write pipeline. John Zhuge via Lei Xu
This commit is contained in:
parent
23abb09c1f
commit
5a8c5064d1
|
@ -508,6 +508,12 @@ class DataStreamer extends Daemon {
|
|||
private void initDataStreaming() {
|
||||
this.setName("DataStreamer for file " + src +
|
||||
" block " + block);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("nodes {} storageTypes {} storageIDs {}",
|
||||
Arrays.toString(nodes),
|
||||
Arrays.toString(storageTypes),
|
||||
Arrays.toString(storageIDs));
|
||||
}
|
||||
response = new ResponseProcessor(nodes);
|
||||
response.start();
|
||||
stage = BlockConstructionStage.DATA_STREAMING;
|
||||
|
|
Loading…
Reference in New Issue