High Availability High Performance Web Cache

From Alpine Linux
Revision as of 21:05, 10 February 2011 by Nangel (talk | contribs) (ucarp instructions)
This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Nangel on 10 Feb 2011.)


Introduction

This document explains how to use HAProxy and ucarp to provide high performance and high-availability services.

In this document we will use the Squid web cache as the example service. Squid typically uses only a single processor, even on a multi-processor machine. To get increased web-caching performance, it is better to scale the web cache out across multiple (cheap) physical boxes. Although web caching is used as the example service, this document applies to other services, such as mail, web acceleration, etc.

Network Diagram

In the end, we will have an architecture that looks like this:

The workstations all connect to the HAProxy instance at 192.168.1.10. 192.168.1.10 is a virtual IP controlled by ucarp; that is, HAProxy runs on one of the web cache servers at any given time, but any of the web caches can be the HAProxy instance.

HAProxy distributes the web traffic across all live web cache servers, which cache the resources from the Internet.

Benefits

  • The HAProxy server in the diagram is 'virtual' - it represents the service running on any of the web cache servers
  • Each web cache server is configured as a mirror of the others - this simplifies adding additional capacity.
  • HAProxy will ignore servers that have failed or been taken offline, and notices when they are returned to service
  • This configuration allows individual servers to be upgraded or modified in a "rolling blackout", with no downtime for users.
  • Ucarp automatically restarts the HAProxy service on another cache if the server running HAProxy crashes. This is automatic recovery with typically less that 3 seconds of downtime from the clients perspective.

Initial Services

The first step in getting high-availability is to have more than one server; do the following on each of cache1-4

  • install squid
apk add squid
  • create a minimal /etc/squid/squid.conf
acl all src all
acl localhost src 127.0.0.1/32
acl localnet src 10.0.0.0/8     # RFC1918 possible internal network
acl localnet src 172.16.0.0/12  # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network 

http_access allow localnet
http_access allow localhost
http_access deny all

http_port 3129

forwarded_for off
Warning: This is a minimal configuration for demonstration purposes only. Likely you will need to configure more restrictive ACLs


  • ensure squid starts on boot
rc_update add squid
/etc/init.d/squid start


At this point, you should be able to set your browser to use any of 192.168.1.1[1-4]:3129 as a proxy address, and get to the Internet. Because this config file does not use any optimizations, browsing will be slower than normal. This is normal. Any optimizations to the squid configuration you make to one server can be applied to all in the array. The purpose of this example is to show that the service is uniform across the array.

Ucarp Virtual IP Manager

Ucarp runs on all the servers and makes sure that a virtual IP address is available. In the example diagram we use the virtual IP of 192.168.1.10.

  • The AlpineLinux ucarp init script expects it is run on a multi-homed machine; with the ability to run ucarp processes on each interface. Copy the scripts for the interface:
apk add ucarp
ln -s /etc/init.d/ucarp /etc/init.d/ucarp.eth0
cp /etc/conf.d/ucarp /etc/conf.d/ucarp.eth0
  • edit the /etc/conf/ucarp.eth0 file:
REALIP=
VHID=1
VIP=192.168.1.10
PASSWORD=SecretPassword
  • Create etc/ucarp/vip-up-eth0.sh
#!/bin/sh

 # Add the VIP address
 ip addr add $2/24 dev $1
 for a in 330 440 550; do beep -f $a -l 100; done
  • Create /etc/ucarp/vip-down-eth0.sh
#!/bin/sh

 # Remove the VIP address
 ip addr del $2/24 dev $1
 for a in 550 440 330; do beep -f $a -l 100; done
  • Make the scripts executable
chmod +x /etc/ucarp/*.sh
  • Start ucarp and save the changes
 rc-update add ucarp.eth0
 /etc/init.d/ucarp.eth0 start
 lbu commit
  • Follow the above steps for each of the Cache servers.

Once it is running on each server, unplug the network cable on each server in turn. After a couple seconds, the tone should sound on the other boxes as they hold an election to select a new master. (Note, all boxes will briefly become master, and then the others will quickly demote themselves.) You should be able to ping 192.168.1.10 no matter which server is elected master.

HA Proxy Load Balancer