Author: lewismc
Date: Thu Aug 30 20:52:00 2012
New Revision: 1379137
URL: http://svn.apache.org/viewvc?rev=1379137&view=rev
Log:
NUTCH-1395 Show batchId when skipping within ParserJob
Modified:
nutch/branches/2.x/CHANGES.txt
nutch/branches/2.x/src/java/org/apache/nutch/parse/ParserJob.java
Modified: nutch/branches/2.x/CHANGES.txt
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1379137&r1=1379136&r2=1379137&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Thu Aug 30 20:52:00 2012
@@ -2,6 +2,8 @@ Nutch Change Log
Release 2.1 - Current Development
+* NUTCH-1395 Show batchId when skipping within ParserJob (lewismc)
+
* NUTCH-1365 Fix crawlId functionalilty by making using of new gora
configuration (ferdy)
* NUTCH-1442 indexingfilter.order is property is misread in code (ferdy via
lewismc)
Modified: nutch/branches/2.x/src/java/org/apache/nutch/parse/ParserJob.java
URL:
http://svn.apache.org/viewvc/nutch/branches/2.x/src/java/org/apache/nutch/parse/ParserJob.java?rev=1379137&r1=1379136&r2=1379137&view=diff
==============================================================================
--- nutch/branches/2.x/src/java/org/apache/nutch/parse/ParserJob.java (original)
+++ nutch/branches/2.x/src/java/org/apache/nutch/parse/ParserJob.java Thu Aug
30 20:52:00 2012
@@ -106,7 +106,7 @@ public class ParserJob extends NutchTool
LOG.debug("Reparsing " + unreverseKey);
} else {
if (!NutchJob.shouldProcess(mark, batchId)) {
- LOG.info("Skipping " + unreverseKey + "; different batch id");
+ LOG.info("Skipping " + TableUtil.unreverseUrl(key) + "; different
batch id (" + mark + ")");
return;
}
if (shouldResume && Mark.PARSE_MARK.checkMark(page) != null) {