[
https://issues.apache.org/jira/browse/AMQ-2430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Timothy Bish resolved AMQ-2430.
-------------------------------
Resolution: Fixed
Fix applied in trunk
> 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