The Well House Newsletter - Sunday, 1st July 2012
About us and this newsletter [link] ...
Previous editions: May 2012March 2012January 2012November 2011September 2011July 2011May 2011March 2011January 2011 • or current edition

Public Transport Training from Well House Consultants And also ... Tcl, Tcl/Tk and Expect Programming in Lua Python Programming Well House Manor - Hotel and Training Centre Apache HTTP and Tomcat Servers The Perl Programming Language and its use Ruby and Ruby on Rails PHP - the language and its application C and C++ Programming Linux and Shell Programming Melksham SQL and MySQL For the Webmaster, Postmaster and moderator Java and the Java Environment Fun and Flames Running a training and hotel company Around, about and nearby to Wiltshire Client Side Languages (HTML, CSS, Javascript) Keynote Articles General Programming Topics
Keynote article ...

Clustering on Tomcat

Subject: Clustering, using Apache http server (version 2.2.14 in my example) with mod_proxy_balancer as the front load splitter and Apache Tomcat 6.0.20 as the replicated application engine. [[Tip should also work for other recent 2.2.x and 6.0.x versions]]

Background

This is a follow on article from Load balancing with sticky sessions (httpd / Tomcat), where I looked at sharing out the application work between a number instances of Tomcat from an Apache http server (httpd) that did the bookkeeping. In a nutshell, the Apache http server sent new arrivals to a 'random' Tomcat, and then used sticky sessions so that - when a visitor came back for their subsequent visit in the same series of accesses - they would always talk to the same Tomcat and could continue their conversation with the server having full knowledge of the position to date.

The balancer alone is a good solution as far as it goes but:
• What happens if the Tomcat that has been stuck to goes out of service?
• What happens if you have such a lot of traffic that you need to replicate your httpd front end?
• What happens if your httpd fails?
• What is you don't actually want to use sessions, but still need what appears to be a single Tomcat?

One possible option to addressing some of these is to use the clustering capability of Tomcat, which I'll describe below. But you should first consider if you really need the extra step:
(a) can I accept that a session will be lost on the rare occasions that a Tomcat goes offline?
(b) is writing to a backend database going to preserve sufficient information anyway?
and if the answer to either is "yes", you probably do NOT need to cluster.

How does clustering work?

You run your web application on a series of identical (or rather "near identical" - the IP address will differ!) servers. With clustering turned on, each of the servers in the cluster is broadcasting (via multicast) any changes made in sessions, cookies, etc to any other listening cluster members on that same multicast address. So that when a visitor comes back for his / her next access, all the machines know what's been going on and can knowledgeably handle the request, even if the original machine isn't available.

You can turn clustering on in Apache Tomcat 6.0.20 simply by uncommenting the line in the default server.xml file that relates to it:
  <Cluster className = "org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
and restating your Tomcat. Older versions of Tomcat (such as 5.5) had a long configuration section listing the ports, replication time, IP addresses to use, trigger files all of which are important but none of which actually needs to be changed from default in the current release that's the target of this article.

Once you have turned clustering on (yes, it's now that simple), your machines will be communicating ... it's rather like starting a rumor in an office - before you know it, EVERYONE who's around has heard the rumor.

Clustering with the balancer

If you have already implemented balancing with sticky sessions (as covered in the preceeding article), turning on clustering will cause the data to be shared around. Most of the time the data passed around will not be used - it will ONLY form a backup of the session, to be used if the balancer is unable to reach the sticky machine because it has done down or been taken out of service.

With sticky sessions activated, even a second front-end Apache http server won't cause a switch from one Tomcat to another unless a fail-over occurs, as the jvmroute is a part of the cookie so either (any) of the httpd front ends will correctly forward to the original Tomcat. And if you have an intelligent hardware load balancer, that too will be able to forward consistently and the the clustering will remain merely as a backup.

If you disable sticky sessions on your balancer, the metrics will change. Forwarding will now be at shared to each of the Tomcats in the balanced group / cluster group (take care that all members of the balance group are included in the cluster!) and so the visitor will get to a differnt back end box each time. But that's now perfectly fine, as they're sharing the data between them so will all know about the originator.

Testing if your cluster is working

Ironically, clustering and balancing is designed to be transparent, so how do you test whether it's working?

My first simple 'trick' is to change the background colour of the pages returned from each cluster member so that "if it's orange it must be Holt" and "if it's blue it must be Chippenham" (our servers are names after local towns and villages!). Going a little further, you can edit your servlet / JSP to return the name of the current host. In Java, the following line:
  String myname = InetAddress.getLocalHost().getHostName();
will return you the local name of your computer, so that you can then echo the name.

On last Tuesday's course, I took our sample "Barman" script that remembers how many drinks you've had in a session (visit counter!) and extended it into a "Pub Watch" script, where each of the barman communicates with his colleagues in neighboring pubs to keep track of who's out on the town, and how much they have had to drink in each establishment.

If you click on the links in the previous paragraph, you can download the source code for "Barman" and "PubWatch" and try the code out for yourself. Using the balancer manage that I introduced at the end of yesterday's article, you can open and close individual pubs and see how their customers go elsewhere for their next drink, and you can turn sticky sessions off in the balancer and see how faithful customers will then hit the road and go to a different pub each time for their next drink.

Some notes on clustering

1. The machines in the cluster communicate through multicast, so must be on the same subnet.

2. It's a good idea for the subnet you use to have plenty of capacity if your environment is busy, and for it to be firmly behind a strong firewall from your own company's general user traffic, let alone the Internet

3. If you have multiple Tomcat clusters on the same subnet, you'll need to configure one of the clusters away from the default settings - otherwise they'll end up as being one big cluster (you'll find the word 'tribe' creaping in here!)

At present, we mention clustering on our public deploying apache httpd and Tomcat course. Only a small proportion of our delegate want to go 'that far', and for newcomers who hadn't done any web server work when they first came along a couple of days earlier, it would be just too much for the one session.

An extra day on the end of a Tomcat course, coverage in a private course, or a special session set up for the purpose ... all are possible to help you learn how clustering and balancing work. We'll have a network of computers set aside at our training centre for the purpose of setting up a test case, experimenting with configurations, seeing what happens when machines are switched on and off. Something you wouldn't dare so with your own production environment, and might be reluctant to do even on your development of test networks (that's even assuming that you do HAVE multiple machines at the development or test level).
(this article written on 2009-10-30)

Other articles ...

Linux and Shell Programming
[3679] Setting up your Linux system as a firewall using iptables
[3666] Makefile variables - defined internally, from the command line and from the environment
[3652] A Complete makefile example
[3651] Makefile - some basics, and a demonstration
[3632] What is Make?
Top or Show all for Linux and Shell Programming

Apache HTTP and Tomcat Servers
[3753] Adding a passcode to a directory - (new - 2012-06-05)
[3680] How can I run multiple web servers behind a single IP address?
[3443] Getting more log information from the Apache http web server
[3339] Simplest ever proxy configuration?
[3019] Apache httpd Server Status - monitoring your server
Top or Show all for Apache HTTP and Tomcat Servers

C and C++ Programming
[3718] Splitting a record into individual data values in C - (new - 2012-05-04)
[3717] Returning extra results from a function in C - (new - 2012-05-03)
[3649] A single action for multiple iPad / iPhone buttons, and animation
[3593] Chars, char arrays and strings in C. Some early cautions and pitfalls.
[3591] Integer types, and integer overflows, in C
Top or Show all for C and C++ Programming

Melksham
[3787] Melksham Pride - the Chamber of Commerce, and the future - (new - 2012-06-29)
[3774] Melksham - a new dawn - (new - 2012-06-23)
[3768] Melksham Chamber of Commerce - looking to our future shape. Pivotal meeting next Tuesday - (new - 2012-06-19)
[3767] How well do you know Melksham? - (new - 2012-06-17)
[3752] Melksham Visitors Map - Bus routes and train lines to and from the town - (new - 2012-06-04)
[3751] Public transport for international arrivals into Melksham - (new - 2012-06-04)
[3748] Not everyone has a computer - 9 more ways to learn about the Melksham Campus - (new - 2012-06-03)
[3744] Short Web Addresses for Melksham - (new - 2012-05-30)
[3741] Low carbon and other environmental lessons for the Melksham Campus? - (new - 2012-05-23)
[3739] Go green - business seminar in Melksham - (new - 2012-05-21)
[3735] A walk around Melksham this morning. Can you place all of these? - (new - 2012-05-17)
[3732] Ten more visitors to your premises every day? - (new - 2012-05-14)
[3719] Strawberry Cream Teas, Well House Manor, Melksham, starting this weekend - (new - 2012-05-04)
[3714] Just 12 winners? Or 371 or more? Town Centres. - (new - 2012-04-30)
Top or Show all for Melksham

Training from Well House Consultants
[3715] Changing face - Filton - (new - 2012-05-01)
[3701] Refresh and Revision training class days - Perl / PHP / Python / Lua / Ruby / Tcl / C / C++
[3691] Back in Cambridge to give a Lua course
[3653] What is happening in 59 days time in Melksham?
[3637] April, May and June 2012 - Public Open Source Programming Courses
Top or Show all for Training from Well House Consultants

Running a training and hotel company
[3776] Some traps it's so easy to fall into in designing your web site - (new - 2012-06-23)
[3755] Cruising on the Mersey Ferry? - (new - 2012-06-07)
[3754] Eyes Wide Open - (new - 2012-06-06)
[3750] Matching opening hours to when customers can come in and buy - (new - 2012-06-04)
[3740] Looking and Learning - even on Holiday - (new - 2012-05-22)
Top or Show all for Running a training and hotel company

Well House Manor - Hotel and Training Centre
[3708] Strawberry Cream Teas in Melksham - available every day this summer
[3702] Digital Champions think that Well House Manor is a champion venue!
[3612] Help to get online in Melksham
[3611] A customer thanks Well House Manor
[3600] Visa, MasterCard and American Express - changing payment profiles
Top or Show all for Well House Manor - Hotel and Training Centre

For the Webmaster, Postmaster and moderator
[3759] The five oldest blogs and the horses mouth - (new - 2012-06-09)
[3746] Google Analytics and the new UK Cookie law - (new - 2012-06-02)
[3745] Legal change - You need to obtain user consent if you use cookies on your website - (new - 2012-06-01)
[3670] Reading Google Analytics results, based on the relative populations of countries
[3661] Keeping forum and blog comments clean
Top or Show all for For the Webmaster, Postmaster and moderator

General Programming Topics
[3790] Solution looking for a problem? Lookahead and Lookbehind - (new - 2012-06-30)
[3788] Getting more than a yes / no answer from a regular expression pattern match - (new - 2012-06-30)
[3785] Programming languages - what are the differences between them? - (new - 2012-06-27)
[3721] Naming blocks of code, structures and Object Orientation - efficient coding in manageable chunks - (new - 2012-05-06)
[3716] Learning C++ - a design pattern for your first class - (new - 2012-05-02)
Top or Show all for General Programming Topics

PHP - the language and its application
[3789] More than just matching with a regular expression in PHP - (new - 2012-06-30)
[3747] An easy way to comply with the new cookie law if your site is well designed - (new - 2012-06-02)
[3734] QR codes with marketing logos embedded - (new - 2012-05-16)
[3635] Parse error: parse error, unexpected T_STRING on brand new web site - why?
[3584] QR codes - graphics images that provide quick phone links
Top or Show all for PHP - the language and its application

Java and the Java Environment
[3573] New in Java 7 - and why we are not running public Java 7 courses
[3497] Not the same language - but based on the same constructs
[3365] Turning bright delegates into bright and knowledgable ones
[3293] Distributing the server load - yet ensuring that each user return to the same system (Apache httpd and Tomcat)
[3048] String handling - from first steps to practical examples
Top or Show all for Java and the Java Environment

Around, about and nearby to Wiltshire
[3729] Then and now pictures of Melksham - on show through the summer - (new - 2012-05-11)
[3723] Bank Holiday Monday, so it was pouring with rain. - (new - 2012-05-07)
[3722] Walking by the wiver - (new - 2012-05-06)
[3709] Queen to visit eight Wiltshire areas - will she know what she misses in the other 13 areas?
[3641] Swindon to Trowbridge - transport and travel options
Top or Show all for Around, about and nearby to Wiltshire

The Perl Programming Language and its use
[3770] Sample answers to training course exercises - available on our web site - (new - 2012-06-21)
[3707] Converting codons via Amino Acids to Proteins in Perl
[3630] Serialsing and unserialising data for storage and transfer in Perl
[3581] Perl - calls to methods that use => - what do they mean?
[3577] How to do multidimensional arrays (or rather lists and hashes) in Perl
Top or Show all for The Perl Programming Language and its use

Client Side Languages (HTML, CSS, Javascript)
[3532] Sharing the user experience - designing a form with the customer in mind
[3133] An image from a website that occasionally comes out as hyroglyphics
[3128] How does your browser find out about itself?
[2913] Six languages in one file - an HTML++ web page
[2675] Redirecting to your main domain for correct security keys
Top or Show all for Client Side Languages (HTML, CSS, Javascript)

Ruby and Ruby on Rails
[3783] Load path, load and require in Ruby, and a change from 1.8 to 1.9 - (new - 2012-06-24)
[3782] Standard methods available on all objects in Ruby - (new - 2012-06-23)
[3781] Private, Protected, Public in Ruby. What about interfaces and abstract classes in Ruby? - (new - 2012-06-23)
[3780] Ruby of Rails - cleanly displaying model data in the view - (new - 2012-06-23)
[3779] Adding validation to form entries and sticky fields - Ruby on Rails - (new - 2012-06-23)
[3778] Providing a form to allow the user to add data to the model - Ruby on Rails - (new - 2012-06-23)
[3777] Multiple views in a single appication - sharing common parts of the template - Ruby on Rails - (new - 2012-06-23)
[3773] Ruby on the web - a simple example using CGI - (new - 2012-06-22)
[3772] Hello World - Ruby on Rails - a checklist of each step - (new - 2012-06-22)
[3769] Muttable v immutable and implications - Ruby - (new - 2012-06-20)
[3760] Why you should use objects even for short data manipulation programs in Ruby - (new - 2012-06-10)
[3758] Ruby - standard operators are overloaded. Perl - they are not - (new - 2012-06-09)
[3757] Ruby - a teaching example showing many of the language features in short but useful program - (new - 2012-06-09)
[3756] Ruby on Rails - how it flows, and where the files go - (new - 2012-06-08)
Top or Show all for Ruby and Ruby on Rails

SQL and MySQL
[3494] Databases - when to treat the rules as guidelines
[3455] MySQL, MySQLi, PDO or something else - how best to talk to databases from PHP
[3447] Needle in a haystack - finding the web server overload
[3361] Blowing our own trumpet - MySQL resources
[3270] SQL - Data v Metadata, and the various stages of data selection
Top or Show all for SQL and MySQL

Tcl, Tcl/Tk and Expect
[3638] Sorting dicts and arrays in Tcl
[3629] Sharing lots of values in Tcl without having lots of global declarations
[3618] lists and struct::list in Tcl - Introduction to struct::list and examples
[3617] The fileutil package and a list of file system commands in Tcl
[3614] Tcl - dicts - a tutorial and examples
Top or Show all for Tcl, Tcl/Tk and Expect

Programming in Lua
[3730] What is a metatable? How do I set one up? How do I use them? Lua - (new - 2012-05-12)
[3727] Using Lua tables as objects - (new - 2012-05-11)
[3725] Lua Tables - (new - 2012-05-10)
[3724] Learning to Program in Lua - public / open training course / class - (new - 2012-05-09)
[3694] Special __ methods you can use in Lua metatables
Top or Show all for Programming in Lua

Python Programming
[3766] Python timing - when to use a list, and when to use a generator - (new - 2012-06-16)
[3764] Shell, Awk, Perl of Python? - (new - 2012-06-14)
[3763] Spike solutions and refactoring - a Python example - (new - 2012-06-13)
[3762] Learning to program - the if statement. Python. - (new - 2012-06-12)
[3705] Django Training Courses - UK
Top or Show all for Python Programming

And also ...
[3775] Alan Turing - 1912 to 1954 - (new - 2012-06-23)
[3743] Sunday - no longer a day of rest - (new - 2012-05-28)
[3742] Dysenni Valley, and nearby - (new - 2012-05-24)
[3737] Postcards from Barmouth - (new - 2012-05-20)
[3733] More hazards of modern life - (new - 2012-05-15)
[3731] Now Open - A Museum for Melksham. Come in and see us. - (new - 2012-05-13)
[3726] Press Release - Museum to explore the story of Melksham - (new - 2012-05-11)
[3720] Melksham ATC - freedom of the town - (new - 2012-05-05)
[3713] Verticals ... last month - (new - 2012-04-29)
Top or Show all for And also ...

Public Transport
[3786] Improving Wiltshire Rail Offer - it WILL be happening - (new - 2012-06-28)
[3784] Steam train calls at Melksham - Pictures - (new - 2012-06-26)
[3771] Fine evening, country walk from Melksham - pictures - (new - 2012-06-21)
[3765] Christmas in June? Melksham hotel bookings and Santa train - (new - 2012-06-15)
[3761] Melksham - placed 2254 out of 2255. What can be done about it? - (new - 2012-06-11)
[3736] Abstraction - (new - 2012-05-19)
[3728] The future needs for rail services to Melksham - change needed; current service an insult - (new - 2012-05-11)
Top or Show all for Public Transport

Fun and Flames
[3749] Removal of water safety equipment, and how to use a lifesaver ring - (new - 2012-06-04)
[3738] Adoptive homes sought for abandoned babies - (new - 2012-05-20)
[3462] Hangers, luggage and possessions
[3369] Local Council leads bans on many activities
[3302] Are you a half full or half empty person?
Top or Show all for Fun and Flames

Keynote Articles
[2483] Clustering on Tomcat
[2384] Looking ahead to the Autumn season of training and accommodation
[2144] Looking for a career change - Physician to Web Site Designer
[1955] How to avoid duplicating web page maintainance
[1857] November and December Public Course Schedule
Top or Show all for Keynote Articles

Unclassfied Articles
[3578] A busy start to 2012
[3567] First of the year
[3363] Should we take sponsored adverts on our site?
[3342] A Holiday
Top or Show all for unclassified

Public Transport Training from Well House Consultants And also ... Tcl, Tcl/Tk and Expect Programming in Lua Python Programming Well House Manor - Hotel and Training Centre Apache HTTP and Tomcat Servers The Perl Programming Language and its use Ruby and Ruby on Rails PHP - the language and its application C and C++ Programming Linux and Shell Programming Melksham SQL and MySQL For the Webmaster, Postmaster and moderator Java and the Java Environment Fun and Flames Running a training and hotel company Around, about and nearby to Wiltshire Client Side Languages (HTML, CSS, Javascript) Keynote Articles General Programming Topics

A little more about this newsletter ...

At Well House Consultants, we run niche IT training courses ... and we run a hotel for delegates on those courses and other visitors to Melksham too. And we make a lot of friends - have a lot of ambassadors with whom we want to keep in touch. So every day Graham (that's me, writing this piece) puts together an article or two which might include the latest sample programs that I've written during the current course, new information about Well House Manor - our business hotel, tips on search engine optimisation, announcements of upcoming public courses, pictures of local places, and even (on occasions) rants and whimsical pieces to keep those friends up to date and in touch. The feeds are available directlt via the Blog - "The Horse's Mouth", they're on our Twitter Feed and you can find me at my LinkedIn profile. But most people just want to look us up occasionally - every month or two, and then to catch up on the latest news just for their particular subjects of interest ... and that's what this newsletter is about

You'll find above the titles of ALL the new articles written in the last two months, listed by major subject area, and showing as (new) with their date of publication. You'll find additional articles in each category too - topping each category up to a minimum of five articles. And you'll find a link at the end of each section which lets you expand that section to show the titles of every article that's been published in that section. After all, "the old ones are often the best ones", aren't they?

go to Top or other editions May 2012March 2012January 2012November 2011September 2011July 2011May 2011March 2011January 2011 • or current edition


Training sample © 2024, WELL HOUSE CONSULTANTS LTD
This is http://www.wellho.net/demo/newsletter.php
Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
Phone: +44 (0) 1225 708 225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net