Is there any way to dynamically load and unload webservers from a reverse proxy?

For example let's say I have a cluster of 100 apache servers and I want to patch the servers. I would like the have a setup where I have a pool of updated servers and a pool of "being updated" servers. I would like the reverse proxy be aware of what is being patched and not read from these webservers.

I don't want to use just a config file to configure the reverse proxy.

link|improve this question

50% accept rate
feedback

1 Answer

You can use varnish's backend polling. You put simple check script on each server in backend and let varnish to poll it. Each poll will mean asking some "master server" if "slave" has got right version, enough disk space etc...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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