MySQL Forums
Forum List  »  Router & Proxy

Re: Want to know more about the load-balancing
Posted by: Jan Kneschke
Date: July 06, 2007 04:45PM

A single proxy can handle about 8000 - 10000 parallel connections when it is run a on a recent kernel. This is handled on a single process and is using syscalls like epoll() to make this scalable.

A sleeping connections is very cheap, active connections are cheap too, of not too much time is spent in the lua layer.

You can start with a single proxy. If you want to make it fault-tolerant, take a second box and install a second instance there.

Now, you need to tell you app to load-balancers over the two proxies or you take a local proxy on the app-server and let it balance you you.

Jan

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Want to know more about the load-balancing
3117
July 06, 2007 04:45PM


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.