清漆504网关超时

时间:2015-07-07 01:05:51

标签: varnish varnish-vcl

我在NY2地区的数字海洋中有2台清漆服务器。我有两个网络服务器坐在Amazon EC2 us-east-1b。

Varnish版本为3.05,apache在版本为2.4.6的Web服务器上运行。我发现的是,每个加载的页面都会带来“网关超时”状态。错误,正常加载页面之前。有时,如果您第二次点击页面,它会再次给出超时错误。

这是一个令我讨厌的错误,我想尝试纠正。我尝试通过在varnish配置中将超时设置为非常高来解决这个问题。这阻止了我得到的503错误,但现在504错误是主要问题。

我有一个非常简单的清漆VCL文件。这是:

backend web1 {
  .host = "10.10.10.25";
  .port = "80";
  .connect_timeout = 1200s;
  .first_byte_timeout = 1200s;
  .between_bytes_timeout = 1200s;
  .max_connections = 70;
  .probe = {
  .request =
   "GET /healthcheck.php HTTP/1.1"
   "Host: wiki.example.com"
   "Connection: close";
   .interval = 10m;
   .timeout = 60s;
   .window = 3;
   .threshold = 2;
   }
}

backend web2 {
  .host = "10.10.10.26";
  .port = "80";
  .connect_timeout = 1200s;
  .first_byte_timeout = 1200s;
  .between_bytes_timeout = 1200s;
  .max_connections = 70;
  .probe = {
  .request =
   "GET /healthcheck.php HTTP/1.1"
   "Host: wiki.example.com"
   "Connection: close";
   .interval = 10m;
   .timeout = 60s;
   .window = 3;
   .threshold = 2;
   }
}


director www round-robin {
  { .backend = web1;   }
  { .backend = web2;  }
 }


sub vcl_recv {

    if (req.url ~ "&action=submit($|/)") {
        return (pass);
    }

    set req.backend = www;
    return (lookup);
}

sub vcl_fetch {
      set beresp.ttl = 3600s;
      set beresp.grace = 4h;
      return (deliver);
}



sub vcl_deliver {
     if (obj.hits> 0) {
      set resp.http.X-Cache = "HIT";
     } else {
        set resp.http.X-Cache = "MISS";
     }
 }

当页面出现504错误时,这是​​我在varnish日志中出现的错误:

   10 TxHeader     c Age: 1
   10 TxHeader     c Via: 1.1 varnish
   10 TxHeader     c Connection: close
   10 TxHeader     c X-Cache: MISS
   10 Debug        c Write error, retval = -1, len = 75311, errno = Connection reset by peer
   10 ReqEnd       c 1481957120 1436230882.856483936 1436230941.208484650 0.000118494 58.351872206 0.000128508
   10 StatSess     c 54.88.194.254 52474 58 1 1 0 0 1 565 74746

我检查过这个错误发生后我可以卷曲健康检查文件,似乎我可以:

[root@varnish1:/etc/varnish] #curl http://wiki.example.com/healthcheck.php
good

这是一个奇怪的设置,但是在我们批准在EC2中设置清漆之前的几周。它是我继承的设置,需要尝试使其在接下来的几周内可行。

我感谢您提供的任何帮助和见解。

2 个答案:

答案 0 :(得分:2)

“errno =由同行重置连接”

peer 正在重置连接。这不是在Varnish中发生的。去调试对等体。

答案 1 :(得分:0)

我认为你必须将set req.backend = www;语句移到vcl_recv的第一行。

现在你正在返回pass但没有设置后端,所以我假设Varnish超时等待不存在的后端响应。