This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new f23333e CAMEL-15628: Fixed ArrayIndexOutOfBoundsException for
concurrent / high throughtput routing with message history enabled.
f23333e is described below
commit f23333e0d6cbbbcd6ebea26e3dcdfbad5a4a6449
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Oct 3 14:16:41 2020 +0200
CAMEL-15628: Fixed ArrayIndexOutOfBoundsException for concurrent / high
throughtput routing with message history enabled.
---
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
index 4d308fd..3f89849 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
@@ -171,6 +171,11 @@ Class `CamelFileDataSource` has moved from
`camel-http-common` in package `org.a
If your code directly depends on this class, you will need to update the
package reference to the new location.
+=== Message History
+
+When message history is enabled then there is a slight performance overhead as
the history data is now stored
+in a `java.util.concurrent.CopyOnWriteArrayList` due to the need of being
thread safe.
+
=== Default limit set on decompressed file size
From Apache Camel 3.6.0, a default limit is enforced on the maximum size of a
decompressed file, to prevent possible denial of service attacks.