HDFS-9294. DFSClient deadlock when close file and failed to renew lease. Contributed by Brahma Reddy Battula
This commit is contained in:
parent
6af5255b02
commit
afc76eb218
|
@ -701,13 +701,17 @@ public class DFSOutputStream extends FSOutputSummer
|
||||||
* Aborts this output stream and releases any system
|
* Aborts this output stream and releases any system
|
||||||
* resources associated with this stream.
|
* resources associated with this stream.
|
||||||
*/
|
*/
|
||||||
synchronized void abort() throws IOException {
|
void abort() throws IOException {
|
||||||
if (isClosed()) {
|
synchronized (this) {
|
||||||
return;
|
if (isClosed()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
getStreamer().getLastException().set(
|
||||||
|
new IOException("Lease timeout of "
|
||||||
|
+ (dfsClient.getConf().getHdfsTimeout() / 1000)
|
||||||
|
+ " seconds expired."));
|
||||||
|
closeThreads(true);
|
||||||
}
|
}
|
||||||
getStreamer().getLastException().set(new IOException("Lease timeout of "
|
|
||||||
+ (dfsClient.getConf().getHdfsTimeout() / 1000) + " seconds expired."));
|
|
||||||
closeThreads(true);
|
|
||||||
dfsClient.endFileLease(fileId);
|
dfsClient.endFileLease(fileId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -740,11 +744,14 @@ public class DFSOutputStream extends FSOutputSummer
|
||||||
* resources associated with this stream.
|
* resources associated with this stream.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void close() throws IOException {
|
public void close() throws IOException {
|
||||||
try (TraceScope ignored =
|
synchronized (this) {
|
||||||
dfsClient.newPathTraceScope("DFSOutputStream#close", src)) {
|
try (TraceScope ignored = dfsClient.newPathTraceScope(
|
||||||
closeImpl();
|
"DFSOutputStream#close", src)) {
|
||||||
|
closeImpl();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
dfsClient.endFileLease(fileId);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected synchronized void closeImpl() throws IOException {
|
protected synchronized void closeImpl() throws IOException {
|
||||||
|
@ -772,7 +779,6 @@ public class DFSOutputStream extends FSOutputSummer
|
||||||
dfsClient.getTracer().newScope("completeFile")) {
|
dfsClient.getTracer().newScope("completeFile")) {
|
||||||
completeFile(lastBlock);
|
completeFile(lastBlock);
|
||||||
}
|
}
|
||||||
dfsClient.endFileLease(fileId);
|
|
||||||
} catch (ClosedChannelException ignored) {
|
} catch (ClosedChannelException ignored) {
|
||||||
} finally {
|
} finally {
|
||||||
setClosed();
|
setClosed();
|
||||||
|
|
|
@ -1658,6 +1658,9 @@ Release 2.7.2 - UNRELEASED
|
||||||
HDFS-9426. Rollingupgrade finalization is not backward compatible
|
HDFS-9426. Rollingupgrade finalization is not backward compatible
|
||||||
(Kihwal Lee via vinayakumarb)
|
(Kihwal Lee via vinayakumarb)
|
||||||
|
|
||||||
|
HDFS-9294. DFSClient deadlock when close file and failed to renew lease.
|
||||||
|
(Brahma Reddy Battula via szetszwo)
|
||||||
|
|
||||||
Release 2.7.1 - 2015-07-06
|
Release 2.7.1 - 2015-07-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
Loading…
Reference in New Issue