You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Timothy Bish (JIRA)" <ji...@apache.org> on 2011/08/11 00:33:27 UTC

[jira] [Updated] (AMQ-2430) embedded RESTful fileserver do not close files when PUT method is called

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

Timothy Bish updated AMQ-2430:
------------------------------

    Affects Version/s:     (was: 6.0.0)

> embedded RESTful fileserver do not close files when PUT method is called
> ------------------------------------------------------------------------
>
>                 Key: AMQ-2430
>                 URL: https://issues.apache.org/jira/browse/AMQ-2430
>             Project: ActiveMQ
>          Issue Type: Bug
>          Components: Broker
>    Affects Versions: 5.2.0, 5.3.0
>         Environment: linux 64 bits, but probably not significant
>            Reporter: Fabien MARTY
>             Fix For: 5.6.0
>
>   Original Estimate: 5m
>  Remaining Estimate: 5m
>
> When doing a massive uploading of blobs with activemq 5.2 (same thing on svn trunk) on the embedded RESTful fileserver, you get a "too many open files" error and the system doesn't work anymore.
> Steps to reproduce :
> * send a BlobMessage with "jms.blobTransferPolicy.uploadUrl=http://127.0.0.1:8161/fileserver/"
> * use "lsof |grep fileserver" command and you will see your uploaded BLOB still open
> The fix seems really easy (works ok for me) :
> * open "RestFilter.java"
> * locate the "doPut()" method
> * change :
> {code} 
> try {
>     IO.copy(request.getInputStream(), out);
>  } catch (IOException e) {
> {code}
> with :
> {code} 
> try {
>     IO.copy(request.getInputStream(), out);
>     out.close();
>  } catch (IOException e) {
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira