[
https://issues.apache.org/jira/browse/HDFS-16073?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ayush Saxena updated HDFS-16073:
--------------------------------
Fix Version/s: 3.3.2
3.2.3
3.4.0
Hadoop Flags: Reviewed
Resolution: Fixed
Status: Resolved (was: Patch Available)
> Remove redundant RPC requests for getFileLinkInfo in
> ClientNamenodeProtocolTranslatorPB
> ---------------------------------------------------------------------------------------
>
> Key: HDFS-16073
> URL: https://issues.apache.org/jira/browse/HDFS-16073
> Project: Hadoop HDFS
> Issue Type: Improvement
> Reporter: lei w
> Assignee: lei w
> Priority: Minor
> Fix For: 3.4.0, 3.2.3, 3.3.2
>
> Attachments: HDFS-16073.001.patch, HDFS-16073.patch
>
>
> Remove redundant RPC requests for getFileLinkInfo in
> ClientNamenodeProtocolTranslatorPB. The original logic is as follows:
> {code:java}
> @Override
> public HdfsFileStatus getFileLinkInfo(String src) throws IOException {
> GetFileLinkInfoRequestProto req = GetFileLinkInfoRequestProto.newBuilder()
> .setSrc(src).build();
> try {
> GetFileLinkInfoResponseProto result = rpcProxy.getFileLinkInfo(null,
> req);// First getFileLinkInfo RPC request
> return result.hasFs() ?
> PBHelperClient.convert(rpcProxy.getFileLinkInfo(null, req).getFs())
> :// Repeated getFileLinkInfo RPC request
> null;
> } catch (ServiceException e) {
> throw ProtobufHelper.getRemoteException(e);
> }
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]