You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Luca Quintarelli (JIRA)" <ji...@apache.org> on 2015/10/07 12:36:29 UTC

[jira] [Created] (CAMEL-9197) Memory leak with .marshal().json() if stream caching enabled

Luca Quintarelli created CAMEL-9197:
---------------------------------------

             Summary: Memory leak with .marshal().json() if stream caching enabled
                 Key: CAMEL-9197
                 URL: https://issues.apache.org/jira/browse/CAMEL-9197
             Project: Camel
          Issue Type: Bug
    Affects Versions: 2.15.3, 2.15.2, 2.15.1, 2.15.0, 2.14.3, 2.14.2
         Environment: Centos 7, JDK 1.8
            Reporter: Luca Quintarelli


        from("file:src/data?noop=true")
        .split().tokenizeXML("Item").streaming().stopOnException()
            .unmarshal(jaxb)
            .marshal().json(JsonLibrary.Jackson) 
// This line causes a memory leak if stream caching enabled
            .log("File ${in.header.CamelFileName} token ${in.header.CamelSplitIndex}")
        .end();



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)