From: markt Date: Wed, 21 Jul 2010 10:58:56 +0000 (+0000) Subject: Add note about message processing order. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b9576f492ae081181275ba5e589f01050fa526f0;p=tomcat7.0 Add note about message processing order. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@966177 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/config/cluster-manager.xml b/webapps/docs/config/cluster-manager.xml index 2f19f06d2..6813829cb 100644 --- a/webapps/docs/config/cluster-manager.xml +++ b/webapps/docs/config/cluster-manager.xml @@ -110,8 +110,12 @@ - The backup manager uses a replicated map, this map is sending and receiving messages. - You can setup the flag for how this map is sending messages, the default value is 6(asynchronous). + The backup manager uses a replicated map, this map is sending and + receiving messages. You can setup the flag for how this map is sending + messages, the default value is 6(asynchronous).
+ Note that if you use asynchronous messaging it is possible for update + messages for a session to be processed by the receiving node in a + different order to the order in which they were sent.
diff --git a/webapps/docs/config/cluster.xml b/webapps/docs/config/cluster.xml index 2626bff4a..a88ea93ec 100644 --- a/webapps/docs/config/cluster.xml +++ b/webapps/docs/config/cluster.xml @@ -125,6 +125,9 @@ Channel.SEND_OPTIONS_ASYNCHRONOUS = 0x0008
Channel.SEND_OPTIONS_USE_ACK = 0x0002
So to use ACK and ASYNC messaging, the flag would be 10 (8+2) or 0x000B
+ Note that if you use ASYNC messaging it is possible for update messages + for a session to be processed by the receiving nodes in a different order + to the order in which they were sent.