You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "dhruba borthakur (JIRA)" <ji...@apache.org> on 2007/06/28 08:24:26 UTC

[jira] Commented: (HADOOP-1541) ipc.Server INFO message shouldn't include an Exception trace

    [ https://issues.apache.org/jira/browse/HADOOP-1541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12508742 ] 

dhruba borthakur commented on HADOOP-1541:
------------------------------------------

One solution would be to make the IPC server log these exception messages at debug level.  But this might hide other important exceptions in the namenode.

Another option would be to make the client change FileSystem.isDir() to first invoke fs.exists(f) and only if the file exists then call getFileInfo(). This introduces the overhead of two RPCs for the isDir() call.

> ipc.Server INFO message shouldn't include an Exception trace
> ------------------------------------------------------------
>
>                 Key: HADOOP-1541
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1541
>             Project: Hadoop
>          Issue Type: Bug
>          Components: dfs
>    Affects Versions: 0.14.0
>            Reporter: Nigel Daley
>            Assignee: dhruba borthakur
>            Priority: Blocker
>             Fix For: 0.14.0
>
>
> I see a lot of these in the NN log.  I don't think an INFO message should contain an error message and stack trace.
> 2007-06-28 00:21:51,057 INFO org.apache.hadoop.ipc.Server: IPC Server handler 7 on 8020, call getFileInfo(/user/hadoopqa/mapred.loadtest/intermediateouts) from 2.2.2.2:47476: error: java.io.IOException: File does not exist
> java.io.IOException: File does not exist
>         at org.apache.hadoop.dfs.FSDirectory.getFileInfo(FSDirectory.java:716)
>         at org.apache.hadoop.dfs.FSNamesystem.getFileInfo(FSNamesystem.java:1178)
>         at org.apache.hadoop.dfs.NameNode.getFileInfo(NameNode.java:479)
>         at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
>         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>         at java.lang.reflect.Method.invoke(Method.java:597)
>         at org.apache.hadoop.ipc.RPC$Server.call(RPC.java:340)
>         at org.apache.hadoop.ipc.Server$Handler.run(Server.java:566)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.