Nevermind I got it working. In case anyone else runs into this.<br><br>You need have the following also setup in your grace configuration if you went varnish to server stale content when backends are down. Set this to like 6 hours, if this not set it defaults to 1 min and objects are removed from the cache after 1 min and everything goes bye bye.<br>
<pre style="overflow:auto;padding:5px;background-color:rgb(162,202,232);color:rgb(51,51,51);line-height:15px;border:1px solid rgb(51,111,182);font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:-webkit-auto;text-indent:0px;text-transform:none;word-spacing:0px">
set beresp.ttl=1m;</pre><br>Cheers<br><br>Nick Tailor<br><br><div class="gmail_quote">On Mon, Jul 9, 2012 at 12:37 PM, nick tailor <span dir="ltr"><<a href="mailto:nick.tailor@gmail.com" target="_blank">nick.tailor@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br><br>So, I used this link <a href="http://www.lullabot.com/articles/varnish-multiple-web-servers-drupal" target="_blank">http://www.lullabot.com/articles/varnish-multiple-web-servers-drupal</a> to setup my varnish stuff.<br>
<br>Made some minor adjustments to the probes, however if I stop stop one of my webservers to see if the content my varnish serves is from the cache, it just shows a page service unavailble, and from what I've read you need to have the grace mode stuff in there, which this default vcl for version 3 does.<br>

<br>Anyone, have any ideas why my Drupal sites are not serving cached? when my backend are down.<br><br>=====================================================<br># Respond to incoming requests.<br>sub vcl_recv {<br>  # Allow the backend to serve up stale content if it is responding slowly.<br>

  set req.grace = 6h;<br>}<br><br># Code determining what to do when serving items from the Apache servers.<br>sub vcl_fetch {<br>  # Allow items to be stale if needed.<br>  set beresp.grace = 6h;<br>}<br>=====================================================<br>

<br>Cheers <br><span class="HOEnZb"><font color="#888888"><br>Nick Tailor<br>
</font></span></blockquote></div><br>