Re: Dealing with a Mysql server (not node) failure
either you write your own load balancer for your application, something like this:
api_nodes = array(hostA, hostB, hostC)
connect_to = api_nodes[rand(0,3)]
connect(connect_to)
or you also can use some simple round-robin load balancer. Here is one of them:
http://www.inlab.de/balance.html
Subject
Views
Written By
Posted
2715
July 11, 2005 06:49PM
1801
July 11, 2005 07:55PM
Re: Dealing with a Mysql server (not node) failure
1779
July 12, 2005 06:09AM
1765
July 12, 2005 06:59AM
1702
July 12, 2005 11:12AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.