-
1. Re: Using mod_cluster for live updating
jfclere Dec 4, 2013 4:25 AM (in response to papegaaij)You need to use sessionDrainingStrategy (session-draining-strategy) and stopContextTimeout (stop-context-timeout) big enough to prevent the restart of applications until all sessions are gone.
You have to fail-over to one server (STOP the contexts of the other node) and keep this one up (DISABLED) until the sessions are drained additionally you need to configure the new node so that it won't form a cluster with the old one.
Note that https://bugzilla.redhat.com/show_bug.cgi?id=922042 might prevent setting the session-draining-strategy but default value should work for that scenario.
-
2. Re: Using mod_cluster for live updating
papegaaij Dec 4, 2013 4:45 AM (in response to jfclere)session-draining-strategy is indeed missing in JBoss AS7, but it's available in WildFly, which we plan to migrate to soon. If I understand you correctly, we have to stop the contexts, except the last, causing a fail-over to this last server. Then, we also stop this context, and wait for the sessions to drain.
What do you mean with ' you need to configure the new node so that it won't form a cluster with the old one'? They have to be in the same LBGroup, don't they? At the moment, they do not form a cluster for session replication, because they are at different JGroups channels.
The documentation at Chapter 9. Server-side Configuration Properties states that the default sessionDrainingStrategy (DEFAULT) drains sessions before web application undeploy only if the web application is non-distributable. Does non-distributable mean 'there is no server to distribute to (ie. the last running server)', in this context? Because, our web application is distributable, as marked with <distributable/> in web.xml.
Thanks with the help so far. We are really impressed by flexibility mod_cluster offers, without complicating the configuration.
-
3. Re: Using mod_cluster for live updating
jfclere Dec 4, 2013 5:29 AM (in response to papegaaij)The idea is clustered node1 and node2 (otherwise you can't fail over the sessions)
2 nodes node1 and node2 in a load-balancing-group group12
1 - node1 | STOP
The session have to be replicated to node2 and new requests are going to node2 too.
To prevent sessions going to node1 reconfigure node1 as node3 and change the load-balancing-group to group32 make sure it is in a different JGroups channel and restart it. Once it is restarted
2 - node2 | DISABLE
New requests will go to node3 and old will go to node2 (the sessions from node1 will be routed to node2 because they belong to group12).
Once all the sessions are gone from node2, stop it and reconfigure it in the load-balancing-group group32 and in the same JGroups channel as node3 and restart it.
The session-draining-strategy needs to be changed to ALWAYS make this move more automatic
-
4. Re: Using mod_cluster for live updating
papegaaij Dec 4, 2013 5:46 AM (in response to jfclere)Ok, I think I understand what you mean. I'll give it a try later this week. Thanks for the help!