You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by "charlie wanek (JIRA)" <ji...@apache.org> on 2007/05/11 20:41:15 UTC

[jira] Updated: (NUTCH-481) http.content.limit is broken in the protocol-httpclient plugin

     [ https://issues.apache.org/jira/browse/NUTCH-481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

charlie wanek updated NUTCH-481:
--------------------------------

    Attachment: abortatcontentlimit.patch

Patch to org/apache/nutch/protocol/httpclient/HttpResponse.java to abort the GET if the content limit is reached.

> http.content.limit is broken in the protocol-httpclient plugin
> --------------------------------------------------------------
>
>                 Key: NUTCH-481
>                 URL: https://issues.apache.org/jira/browse/NUTCH-481
>             Project: Nutch
>          Issue Type: Bug
>          Components: fetcher
>    Affects Versions: 0.9.0
>            Reporter: charlie wanek
>         Attachments: abortatcontentlimit.patch
>
>
> When using the protocol-httpclient plugin, the entire contents of the request URL is retrieved, regardless of the http.content.limit configuration setting.  (The issue does not affect the protocol-http plugin.)
> For very large documents, this leads the Fetcher to believe that the FetcherThread is hung, and the Fetcher aborts its run, logging a warning about hung threads (Fetcher.java:433).
> org.apache.nutch.protocol.httpclient.HttpResponse is properly counting the content length, and is breaking its read loop at the proper point.
> However, when HttpResponse closes the InputStream from which it is reading, the InputStream object (an org.apache.commons.httpclient.AutoCloseInputStream) continues to read all of the content of the document from the webserver.
> Though I'm not certain this is the correct solution, a quick test shows that if HttpResponse is changed to abort the GET, the InputStream correctly aborts the read from the webserver, and the FetcherThread can continue.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.