You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by "Lewis John McGibbney (JIRA)" <ji...@apache.org> on 2012/05/03 21:48:50 UTC

[jira] [Created] (NUTCH-1349) Make batchId explcit within debug logging.

Lewis John McGibbney created NUTCH-1349:
-------------------------------------------

             Summary: Make batchId explcit within debug logging.
                 Key: NUTCH-1349
                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
             Project: Nutch
          Issue Type: Improvement
          Components: indexer
    Affects Versions: nutchgora
            Reporter: Lewis John McGibbney
            Priority: Minor
             Fix For: nutchgora


I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
{code}
2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
{code}

when I would actually like

{code}
2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
{code} 

patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney updated NUTCH-1349:
----------------------------------------

    Attachment: NUTCH-1349-v2.patch

new patch.
If you are happy then I will commit. I checked out the other jobs and this seems to be all the logging I can improve given this specific issue and the debug option. 
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (NUTCH-1349) Make batchId explcit within debug logging.

Posted by "Ferdy Galema (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13267758#comment-13267758 ] 

Ferdy Galema commented on NUTCH-1349:
-------------------------------------

+1 This will also benefits other jobs depending on a batchId.
                
> Make batchId explcit within debug logging.
> ------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Ferdy Galema (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13268397#comment-13268397 ] 

Ferdy Galema commented on NUTCH-1349:
-------------------------------------

Good work on improving the CLI. About the displaying mismatching batchId, your patch prints batchId while you should use 'mark' instead.

What do you mean with matching TableUtil.unreverseUrl(key)?
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney updated NUTCH-1349:
----------------------------------------

    Attachment: NUTCH-1349-v2.patch

reattach with ASF licensing
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney resolved NUTCH-1349.
-----------------------------------------

    Resolution: Fixed
      Assignee: Lewis John McGibbney

Committed @ revision 1335436 in Nutchgora branch
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Assignee: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney updated NUTCH-1349:
----------------------------------------

    Patch Info: Patch Available
       Summary: Make batchId explcit within debug logging and improve CLI  (was: Make batchId explcit within debug logging.)

Slight modification to the issue description. A bit of work ended up going into the CLI making it more pretty!
Also I've updated the log4j.properties file as well.

I'm not truly happy with this, a currently it displays the batchId for the CLI input, rather than the batchId from the key that doesn't match the input batchId! Does this make sense?
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney closed NUTCH-1349.
---------------------------------------

    
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Assignee: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Lewis John McGibbney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lewis John McGibbney updated NUTCH-1349:
----------------------------------------

    Attachment: NUTCH-1349.patch

Trivial patch.
Question I have though, how can we find out the batchId of some given key which matches 
{code}
TableUtil.unreverseUrl(key)
{code}
?
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Ferdy Galema (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13268592#comment-13268592 ] 

Ferdy Galema commented on NUTCH-1349:
-------------------------------------

Looks good. +1 

When need arises we can always add it for similar jobs too.
                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (NUTCH-1349) Make batchId explcit within debug logging and improve CLI

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/NUTCH-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13271068#comment-13271068 ] 

Hudson commented on NUTCH-1349:
-------------------------------

Integrated in Nutch-nutchgora #248 (See [https://builds.apache.org/job/Nutch-nutchgora/248/])
    Commit to address NUTCH-1349 and update to CHANGES.txt (Revision 1335436)

     Result = SUCCESS
lewismc : 
Files : 
* /nutch/branches/nutchgora/CHANGES.txt
* /nutch/branches/nutchgora/conf/log4j.properties
* /nutch/branches/nutchgora/src/bin/nutch
* /nutch/branches/nutchgora/src/java/org/apache/nutch/crawl/WebTableReader.java
* /nutch/branches/nutchgora/src/java/org/apache/nutch/fetcher/FetcherJob.java
* /nutch/branches/nutchgora/src/java/org/apache/nutch/indexer/IndexerJob.java
* /nutch/branches/nutchgora/src/java/org/apache/nutch/parse/ParserJob.java

                
> Make batchId explcit within debug logging and improve CLI
> ---------------------------------------------------------
>
>                 Key: NUTCH-1349
>                 URL: https://issues.apache.org/jira/browse/NUTCH-1349
>             Project: Nutch
>          Issue Type: Improvement
>          Components: indexer
>    Affects Versions: nutchgora
>            Reporter: Lewis John McGibbney
>            Assignee: Lewis John McGibbney
>            Priority: Minor
>             Fix For: nutchgora
>
>         Attachments: NUTCH-1349-v2.patch, NUTCH-1349-v2.patch, NUTCH-1349.patch
>
>
> I find this a pain when trying to locate the batchId of some urls which are skipped when going to the Solr index. My DEBUG log output gives me
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id
> {code}
> when I would actually like
> {code}
> 2012-05-03 20:44:55,268 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.glasgowwheelers.com/; different batch id (ACTUAL BATCH ID)
> 2012-05-03 20:44:55,259 DEBUG indexer.IndexerJob (IndexerJob.java:map(83)) - Skipping http://www.heraldscotland.com/; different batch id (ACTUAL BATCH ID)
> {code} 
> patch coming up soon

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira