Skip to content

Commit 1250866

Browse files
committedMar 22, 2024·
CLEANUP/MINOR: runtime: unite bufSize used in maps and runtime communication
1 parent 73258ce commit 1250866

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed
 

‎pkg/haproxy/api/api.go

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ import (
1515
"github.com/haproxytech/kubernetes-ingress/pkg/utils"
1616
)
1717

18+
// BufferSize is the default value of HAproxy tune.bufsize. Not recommended to change it
19+
// Map payload or socket data cannot be bigger than tune.bufsize
20+
const BufferSize = 16000
21+
1822
type HAProxyClient interface { //nolint:interfacebloat
1923
APIStartTransaction() error
2024
APICommitTransaction() error

‎pkg/haproxy/api/runtime.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ import (
1515

1616
var ErrMapNotFound = fmt.Errorf("map not found")
1717

18-
// bufsize is the default value of HAproxy tune.bufsize. Not recommended to change it
19-
// Map payload cannot be bigger than tune.bufsize
20-
const bufSize = 16000
21-
2218
type RuntimeServerData struct {
2319
BackendName string
2420
ServerName string
@@ -46,8 +42,8 @@ func (c *clientNative) SetServerAddrAndState(servers []RuntimeServerData) error
4642
backendNameSize := len(servers[0].BackendName)
4743
oneServerCommandSize := 65 + 2*backendNameSize
4844
size := oneServerCommandSize * len(servers)
49-
if size > bufSize {
50-
size = bufSize
45+
if size > BufferSize {
46+
size = BufferSize
5147
}
5248

5349
var sb strings.Builder
@@ -106,7 +102,8 @@ func (c *clientNative) runRaw(runtime runtime.Runtime, sb strings.Builder, backe
106102
if len(result[i]) > 5 {
107103
switch result[i][1:5] {
108104
case "[3]:", "[2]:", "[1]:", "[0]:":
109-
logger.Errorf("[RUNTIME] [BACKEND] [SOCKET] backend %s: Error: '%s', server slots adjustment ?", backendName, result[i])
105+
logger.Errorf("[RUNTIME] [BACKEND] [SOCKET] backend %s', server slots adjustment ?", backendName)
106+
logger.Tracef("[RUNTIME] [BACKEND] [SOCKET] backend %s: Error: '%s', server slots adjustment ?", backendName, result[i])
110107
return errors.New("runtime update failed for " + backendName)
111108
}
112109
}

‎pkg/haproxy/maps/main.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ var logger = utils.GetLogger()
5050

5151
var mapDir string
5252

53-
// bufsize is the default value of HAproxy tune.bufsize.
54-
// Map payload cannot be bigger than tune.bufsize
55-
const bufSize = 16000
56-
5753
type mapFile struct {
5854
rows []string
5955
hash uint64
@@ -69,7 +65,7 @@ func (mf *mapFile) getContent() (result []string, hash uint64) {
6965
sort.Strings(mf.rows)
7066
h := fnv.New64a()
7167
for _, r := range mf.rows {
72-
if chunk.Len()+len(r) >= bufSize {
68+
if chunk.Len()+len(r) >= api.BufferSize {
7369
result = append(result, chunk.String())
7470
chunk.Reset()
7571
}

0 commit comments

Comments
 (0)
Please sign in to comment.