HDFS-13688. [SBN read] Introduce msync API call. Contributed by Chen Liang.
This commit is contained in:
parent
1e22f2bfbb
commit
eae0a5d54a
|
@ -3181,4 +3181,18 @@ public class DFSClient implements java.io.Closeable, RemotePeerFactory,
|
|||
checkOpen();
|
||||
return new OpenFilesIterator(namenode, tracer, openFilesTypes, path);
|
||||
}
|
||||
|
||||
/**
|
||||
* A blocking call to wait for Observer NameNode state ID to reach to the
|
||||
* current client state ID. Current client state ID is given by the client
|
||||
* alignment context.
|
||||
* An assumption is that client alignment context has the state ID set at this
|
||||
* point. This is become ObserverReadProxyProvider sets up the initial state
|
||||
* ID when it is being created.
|
||||
*
|
||||
* @throws IOException
|
||||
*/
|
||||
public void msync() throws IOException {
|
||||
namenode.msync();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1788,6 +1788,17 @@ public interface ClientProtocol {
|
|||
BatchedEntries<OpenFileEntry> listOpenFiles(long prevId,
|
||||
EnumSet<OpenFilesType> openFilesTypes, String path) throws IOException;
|
||||
|
||||
/**
|
||||
* Called by client to wait until the server has reached the state id of the
|
||||
* client. The client and server state id are given by client side and server
|
||||
* side alignment context respectively. This can be a blocking call.
|
||||
*
|
||||
* @throws IOException
|
||||
*/
|
||||
@Idempotent
|
||||
@ReadOnly
|
||||
void msync() throws IOException;
|
||||
|
||||
/**
|
||||
* Satisfy the storage policy for a file/directory.
|
||||
* @param path Path of an existing file/directory.
|
||||
|
|
|
@ -158,6 +158,8 @@ import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MetaSa
|
|||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MkdirsRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.ModifyCacheDirectiveRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.ModifyCachePoolRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MsyncRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MsyncResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.OpenFilesBatchResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.RecoverLeaseRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.RefreshNodesRequestProto;
|
||||
|
@ -1947,6 +1949,16 @@ public class ClientNamenodeProtocolTranslatorPB implements
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void msync() throws IOException {
|
||||
MsyncRequestProto.Builder req = MsyncRequestProto.newBuilder();
|
||||
try {
|
||||
rpcProxy.msync(null, req.build());
|
||||
} catch (ServiceException e) {
|
||||
throw ProtobufHelper.getRemoteException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void satisfyStoragePolicy(String src) throws IOException {
|
||||
SatisfyStoragePolicyRequestProto req =
|
||||
|
|
|
@ -830,6 +830,12 @@ message ListOpenFilesResponseProto {
|
|||
repeated OpenFilesTypeProto types = 3;
|
||||
}
|
||||
|
||||
message MsyncRequestProto {
|
||||
}
|
||||
|
||||
message MsyncResponseProto {
|
||||
}
|
||||
|
||||
message SatisfyStoragePolicyRequestProto {
|
||||
required string src = 1;
|
||||
}
|
||||
|
@ -1024,6 +1030,8 @@ service ClientNamenodeProtocol {
|
|||
returns(GetQuotaUsageResponseProto);
|
||||
rpc listOpenFiles(ListOpenFilesRequestProto)
|
||||
returns(ListOpenFilesResponseProto);
|
||||
rpc msync(MsyncRequestProto)
|
||||
returns(MsyncResponseProto);
|
||||
rpc satisfyStoragePolicy(SatisfyStoragePolicyRequestProto)
|
||||
returns(SatisfyStoragePolicyResponseProto);
|
||||
}
|
||||
|
|
|
@ -71,7 +71,8 @@ public class TestReadOnly {
|
|||
"getDataEncryptionKey",
|
||||
"getCurrentEditLogTxid",
|
||||
"getEditsFromTxid",
|
||||
"getQuotaUsage"
|
||||
"getQuotaUsage",
|
||||
"msync"
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
@ -1532,6 +1532,11 @@ public class RouterClientProtocol implements ClientProtocol {
|
|||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void msync() throws IOException {
|
||||
rpcServer.checkOperation(NameNode.OperationCategory.READ, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void satisfyStoragePolicy(String path) throws IOException {
|
||||
rpcServer.checkOperation(NameNode.OperationCategory.WRITE, false);
|
||||
|
|
|
@ -1193,6 +1193,11 @@ public class RouterRpcServer extends AbstractService
|
|||
return clientProto.listOpenFiles(prevId, openFilesTypes, path);
|
||||
}
|
||||
|
||||
@Override // ClientProtocol
|
||||
public void msync() throws IOException {
|
||||
clientProto.msync();
|
||||
}
|
||||
|
||||
@Override // ClientProtocol
|
||||
public void satisfyStoragePolicy(String path) throws IOException {
|
||||
clientProto.satisfyStoragePolicy(path);
|
||||
|
|
|
@ -175,6 +175,8 @@ import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.Modify
|
|||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.ModifyCacheDirectiveResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.ModifyCachePoolRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.ModifyCachePoolResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MsyncRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.MsyncResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.RecoverLeaseRequestProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.RecoverLeaseResponseProto;
|
||||
import org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.RefreshNodesRequestProto;
|
||||
|
@ -1893,6 +1895,17 @@ public class ClientNamenodeProtocolServerSideTranslatorPB implements
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public MsyncResponseProto msync(RpcController controller,
|
||||
MsyncRequestProto req) throws ServiceException {
|
||||
try {
|
||||
server.msync();
|
||||
return MsyncResponseProto.newBuilder().build();
|
||||
} catch (IOException e) {
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public SatisfyStoragePolicyResponseProto satisfyStoragePolicy(
|
||||
RpcController controller,
|
||||
|
|
|
@ -1380,6 +1380,11 @@ public class NameNodeRpcServer implements NamenodeProtocols {
|
|||
return namesystem.listOpenFiles(prevId, openFilesTypes, path);
|
||||
}
|
||||
|
||||
@Override // ClientProtocol
|
||||
public void msync() throws IOException {
|
||||
// TODO : need to be filled up if needed. May be a no-op here.
|
||||
}
|
||||
|
||||
@Override // ClientProtocol
|
||||
public CorruptFileBlocks listCorruptFileBlocks(String path, String cookie)
|
||||
throws IOException {
|
||||
|
|
Loading…
Reference in New Issue