HDFS-8576. Lease recovery should return true if the lease can be released and the file can be closed. Contributed by J.Andreina
This commit is contained in:
parent
85cc644f92
commit
2cb09e98e3
@ -1011,6 +1011,9 @@ Release 2.7.1 - UNRELEASED
|
||||
HDFS-8595. TestCommitBlockSynchronization fails in branch-2.7. (Patch
|
||||
applies to all branches). (Arpit Agarwal)
|
||||
|
||||
HDFS-8576. Lease recovery should return true if the lease can be released
|
||||
and the file can be closed. (J.Andreina via szetszwo)
|
||||
|
||||
Release 2.7.0 - 2015-04-20
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -2616,7 +2616,8 @@ private QuotaCounts computeQuotaDeltaForUCBlock(INodeFile file) {
|
||||
* @param src the path of the file to start lease recovery
|
||||
* @param holder the lease holder's name
|
||||
* @param clientMachine the client machine's name
|
||||
* @return true if the file is already closed
|
||||
* @return true if the file is already closed or
|
||||
* if the lease can be released and the file can be closed.
|
||||
* @throws IOException
|
||||
*/
|
||||
boolean recoverLease(String src, String holder, String clientMachine)
|
||||
@ -2643,7 +2644,7 @@ boolean recoverLease(String src, String holder, String clientMachine)
|
||||
dir.checkPathAccess(pc, iip, FsAction.WRITE);
|
||||
}
|
||||
|
||||
recoverLeaseInternal(RecoverLeaseOp.RECOVER_LEASE,
|
||||
return recoverLeaseInternal(RecoverLeaseOp.RECOVER_LEASE,
|
||||
iip, src, holder, clientMachine, true);
|
||||
} catch (StandbyException se) {
|
||||
skipSync = true;
|
||||
@ -2656,7 +2657,6 @@ boolean recoverLease(String src, String holder, String clientMachine)
|
||||
getEditLog().logSync();
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
enum RecoverLeaseOp {
|
||||
@ -2672,12 +2672,12 @@ private String getExceptionMessage(String src, String holder,
|
||||
}
|
||||
}
|
||||
|
||||
void recoverLeaseInternal(RecoverLeaseOp op, INodesInPath iip,
|
||||
boolean recoverLeaseInternal(RecoverLeaseOp op, INodesInPath iip,
|
||||
String src, String holder, String clientMachine, boolean force)
|
||||
throws IOException {
|
||||
assert hasWriteLock();
|
||||
INodeFile file = iip.getLastINode().asFile();
|
||||
if (file != null && file.isUnderConstruction()) {
|
||||
if (file.isUnderConstruction()) {
|
||||
//
|
||||
// If the file is under construction , then it must be in our
|
||||
// leases. Find the appropriate lease record.
|
||||
@ -2710,7 +2710,7 @@ void recoverLeaseInternal(RecoverLeaseOp op, INodesInPath iip,
|
||||
// close only the file src
|
||||
LOG.info("recoverLease: " + lease + ", src=" + src +
|
||||
" from client " + clientName);
|
||||
internalReleaseLease(lease, src, iip, holder);
|
||||
return internalReleaseLease(lease, src, iip, holder);
|
||||
} else {
|
||||
assert lease.getHolder().equals(clientName) :
|
||||
"Current lease holder " + lease.getHolder() +
|
||||
@ -2722,11 +2722,13 @@ void recoverLeaseInternal(RecoverLeaseOp op, INodesInPath iip,
|
||||
if (lease.expiredSoftLimit()) {
|
||||
LOG.info("startFile: recover " + lease + ", src=" + src + " client "
|
||||
+ clientName);
|
||||
boolean isClosed = internalReleaseLease(lease, src, iip, null);
|
||||
if(!isClosed)
|
||||
if (internalReleaseLease(lease, src, iip, null)) {
|
||||
return true;
|
||||
} else {
|
||||
throw new RecoveryInProgressException(
|
||||
op.getExceptionMessage(src, holder, clientMachine,
|
||||
"lease recovery is in progress. Try again later."));
|
||||
}
|
||||
} else {
|
||||
final BlockInfo lastBlock = file.getLastBlock();
|
||||
if (lastBlock != null
|
||||
@ -2743,7 +2745,9 @@ void recoverLeaseInternal(RecoverLeaseOp op, INodesInPath iip,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -18,6 +18,7 @@
|
||||
package org.apache.hadoop.hdfs;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
@ -43,6 +44,7 @@
|
||||
import org.apache.hadoop.hdfs.server.namenode.LeaseManager;
|
||||
import org.apache.hadoop.hdfs.server.namenode.NameNodeAdapter;
|
||||
import org.apache.hadoop.io.EnumSetWritable;
|
||||
import org.apache.hadoop.ipc.RemoteException;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.junit.After;
|
||||
import org.junit.Test;
|
||||
@ -212,4 +214,48 @@ public void testBlockRecoveryWithLessMetafile() throws Exception {
|
||||
assertTrue("File should be closed", newdfs.recoverLease(file));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Recover the lease on a file and append file from another client.
|
||||
*/
|
||||
@Test
|
||||
public void testLeaseRecoveryAndAppend() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
try{
|
||||
cluster = new MiniDFSCluster.Builder(conf).numDataNodes(1).build();
|
||||
Path file = new Path("/testLeaseRecovery");
|
||||
DistributedFileSystem dfs = cluster.getFileSystem();
|
||||
|
||||
// create a file with 0 bytes
|
||||
FSDataOutputStream out = dfs.create(file);
|
||||
out.hflush();
|
||||
out.hsync();
|
||||
|
||||
// abort the original stream
|
||||
((DFSOutputStream) out.getWrappedStream()).abort();
|
||||
DistributedFileSystem newdfs =
|
||||
(DistributedFileSystem) FileSystem.newInstance
|
||||
(cluster.getConfiguration(0));
|
||||
|
||||
// Append to a file , whose lease is held by another client should fail
|
||||
try {
|
||||
newdfs.append(file);
|
||||
fail("Append to a file(lease is held by another client) should fail");
|
||||
} catch (RemoteException e) {
|
||||
assertTrue(e.getMessage().contains("file lease is currently owned"));
|
||||
}
|
||||
|
||||
// Lease recovery on first try should be successful
|
||||
boolean recoverLease = newdfs.recoverLease(file);
|
||||
assertTrue(recoverLease);
|
||||
FSDataOutputStream append = newdfs.append(file);
|
||||
append.write("test".getBytes());
|
||||
append.close();
|
||||
}finally{
|
||||
if (cluster != null) {
|
||||
cluster.shutdown();
|
||||
cluster = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user