Skip to content

Commit e689dd3

Browse files
Merge pull request #19893 from fcami/fix-weight-logic
HAProxy config template: Fix weight logic for A/B testing
2 parents 30e7e27 + 9a22135 commit e689dd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

images/router/haproxy/conf/haproxy-config.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ backend be_secure:{{$cfgIdx}}
445445
{{- end }}{{/* is "edge" or "reencrypt" */}}
446446

447447
{{- range $serviceUnitName, $weight := $cfg.ServiceUnitNames }}
448-
{{- if ne $weight 0 }}
448+
{{- if ge $weight 0 }}{{/* weight=0 is reasonable to keep existing connections to backends with cookies as we can see the HTTP headers */}}
449449
{{- with $serviceUnit := index $.ServiceUnits $serviceUnitName }}
450450
{{- range $idx, $endpoint := processEndpointsForAlias $cfg $serviceUnit (env "ROUTER_BACKEND_PROCESS_ENDPOINTS" "") }}
451451
server {{$endpoint.ID}} {{$endpoint.IP}}:{{$endpoint.Port}} cookie {{$endpoint.IdHash}} weight {{$weight}}
@@ -514,7 +514,7 @@ backend be_tcp:{{$cfgIdx}}
514514
hash-type consistent
515515
timeout check 5000ms
516516
{{- range $serviceUnitName, $weight := $cfg.ServiceUnitNames }}
517-
{{- if ne $weight 0 }}
517+
{{- if ne $weight 0 }}}{{/* drop connections where weight=0 as we can't use cookies, leaving only r-r and src-ip as dispatch methods and weight make no sense there */}}
518518
{{- with $serviceUnit := index $.ServiceUnits $serviceUnitName }}
519519
{{- range $idx, $endpoint := processEndpointsForAlias $cfg $serviceUnit (env "ROUTER_BACKEND_PROCESS_ENDPOINTS" "") }}
520520
server {{$endpoint.ID}} {{$endpoint.IP}}:{{$endpoint.Port}} weight {{$weight}}

0 commit comments

Comments
 (0)