在我们的测试环境中,我们发现了一个奇怪的 HAProxy 行为。我们使用的是标准 RHEL 7 提供的haproxy-1.5.18-8.el7.x86_64
RPM。
根据我们的理解,接受的并行连接总数定义为maxconn*nbproc
从global
.haproxy.cfg
但是,如果我们定义:
maxconn 5
nbproc 2
我们预计并行连接的总数为 10。但我们不能超过maxconn
定义的 5。
为什么忽略 nbproc?
这是完整的 haproxy.cfg:
# Global settings
global
log 127.0.0.1 local2 warning
log 10.229.253.86 local2 warning
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 5
user haproxy
group haproxy
daemon
nbproc 2
# turn on stats unix socket
stats socket /var/lib/haproxy/stats
stats socket /var/run/haproxy.sock mode 600 level admin
stats socket /var/run/haproxy_hamonit.sock uid 2033 gid 2033 mode 600 level admin
stats timeout 2m
defaults
mode tcp
log global
option tcplog
option dontlognull
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 10s
timeout client 30s
timeout server 30s
timeout http-keep-alive 10s
timeout check 10s
bind-process all
frontend ha01
bind 10.229.253.89:80
mode http
option httplog
option http-server-close
option forwardfor except 127.0.0.0/8
default_backend ha01
backend ha01
balance roundrobin
mode http
option httplog
option http-server-close
option forwardfor except 127.0.0.0/8
server server1 10.230.11.252:4240 check
server server2 10.230.11.252:4242 check
listen stats 10.229.253.89:1936
mode http
stats enable
stats hide-version
stats realm Haproxy\ Statistics
stats uri /
stats auth admin:foo
我找到了罪魁祸首。我们正在从套接字接口读取统计信息。但是在我们的配置中,只有 1 个套接字接口只绑定到一个进程。因此我们无法从其他进程中获取统计信息。不幸的是,HAProxy 不支持通过套接字接口聚合统计信息(如果支持,请分享方法)。
因此,当我更改为精确绑定时:
在以下情况下,我可以从两个套接字获取统计信息
nbproc=2
: