HDFS-15865. Interrupt DataStreamer thread if no ack (#2728)
This commit is contained in:
parent
803ac4b1a0
commit
bd3da73a0f
|
@ -897,6 +897,8 @@ class DataStreamer extends Daemon {
|
|||
try (TraceScope ignored = dfsClient.getTracer().
|
||||
newScope("waitForAckedSeqno")) {
|
||||
LOG.debug("{} waiting for ack for: {}", this, seqno);
|
||||
int dnodes = nodes != null ? nodes.length : 3;
|
||||
int writeTimeout = dfsClient.getDatanodeWriteTimeout(dnodes);
|
||||
long begin = Time.monotonicNow();
|
||||
try {
|
||||
synchronized (dataQueue) {
|
||||
|
@ -907,6 +909,16 @@ class DataStreamer extends Daemon {
|
|||
}
|
||||
try {
|
||||
dataQueue.wait(1000); // when we receive an ack, we notify on
|
||||
long duration = Time.monotonicNow() - begin;
|
||||
if (duration > writeTimeout) {
|
||||
LOG.error("No ack received, took {}ms (threshold={}ms). "
|
||||
+ "File being written: {}, block: {}, "
|
||||
+ "Write pipeline datanodes: {}.",
|
||||
duration, writeTimeout, src, block, nodes);
|
||||
throw new InterruptedIOException("No ack received after " +
|
||||
duration / 1000 + "s and a timeout of " +
|
||||
writeTimeout / 1000 + "s");
|
||||
}
|
||||
// dataQueue
|
||||
} catch (InterruptedException ie) {
|
||||
throw new InterruptedIOException(
|
||||
|
|
Loading…
Reference in New Issue