关于我的设置:
- 我的 WordPress 环境有一个 HAProxy 配置。
- 每个 WordPress 网站的“前端”都有多个服务器池。
- 我强迫每个人都连接到一个特定的服务器,以获取每个 WordPress 网站“后端”中的任何内容。现在......这只是让文件同步和数据库复制变得简单。
我的问题:
我的客户正在一次大批量上传大量照片到他们的网站。大多数情况下,文件都按预期上传。然而,随机和零星的一些照片无法上传,在 WordPress 中出现“HTTP 错误”的相当通用的错误代码。
上传失败的照片绝不是同一个照片文件。在每种情况下都是完全随机的。
我已经解决这个问题大约一个星期左右了,似乎无法解决这个问题。
- 我已验证 DNS 是否正确并按预期运行。用户正在解析到 HAProxy 服务器,并且连接被转发到托管 WordPress 网站“后端”的适当服务器。
- 我已经彻底检查了托管每个 WordPress 网站“后端”的服务器上的 Apache、PHP 和 MySQL 配置。
- 我已经从头到脚检查了与 WordPress 相关的所有内容。
此时我唯一能想到的就是我的 HAProxy 配置有问题。我觉得有太多的请求太快了,HAProxy 服务器没有跟上与托管 WordPress 网站“后端”的服务器之间的通信(批量上传正在发生的地方)。
我想解决这个与 HAProxy 相关的问题。如果您觉得我的配置可以在其他地方进行简化或改进(与此特定问题无关),我愿意对我当前的 HAProxy 配置进行整体改进,但主要关注与批量上传相关的“HTTP 错误”问题的文件。
这是我的 HAProxy 1.6.9 配置:
defaults
log global
mode http
option httplog
option dontlognull
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
retries 3
option redispatch
maxconn 2000
timeout connect 5000
timeout check 5000
timeout client 300000
timeout server 300000
frontend http-in
bind *:80
option httplog
option http-server-close
acl has_domain hdr(host) -m found
acl has_www hdr_beg(host) -i www.
acl has_admin path_beg /wp-admin
acl has_login path_beg /wp-login.php
acl has_custom_login path_beg /manage
acl has_server1 hdr_beg(host) -i server1.
use_backend admin_servers if has_domain has_www has_admin or has_domain has_www has_login or has_domain has_www has_custom_login
use_backend live_servers if has_domain !has_admin !has_login !has_custom_login or has_www !has_admin !has_login !has_custom_login
use_backend default_servers if has_server1
default_backend default_servers
backend default_servers
mode http
stats enable
stats uri /haproxy?stats
balance roundrobin
option httpclose
option forwardfor
cookie SERVERID insert indirect nocache
server server1 1.1.1.1:80 check cookie server1
backend admin_servers
mode http
stats enable
stats uri /haproxy?stats
balance roundrobin
option httpclose
option forwardfor
cookie SERVERID insert indirect nocache
server server1 1.1.1.1:80 check cookie server1
backend live_servers
mode http
stats enable
stats uri /haproxy?stats
balance roundrobin
option httpclose
option forwardfor
cookie SERVERID insert indirect nocache
server server1 1.1.1.1:80 check cookie server1 weight 200
server server2 2.2.2.2:80 check cookie server2 weight 25 maxconn 256