[ 
https://issues.apache.org/jira/browse/HDFS-16073?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17364053#comment-17364053
 ] 

Ayush Saxena commented on HDFS-16073:
-------------------------------------

Yes, if it is redundant. We can get rid of it

> 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
>            Priority: Minor
>         Attachments: 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: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to