HDFS-11363. Need more diagnosis info when seeing Slow waitForAckedSeqno.

(cherry picked from commit 0914fcca31)
This commit is contained in:
Xiao Chen 2017-02-02 10:08:27 -08:00
parent c699ce70ea
commit b0a1703f10
1 changed files with 3 additions and 2 deletions

View File

@ -847,8 +847,9 @@ void waitForAckedSeqno(long seqno) throws IOException {
}
long duration = Time.monotonicNow() - begin;
if (duration > dfsclientSlowLogThresholdMs) {
LOG.warn("Slow waitForAckedSeqno took " + duration
+ "ms (threshold=" + dfsclientSlowLogThresholdMs + "ms)");
LOG.warn("Slow waitForAckedSeqno took {}ms (threshold={}ms). File being"
+ " written: {}, block: {}, Write pipeline datanodes: {}.",
duration, dfsclientSlowLogThresholdMs, src, block, nodes);
}
}
}