Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-02-03 Thread via GitHub
jamesnetherton commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2631955984 Thanks for confirming 👍 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-02-03 Thread via GitHub
jamesnetherton closed issue #6947: Body is not thread safe when using a split URL: https://github.com/apache/camel-quarkus/issues/6947 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific com

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-02-03 Thread via GitHub
steve-cdl commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2631584864 Hi, I have found the cause of this issue. While creating the demo application to share i noticed I was not able to reproduce the issue locally. Comparing my loca

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-30 Thread via GitHub
jamesnetherton commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2624535824 Are you able to craft a demo application that reproduces the problem? -- This is an automated message from the Apache Git Service. To respond to the message, please log

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-30 Thread via GitHub
steve-cdl commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2624282159 Just in case it helps. To expand on my point around streamCache If you set streamCache="true" , this will produce the error, even if your route does not amend body at a

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-29 Thread via GitHub
steve-cdl commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2622236691 > > We were previously using Spring Boot and did not encounter this issue. > > With the same Camel version (4.9.0)? Yes Spring Boot with Camel version 4.9.0 does

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-29 Thread via GitHub
jamesnetherton commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2622207370 > We were previously using Spring Boot and did not encounter this issue. With the same Camel version (4.9.0)? -- This is an automated message from the Apache Git

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-29 Thread via GitHub
steve-cdl commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2622173822 > Yes this is expected when using parallel, then 2 threads can operate at the same time on the same body. Saxon is not thread safe so dont do that. Or use the onPrepare to ma

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-29 Thread via GitHub
steve-cdl commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2622132838 > Sounds like a generic Camel issue. > > Thus probably better to report it here: https://issues.apache.org/jira/projects/CAMEL. Thanks for the response. W

Re: [I] Body is not thread safe when using a split [camel-quarkus]

2025-01-29 Thread via GitHub
davsclaus commented on issue #6947: URL: https://github.com/apache/camel-quarkus/issues/6947#issuecomment-2621754993 Yes this is expected when using parallel, then 2 threads can operate at the same time on the same body. Saxon is not thread safe so dont do that. Or use the onPrepare to make

[I] Body is not thread safe when using a split [camel-quarkus]

2025-01-28 Thread via GitHub
steve-cdl opened a new issue, #6947: URL: https://github.com/apache/camel-quarkus/issues/6947 ### Bug description Hi, We are using Camel 4.9.0 and Quarkus 3.17.7. Our app receives an XML input and within that XML is a set of codes. We need to run XSLT transforms for ea