DistributedEventClusterSetup

Version 1.1 by Thomas Mortagne on 2009/09/01

1 How to setup a cluster of XWiki instance based on distributed events

#warning("This tutorial is a simple way to setup a XWiki clustering for test purpose.")

The goal of a cluster of XWiki instance is to provide several XWiki in different servers accessing the same database server to be able to do load balancing.

1.1 Install two instances of XWiki on the same MySQL database

Here we will use the XWiki standard distribution but instead of using the embedded hsqldb database we will use a MySql database. For this you need to:
- modify the <tt>hibernate.cfg.xml</tt> file to change hsqldb configuration by a proper MySQL configuration
- copy your database driver JAR in WEB-INF/lib or in some shared lib directory

See http://www.xwiki.org/xwiki/bin/view/AdminGuide/Installation for more details on how to install XWiki.

At this point you almost have a XWiki cluster: you have to instance of XWiki which are using the same datas. But there is a remaining "detail": the problem is that for performence reason XWiki is using lots of differents caches which mean that even if one instance of XWiki modified a document it's possible the other XWiki instance will not see it and keep showing the document in its cache.

1.1 Configure event distribution

To handle this we will use the network event distribution system. When anything append in a XWiki instances it generate a local event which is used to update caches, here we will make theses events send to other XWiki instances as well and emulate local events. This way all the code updating its cache each time something changed in a particular document for example will also be notified if it has been done by another instance of XWiki.

1.1.1 Enable remote observation

First you need to enable remote observation system.

For this go to xwiki.properties file and set the property <tt>observation.remote.enabled</tt> to <tt>true</tt>.

1.1.1 Set the channels

Then you need to indicate to remote observation manager which communications channels it should start when XWiki starts.

For this you need to list in property <tt>observation.remote.channels</tt> the names of the channels.

Here we set <tt>tcp1</tt> in one instance and <tt>tcp2</tt> in the other XWiki installation.

1.1.1 Put the JGroups channels xml configuration files

The names of the channels are used to match the configuration files names in located in <tt>WEB-INF/observation/remote/jgroups/</tt> configuration folder. For example in this case we will add a {tcp1.xml} file in one XWiki instance and {tcp2.xml} file in the other XWiki instance.

1.1 Start XWiki instance on different ports

For this tutorial we run two instance of XWiki in the same server. So we need each instance to use different ports.

To run a XWik instance if a custom port you can provide it in parameter of the script start_xwiki.sh.

Here we start the first instance with:
{code}
sh start_xwiki.sh 8080 8070
{code}

and the second one with:
{code}
sh start_xwiki.sh 8081 8071
{code}

The second port is the port used to stop jetty server, it's not mandatory to run XWiki but it's better to have differents ports if you don't want to have to kill the java process instead of using the stop_xwiki.sh script emoticon_wink

Get Connected