0

我当前的配置有问题。

我正在尝试在上线之前对我的平台进行压力测试,我发现了一些非常令人担忧的事情。

英镑配置:

User "pound"
Group "pound"
Control "/var/lib/pound/pound.cfg"
#TimeOut     150
LogLevel 3
LogFacility local1
ListenHTTP
    Address 0.0.0.0
    Port    80
    xHTTP    0
    Service
        BackEnd
            Address 127.0.0.1
            Port    9080
        End
    End
End
ListenHTTPS
    HeadRemove "X-Forwarded-Proto"
    AddHeader "X-Forwarded-Proto: https"
    Address 0.0.0.0
    Port    443
    Cert    "/etc/httpd/ssl/pound.pem"
    xHTTP       0
    Service
        BackEnd
            Address 127.0.0.1
            Port    9443
        End
    End
End

清漆配置:

backend default {
  .host = "127.0.0.1";
  .port = "8080";
}

backend default_ssl {
  .host = "127.0.0.1";
  .port = "8443";
}

然后 Apache 监听 8080 和 8443。

问题是,在 20 RPS 之后,我的磅挂起(顶部显示没有任何问题),如果我直接访问 ip:8080 以及 ip:9080 意味着 Varnish 和 Apache 都很好,我可以获得页面。

一旦我杀死我的压力测试机器,页面就会加载。

我发现的唯一相关日志xx SessionClose c timeout在 Varnishlog 中随处可见。

我尝试使用 Google Cloud HTTP/HTTPS 负载平衡器摆脱英镑,但未能成功使其与 HTTPS 一起使用。

4

1 回答 1

0

如果找到罪魁祸首!

Threads xxx(默认 128)

我把它设置为4096,没有问题了。

于 2017-05-26T02:35:57.530 回答