|
Page Edited :
SM :
Clustering
Clustering has been edited by Dave Stanley (Apr 08, 2008). Content:Clustering and High Availability in ServicemixServiceMix supports both High availability(HA) and clustering of containers. As you can configure HA without clustering its helpful to deal with them as two separate tasks. High AvailabilityHigh Availability (HA) can be defined as two distinct container instances configured in a master-slave configuration. In ALL cases, the master is ACTIVE and the slave is in STANDBY mode waiting for a failover event to trigger it to take over.
As Servicemix leverages ActiveMQ to provide HA functionality, you have a few choices in terms of how you configure master-slave: 1) Shared File Database Master-Slave - With shared db master-slave two containers use the same physical data store for container state. Care should be taken to ensure that the file system supports file level locking as this is the mechanism used to elect the master. If the master process exits, the db lock is released and the slave acquires it and it then becomes the master. 2) JDBC Master-Slave - In JDBC master-slave, the master will lock a table in the backend database. The failover event in this case is that the lock is released from the database. 3) Pure Master-Slave - With pure master-slave a shared database is not used. The master replicates all state changes to the slave so there is additional overhead incurred. The failover trigger in pure master-slave is that the slave looses its network connection to its master. Due to the additional overhead and maintenance involved, options 1) and 2) above are more desirable. ClusteringA Cluster can be defined as two or more ACTIVE container instances that are networked together. A cluster provides you: 1) Connectivity to other servicemix containers forming a network of containers. Containers can be dynamically 2) Remote component awareness. Each container is aware of its peer's components. Networked Containers listen for remote component registration/deregistration events and once aware can route requests to those components. 3) Load Balancing. A cluster allows you to loadbalance in a couple of ways: 3.1) You can install the same component on multiple containers. This gives you increased capacity and additional HA capabilities. If one container fails the same component in another container can still service the request. 3.2) You can partition your workload among container instances. Different containers can handle different tasks and flow's can span multiple containers. Example: Configuring HAWhen learning about servicemix HA configuration, a good starting point is to configure HA on a single host. In this scenario lets assume we have container1_host1(master) and container2_host1(slave). To configure our example with "Shared File Database Master-Slave", the steps are: 1) Install two instances of the software (servicemix1 & servicemix2). 2) Ensure <servicemix2> is an exact replica of <servicemix1>. The exact same files should be installed in your 3) Edit <servicemix1>/conf/activemq.xml and configure the ActiveMQ Peristence Adapter <amq:transportConnectors> <amq:transportConnector uri="tcp://localhost:61616"/> </amq:transportConnectors> <amq:persistenceAdapter> <amq:journaledJDBC journalLogFiles="5" dataDirectory="/<shared>/data/amq"/> </amq:persistenceAdapter> 4) Edit <servicemix2>/conf/activemq.xml and verify the ActiveMQ Peristence Adapter configuration. <amq:transportConnectors> <amq:transportConnector uri="tcp://localhost:61616"/> </amq:transportConnectors> <amq:persistenceAdapter> <amq:journaledJDBC journalLogFiles="5" dataDirectory="/<shared>/data/amq"/> </amq:persistenceAdapter>
5) When using the same host you MAY need to change the jmx ports to avoid port conflicts. Edit <servicemix2>/conf/servicemix.properties, changing the rmi.port. rmi.port = 1098
rmi.host = localhost
jmx.url = "" class="code-comment">///jndi/rmi://${rmi.host}:${rmi.port}/jmxrmi
How to test the configuration:1) Start a servicemix instance by running servicemix in the root of the install directory. servicemix1_home>./bin/servicemix
2) Start the slave container servicemix2_home>./bin/servicemix
3) Ctrl-c the master instance. You should see the slave fail over. This configuration has some advantages and some disadvantages: Advantages: Disadvantages: Extending the HA example to separate hosts:This example can be extended such that the master and slave are on separate hosts. File and jdbc based approaches still have the requirement that both instances access the SAME presistent store. In the file based case this can be provided via a SAN and for jdbc both instances need to be able to access the same database instance. You pay for this flexibility with additional configuration overhead. Specifically you may need to introduce failover urls into your deployed component configurations. Example: failover://(tcp://host_servicemix1:61616,tcp://host_servicemix2:61616)?initialReconnectDelay=100 You may also need to provide your clients with both HA host addresses (or insulate clients from this details via a hardware loadbalancer). Clients need to be aware that only one instance will be ACTIVE at a time. See the http://activemq.apache.org/failover-transport-reference.html Clustering ConfigurationTo create a network of servicemix containers, you need to establish "Network Connections" between each of the containers in the network. So if we extend the HA example above and add two more container processes such that we have smix1_host1(master) and smix2_host1(slave) .. then we need to establish a network connection between the two active containers (namely smix1_host1 and smix1_host2). As Servicemix leverages ActiveMQ to provide clustering functionality, you have a few choices in terms of how you configure your NetworkConnectors: 1) Static Network Connectors With a static configuration, each NetworkConnector in the cluster is wired up explicily via <servicemix>/conf/activemq.xml. Here's an example of a static discovery configuration. <amq:broker brokerName="host1_broker1" depends-on="jmxServer"> .... <networkConnectors> <networkConnector name="host1_to_host2" uri="static://(tcp://host2:61616)"/> <!-- Here's what it would like for a three container network --> <!-- Notice its not necessary to list our own hostname in the uri list --> <!-- networkConnector name="host1_to_host2_host3" uri="static://(tcp://host2:61616,tcp://host3:61616)"/ --> </networkConnectors> </amq:broker>
2) Multicast If you have multicast enabled on your network and you have multicast configured in your <servicemix>/conf/activemq.xml, then when the two containers are started they should detect each other and transparently connect to one another. Here's an example of a multicast discovery configuration. <networkConnectors> <!-- by default just auto discover the other brokers --> <networkConnector name="default-nc" uri="multicast://default"/> </networkConnectors>
ExampleBelow is an example of a remote flow in a clustered configuration. JMS Flow |
Unsubscribe or edit your notifications preferences
