Displaying 3 results from an estimated 3 matches for "fail_timeout".
Did you mean:
aio_timeout
2009 Sep 19
0
[CFT] multi server failover setup
...lowly
# the exact numbers for the :backlog values are flexible
# the idea here is just to have a very low :backlog for the
# UNIX domain socket and big one as a fallback for the
# TCP socket
And the nginx configs:
upstream unicorn_failover {
# primary connection, "fail_timeout=0" is to ensure that
# we always *try* to use the UNIX socket on every request
# that comes in:
server unix:/tmp/sock fail_timeout=0;
# failover connections, "backup" ensures these will not
# be used unless connections to unix:/tmp/sock are failing...
2008 Feb 24
6
ANNC: qrp - queueing reverse proxy
...stance(s).
Once a request gets to qrp, qrp will retry the all the members in a
given pool until a connection can be made and a response is returned.
This avoids extra data copies of requests for the common (non-busy)
case, and requires few changes to any existing infrastructure.
Having fail_timeout=0 in the nginx config for every member of the
Rails pool will allow nginx to immediately re-add a Rails Mongrel to
the pool once the Rails Mongrel has finished processing.
--- highlights of the nginx config:
upstream mongrel {
server 0:3000 fail_timeout=0; # Rails
server 0:3001 fail_timeo...
2009 Oct 09
0
unicorn 0.93.3 - OpenBSD compatibility
...thanks to
Jeremy Evans. Additionally there are small documentation
changes all around.
Eric Wong (12):
doc: expand on the SELF_PIPE description
fchmod heartbeat flips between 0/1 for compatibility
examples/init.sh: remove "set -u"
configurator: update with nginx fail_timeout=0 example
PHILOSOPHY: clarify experience other deployments
PHILOSOPHY: plug the Rainbows! spin-off project
README: remove unnecessary and extraneous dash
DESIGN: clarification and possibly improve HTML validity
README: remove the "non-existent" part
REA...