[jira] [Commented] (NUTCH-2519) Log mapreduce job counters in local mode

2018-03-06 Thread Hudson (JIRA)

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

Hudson commented on NUTCH-2519:
---

SUCCESS: Integrated in Jenkins build Nutch-trunk #3504 (See 
[https://builds.apache.org/job/Nutch-trunk/3504/])
NUTCH-2519 Log mapreduce job messages and counters in local mode (snagel: 
[https://github.com/apache/nutch/commit/ae30dff285b8619467e9c838787acd3a4aba42fb])
* (edit) conf/log4j.properties


> Log mapreduce job counters in local mode
> 
>
> Key: NUTCH-2519
> URL: https://issues.apache.org/jira/browse/NUTCH-2519
> Project: Nutch
>  Issue Type: Improvement
>Affects Versions: 2.3.1, 1.14
>Reporter: Sebastian Nagel
>Assignee: Sebastian Nagel
>Priority: Trivial
> Fix For: 2.4, 1.15
>
>
> A simple change in the log4j.properties would make the Hadoop job counters 
> appear in the hadoop.log also in local mode:
> {noformat}
> log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
> {noformat}
> This may provide useful information for debugging, esp. if counters are not 
> explicitly logged by tools (see 
> [@user|https://lists.apache.org/thread.html/1dd5410b479bd536fb3df98612db4b832cd0a97533099b0dc632eba9@%3Cuser.nutch.apache.org%3E]).
>  This would make the output also more similar to (pseudo)distributed mode 
> (Nutch is called via {{hadoop jar}}) Job counters and progress info are 
> obligatorily logged.



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


[jira] [Commented] (NUTCH-2519) Log mapreduce job counters in local mode

2018-03-06 Thread Hudson (JIRA)

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

Hudson commented on NUTCH-2519:
---

SUCCESS: Integrated in Jenkins build Nutch-nutchgora #1602 (See 
[https://builds.apache.org/job/Nutch-nutchgora/1602/])
NUTCH-2519 Log mapreduce job messages and counters in local mode (snagel: 
[https://github.com/apache/nutch/commit/804d39164753da74de0e8cdd916e3a51a34b038c])
* (edit) conf/log4j.properties


> Log mapreduce job counters in local mode
> 
>
> Key: NUTCH-2519
> URL: https://issues.apache.org/jira/browse/NUTCH-2519
> Project: Nutch
>  Issue Type: Improvement
>Affects Versions: 2.3.1, 1.14
>Reporter: Sebastian Nagel
>Assignee: Sebastian Nagel
>Priority: Trivial
> Fix For: 2.4, 1.15
>
>
> A simple change in the log4j.properties would make the Hadoop job counters 
> appear in the hadoop.log also in local mode:
> {noformat}
> log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
> {noformat}
> This may provide useful information for debugging, esp. if counters are not 
> explicitly logged by tools (see 
> [@user|https://lists.apache.org/thread.html/1dd5410b479bd536fb3df98612db4b832cd0a97533099b0dc632eba9@%3Cuser.nutch.apache.org%3E]).
>  This would make the output also more similar to (pseudo)distributed mode 
> (Nutch is called via {{hadoop jar}}) Job counters and progress info are 
> obligatorily logged.



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


[jira] [Commented] (NUTCH-2519) Log mapreduce job counters in local mode

2018-03-06 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on NUTCH-2519:
---

sebastian-nagel closed pull request #287: NUTCH-2519 Log mapreduce job messages 
and counters in local mode
URL: https://github.com/apache/nutch/pull/287
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/conf/log4j.properties b/conf/log4j.properties
index e9e5e7f9f..6fad2b5d3 100644
--- a/conf/log4j.properties
+++ b/conf/log4j.properties
@@ -63,6 +63,8 @@ 
log4j.logger.org.apache.nutch.util.SitemapProcessor=INFO,cmdstdout
 
 log4j.logger.org.apache.nutch=INFO
 log4j.logger.org.apache.hadoop=WARN
+# log mapreduce job messages and counters
+log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
 
 #
 # Daily Rolling File Appender
@@ -71,7 +73,7 @@ log4j.logger.org.apache.hadoop=WARN
 log4j.appender.DRFA=org.apache.log4j.DailyRollingFileAppender
 log4j.appender.DRFA.File=${hadoop.log.dir}/${hadoop.log.file}
 
-# Rollver at midnight
+# Rollover at midnight
 log4j.appender.DRFA.DatePattern=.-MM-dd
 
 # 30-day backup


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Log mapreduce job counters in local mode
> 
>
> Key: NUTCH-2519
> URL: https://issues.apache.org/jira/browse/NUTCH-2519
> Project: Nutch
>  Issue Type: Improvement
>Affects Versions: 2.3.1, 1.14
>Reporter: Sebastian Nagel
>Priority: Trivial
> Fix For: 2.4, 1.15
>
>
> A simple change in the log4j.properties would make the Hadoop job counters 
> appear in the hadoop.log also in local mode:
> {noformat}
> log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
> {noformat}
> This may provide useful information for debugging, esp. if counters are not 
> explicitly logged by tools (see 
> [@user|https://lists.apache.org/thread.html/1dd5410b479bd536fb3df98612db4b832cd0a97533099b0dc632eba9@%3Cuser.nutch.apache.org%3E]).
>  This would make the output also more similar to (pseudo)distributed mode 
> (Nutch is called via {{hadoop jar}}) Job counters and progress info are 
> obligatorily logged.



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


[jira] [Commented] (NUTCH-2519) Log mapreduce job counters in local mode

2018-03-05 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on NUTCH-2519:
---

lewismc commented on issue #287: NUTCH-2519 Log mapreduce job messages and 
counters in local mode
URL: https://github.com/apache/nutch/pull/287#issuecomment-370484982
 
 
   +1


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Log mapreduce job counters in local mode
> 
>
> Key: NUTCH-2519
> URL: https://issues.apache.org/jira/browse/NUTCH-2519
> Project: Nutch
>  Issue Type: Improvement
>Affects Versions: 2.3.1, 1.14
>Reporter: Sebastian Nagel
>Priority: Trivial
> Fix For: 2.4, 1.15
>
>
> A simple change in the log4j.properties would make the Hadoop job counters 
> appear in the hadoop.log also in local mode:
> {noformat}
> log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
> {noformat}
> This may provide useful information for debugging, esp. if counters are not 
> explicitly logged by tools (see 
> [@user|https://lists.apache.org/thread.html/1dd5410b479bd536fb3df98612db4b832cd0a97533099b0dc632eba9@%3Cuser.nutch.apache.org%3E]).
>  This would make the output also more similar to (pseudo)distributed mode 
> (Nutch is called via {{hadoop jar}}) Job counters and progress info are 
> obligatorily logged.



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


[jira] [Commented] (NUTCH-2519) Log mapreduce job counters in local mode

2018-03-05 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on NUTCH-2519:
---

sebastian-nagel opened a new pull request #287: NUTCH-2519 Log mapreduce job 
messages and counters in local mode
URL: https://github.com/apache/nutch/pull/287
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Log mapreduce job counters in local mode
> 
>
> Key: NUTCH-2519
> URL: https://issues.apache.org/jira/browse/NUTCH-2519
> Project: Nutch
>  Issue Type: Improvement
>Affects Versions: 2.3.1, 1.14
>Reporter: Sebastian Nagel
>Priority: Trivial
> Fix For: 2.4, 1.15
>
>
> A simple change in the log4j.properties would make the Hadoop job counters 
> appear in the hadoop.log also in local mode:
> {noformat}
> log4j.logger.org.apache.hadoop.mapreduce.Job=INFO
> {noformat}
> This may provide useful information for debugging, esp. if counters are not 
> explicitly logged by tools (see 
> [@user|https://lists.apache.org/thread.html/1dd5410b479bd536fb3df98612db4b832cd0a97533099b0dc632eba9@%3Cuser.nutch.apache.org%3E]).
>  This would make the output also more similar to (pseudo)distributed mode 
> (Nutch is called via {{hadoop jar}}) Job counters and progress info are 
> obligatorily logged.



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