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

star commented on HDFS-14340:
-----------------------------

[~OneisAll], you can make a patch for the issue.

> Lower the log level when can't get postOpAttr
> ---------------------------------------------
>
>                 Key: HDFS-14340
>                 URL: https://issues.apache.org/jira/browse/HDFS-14340
>             Project: Hadoop HDFS
>          Issue Type: Improvement
>          Components: nfs
>    Affects Versions: 3.1.0, 2.8.5
>            Reporter: Anuhan Torgonshar
>            Priority: Major
>         Attachments: RpcProgramNfs3.java
>
>
> I think should lower the log level when can't get postOpAttr in 
> _*hadoop-2.8.5-src/hadoop-hdfs-project/hadoop-hdfs-nfs/src/main/java/org/apache/hadoop/hdfs/nfs/nfs3/**RpcProgramNfs3.java*_.
>  
>  
> {code:java}
> **************The fisrt code snippet***************
> //the problematic log level ERROR, at line 1044
> try {
>    dirWcc = Nfs3Utils.createWccData(Nfs3Utils.getWccAttr(preOpDirAttr),
>    dfsClient, dirFileIdPath, iug);
> } catch (IOException e1) {
>    LOG.error("Can't get postOpDirAttr for dirFileId: "
>    + dirHandle.getFileId(), e1);
> }
> **************The second code snippet***************
> //other practice in similar code snippets, line number is 475, the log 
> assigned with INFO level
> try { 
>    wccData = Nfs3Utils.createWccData(Nfs3Utils.getWccAttr(preOpAttr), 
> dfsClient,   fileIdPath, iug); 
> } catch (IOException e1) { 
>    LOG.info("Can't get postOpAttr for fileIdPath: " + fileIdPath, e1); 
> }
> **************The third code snippet***************
> //other practice in similar code snippets, line number is 1405, the log 
> assigned with INFO level
> try {
>    fromDirWcc = Nfs3Utils.createWccData(
>    Nfs3Utils.getWccAttr(fromPreOpAttr), dfsClient, fromDirFileIdPath,iug);
>    toDirWcc = Nfs3Utils.createWccData(Nfs3Utils.getWccAttr(toPreOpAttr),
>    dfsClient, toDirFileIdPath, iug);
> } catch (IOException e1) {
>    LOG.info("Can't get postOpDirAttr for " + fromDirFileIdPath + " or"
>    + toDirFileIdPath, e1);
> }
> {code}
> Therefore, I think the logging practices should be consistent in similar 
> contexts. When the code catches _*IOException*_ for *_getWccAttr()_* method, 
> it more likely prints a log message with _*INFO*_ level, a lower level.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
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