You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Lin Yiqun (JIRA)" <ji...@apache.org> on 2016/02/01 04:05:39 UTC

[jira] [Created] (HDFS-9727) Improve the exception's log output in DataXceiver

Lin Yiqun created HDFS-9727:
-------------------------------

             Summary: Improve the exception's log output in DataXceiver
                 Key: HDFS-9727
                 URL: https://issues.apache.org/jira/browse/HDFS-9727
             Project: Hadoop HDFS
          Issue Type: Improvement
    Affects Versions: 2.7.1
            Reporter: Lin Yiqun
            Assignee: Lin Yiqun
            Priority: Minor


There are some not appropriate logLevel output in many palaces of {{DataXceiver}}. When some exceptions happened, the output logLevel often  the info level not warn. Like these:
{code}
try {
        blockSender = new BlockSender(block, blockOffset, length,
            true, false, sendChecksum, datanode, clientTraceFmt,
            cachingStrategy);
      } catch(IOException e) {
        String msg = "opReadBlock " + block + " received exception " + e; 
        LOG.info(msg);
        sendResponse(ERROR, msg);
        throw e;
      }
{code}
And this case is not only one, it looks frequent in DataXceiver methods.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)