I am making a website and I want to spread my traffic out to avoid crashing and to make sure I can offer 100% uptime. I will do this by having 5 different servers and one main server. Allow me to explain.

I have one website (domain.com) and on the homepage of that site there is a cURL frame that connects users to one of the other five servers which has the least traffic on it. I want the script to change the cURL frame to display the server with the least traffic.

Can anyone help me or suggest how I could code this as I am a PHP beginner.

Thanks in advance, Callum

link|improve this question

Pretty advanced for a beginner I'd say, lets see what I can find for you. – Juan Nov 13 '10 at 0:44
Hope the current answer is enough for you :) – Juan Nov 13 '10 at 1:07
1  
Just some 'outside of the question' thinking: There is a key word for this: Loadbalancing. And for Loadbalancing there is already special software and even hardware which you could use. No need to develop this your own. – ZeissS Nov 13 '10 at 2:50
Why would do this with PHP? Get yourself a proper load balancer like ZeissS mentioned. – The Pixel Developer Nov 13 '10 at 3:27
feedback

3 Answers

up vote 10 down vote accepted

Here we go:

Get the 5 slave servers to update a table in a database on the main server inserting their load every X seconds/minutes. Then in the main server, check which of them has the lowest load and redirect the user to that particular one. alt text

How to get the server load?

There's a function called sys_getloadavg(); which will return three samples representing the average system load (the number of processes in the system run queue) over the last 1, 5 and 15 minutes, respectively in an array.

That way, if the system load is over a set number, you should redirect the visitor to a different slave server. For example:

$load = sys_getloadavg();
if ($load[0] > 80) {
    //insert into database "I'm busy!!"
    $query = "UPDATE `server_load` SET `load` = $load WHERE `server_id` = 1";
    mysql_query($query);
}

Note the 0 on $load means that it's getting the server load for the last minute, use 1 or 2 for the 5 and 15 minute average system load. The query, would be on a script on the slave servers and every time it was run, it would update the average server load on the table server_load.

How to choose from the main server

Once you've isolated the 'get server load' functionality from the slave servers. All you need to do from the main server is query the database and get the lowest load from the server_load table. The mentioned table, would be functional enough with a timestamp field, an id field, and a load field with the following structure:

`timestamp` int(11) not_null
`id` int(1) not_null autoincrement
`load` int(3) not_null

For a basic tutorial introducing mysql and php interaction I suggest this link from phpsense. If you dedicate enough time an read through the documentation I've linked you with, you should be able to achieve your goal. Make sure to ask all your following questions as independent entities if you are unable to find them on this site already. Chances are they've been asked over and over again by people preceding you. Hope I've been of help.

Sources:

link|improve this answer
1  
sure, give me a minute. – Juan Nov 13 '10 at 0:57
5  
Great answer. But I think perhaps you should reword "inserting their load every X seconds/minutes". – robinjam Nov 13 '10 at 2:05
3  
hahaha nothing wrong with it as long as you have a clean mind. – Juan Nov 13 '10 at 2:14
feedback

You're going to need something to determine the traffic on each server; this should output a metric that you can compare against. Each of the five servers should be computing their traffic load dynamically, and updating that somewhere (I'd suggest a database). So your front-end server can, when a user comes in, query the database for the server with the least load, and direct them there.

link|improve this answer
@CallumWhyte: those sound like two very good questions to ask on some sort of programming question site. :-) – Paul Sonier Nov 13 '10 at 0:58
already answered up there – Juan Nov 13 '10 at 1:04
feedback

Callum, I'm new here and I'm not quite sure if this is against the rules but since there is no messaging system I'm posting this here... The answer to your question that you asked and deleted about the rounded corners is to add this to your CSS: (I was figuring it out when you deleted it and then it didn't let me post)

.result:first-child {
            -moz-border-radius-topleft: 0px;
            -moz-border-radius-topright: 10px;
            -moz-border-radius-bottomright: 0px;
            -moz-border-radius-bottomleft: 0px;
            -webkit-border-radius: 0px 10px 0px 0px;
            border-radius: 0px 10px 0px 0px;
        }
.result:last-child {
            -moz-border-radius-topleft: 0px;
            -moz-border-radius-topright: 0px;
            -moz-border-radius-bottomright: 10px;
            -moz-border-radius-bottomleft: 10px;
            -webkit-border-radius: 0px 0px 10px 10px;
            border-radius: 0px 0px 10px 10px;
        }
link|improve this answer
you can take out the moz and webkit lines if this is just for iOS/Android – tsdexter Jul 10 '11 at 0:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.