0

我知道可以根据 url 参数使连接保持粘性: https ://serverfault.com/questions/495049/using-url-parameters-for-load-balancing-with-haproxy?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

是否也可以根据 url 路径中的 ID 来实现?

如果我的网址是:/objects/:objectId

我可以以某种方式使用 :objectId 使连接保持粘性吗?

编辑

我能够使用以下配置进行负载平衡,使请求在 url 路径上保持粘性:

global
    #daemon
    maxconn 256

defaults
    mode http
    timeout connect 5000ms
    timeout client 50000ms
    timeout server 50000ms

frontend http-in
    bind *:80
    default_backend servers

backend servers
    balance roundrobin
    stick-table type string size 200k expire 30m
    stick on path
    server server1 127.0.0.1:8000
    server server2 127.0.0.1:8001

listen stats
    bind 127.0.0.1:9000
    mode            http
    log             global

    maxconn 10

    stats enable
    stats hide-version
    stats refresh 5s
    stats show-node
    stats auth admin:password
    stats uri  /haproxy?stats

现在的问题是,如果其中一台服务器出现故障,则棒表不会更新。我怎样才能做到这一点,如果其中一台服务器无法访问,则指向该服务器的粘贴表中的条目将被删除?

最终答案

好的,我能够弄清楚。下面的配置使请求停留在 url 路径上,HAProxy 将每 250 毫秒向 /health 发送一个 HTTP GET,如果它不返回 200,它将认为服务器已关闭,这将从棒中删除所有条目-桌子。

global
    daemon
    maxconn 256

defaults
    mode http
    timeout connect 5000ms
    timeout client 50000ms
    timeout server 50000ms

frontend http-in
    bind *:80
    default_backend servers


backend servers
    balance roundrobin
    stick-table type string size 200k expire 30m
    option httpchk GET /health
    http-check expect status 200
    stick on path,word(2,/)  if { path_beg /objects/ }
    server server1 127.0.0.1:8000 check inter 250
    server server2 127.0.0.1:8001 check inter 250

listen stats
    bind 127.0.0.1:9000
    mode            http
    log             global

    maxconn 10

    stats enable
    stats hide-version
    stats refresh 5s
    stats show-node
    stats auth admin:password
    stats uri  /haproxy?stats
4

1 回答 1

1

用这个:

stick on path,word(2,/)  if { path_beg /objects/ }
于 2018-06-02T02:33:31.480 回答