You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@kylin.apache.org by "Richard Calaba (JIRA)" <ji...@apache.org> on 2016/04/30 08:19:12 UTC

[jira] [Created] (KYLIN-1639) Wrong logging of JobID in MapReduceExecutable.java

Richard Calaba created KYLIN-1639:
-------------------------------------

             Summary: Wrong logging of JobID in MapReduceExecutable.java
                 Key: KYLIN-1639
                 URL: https://issues.apache.org/jira/browse/KYLIN-1639
             Project: Kylin
          Issue Type: Bug
          Components: Job Engine
    Affects Versions: v1.5.1, all
            Reporter: Richard Calaba
            Assignee: Dong Li
            Priority: Trivial


Hello,

during debugging of an issue where MR Build Job (Step 2) errors - even the MR job is SUCCESS - I found out strange entry in the Kylin log:

2016-04-30 01:40:31,358 INFO  [pool-2-thread-1] execution.AbstractExecutable:107 : mr_job_id:null

After looking at the source code of Kylin 1.5.1 I found that there is probably an code-error in MapReduceExecutable.java on line 107:

logger.info("mr_job_id:" + extra.get(ExecutableConstants.MR_JOB_ID + " resumed"));

I believe the correct logging logic is suposed to be:

logger.info("mr_job_id:" + extra.get(ExecutableConstants.MR_JOB_ID) + " resumed");





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