-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a basic connection balancer package
Signed-off-by: R.I.Pienaar <[email protected]>
- Loading branch information
Showing
5 changed files
with
660 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,370 @@ | ||
// Copyright 2024 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package connbalancer | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"sync" | ||
"time" | ||
|
||
"github.com/nats-io/nats-server/v2/server" | ||
"github.com/nats-io/nats.go" | ||
) | ||
|
||
type ConnectionSelector struct { | ||
ServerName string | ||
Idle time.Duration | ||
Account string | ||
SubjectInterest string | ||
Kind []string | ||
} | ||
|
||
type Balancer interface { | ||
Balance(ctx context.Context) (balanced int, err error) | ||
} | ||
|
||
type balancer struct { | ||
nc *nats.Conn | ||
duration time.Duration | ||
limits *ConnectionSelector | ||
log Logger | ||
} | ||
|
||
type conn struct { | ||
serverId string | ||
serverName string | ||
conn *server.ConnInfo | ||
} | ||
|
||
func New(nc *nats.Conn, runTime time.Duration, log Logger, connections ConnectionSelector) (Balancer, error) { | ||
if connections.SubjectInterest != "" && connections.Account == "" { | ||
return nil, fmt.Errorf("can only filter by subject if account is given") | ||
} | ||
|
||
return &balancer{ | ||
nc: nc, | ||
duration: runTime, | ||
limits: &connections, | ||
log: log, | ||
}, nil | ||
} | ||
|
||
// TODO: remove after go 1.21 | ||
func index[S ~[]E, E comparable](s S, v E) int { | ||
for i := range s { | ||
if v == s[i] { | ||
return i | ||
} | ||
} | ||
return -1 | ||
} | ||
|
||
// TODO: remove after go 1.21 for slices.Contains() | ||
func contains[S ~[]E, E comparable](s S, v E) bool { | ||
return index(s, v) >= 0 | ||
} | ||
|
||
func (c *balancer) Balance(ctx context.Context) (int, error) { | ||
connz, err := c.getConnz(ctx) | ||
if err != nil { | ||
return 0, err | ||
} | ||
|
||
c.log.Debug("Had %d connz responses", len(connz)) | ||
|
||
matched, err := c.pickConnections(connz) | ||
if err != nil { | ||
return 0, err | ||
} | ||
|
||
c.log.Debug("Matched %d connections", len(matched)) | ||
|
||
if len(matched) == 0 { | ||
return 0, nil | ||
} | ||
|
||
var sleep = c.duration / time.Duration(len(matched)) | ||
var success int | ||
|
||
c.log.Info("Balancing %d connections with %v sleep between each balance request", len(matched), sleep) | ||
|
||
for i, m := range matched { | ||
cid, err := c.nc.GetClientID() | ||
if err != nil { | ||
c.log.Error("Could not exclude self from kicks: %v", err) | ||
continue | ||
} | ||
|
||
if m.serverId == c.nc.ConnectedServerId() && m.conn.Cid == cid { | ||
c.log.Debug("Not kicking own connection") | ||
continue | ||
} | ||
|
||
res, err := c.reqMany(ctx, fmt.Sprintf("$SYS.REQ.SERVER.%s.KICK", m.serverId), &server.KickClientReq{CID: m.conn.Cid}, 1) | ||
if err != nil { | ||
c.log.Error("Could not kick %d on %s: %v", m.conn.Cid, m.serverId, err) | ||
continue | ||
} | ||
|
||
if len(res) != 1 { | ||
c.log.Error("Could not kick %d on %s: expected 1 response but had %d", m.conn.Cid, m.serverId, len(res)) | ||
continue | ||
} | ||
|
||
var resp server.ServerAPIResponse | ||
err = json.Unmarshal(res[0].Data, &resp) | ||
if err != nil { | ||
c.log.Error("Could not kick %d on %s: invalid server response: %v", m.conn.Cid, m.serverId, err) | ||
continue | ||
} | ||
|
||
if resp.Error != nil { | ||
c.log.Error("Could not kick %d on %s: invalid server response: %v", m.conn.Cid, m.serverId, resp.Error.Description) | ||
continue | ||
} | ||
|
||
name := m.conn.Name | ||
if name != "" { | ||
name = fmt.Sprintf(" (%s)", name) | ||
} | ||
|
||
if m.conn.Account != "" { | ||
c.log.Info("Balanced client %d%s in account %s on %s", m.conn.Cid, name, m.conn.Account, m.serverName) | ||
} else { | ||
c.log.Info("Balanced client %d%s on %s", m.conn.Cid, name, m.serverName) | ||
} | ||
|
||
success++ | ||
|
||
if i != len(matched)-1 { | ||
timer := time.NewTimer(sleep) | ||
c.log.Debug("Sleeping for %v", sleep) | ||
select { | ||
case <-timer.C: | ||
case <-ctx.Done(): | ||
break | ||
} | ||
} | ||
} | ||
|
||
return success, nil | ||
} | ||
|
||
func (c *balancer) pickConnections(connz []*server.ServerAPIConnzResponse) ([]*conn, error) { | ||
var result []*conn | ||
|
||
for _, resp := range connz { | ||
if resp.Data == nil { | ||
continue | ||
} | ||
|
||
for _, client := range resp.Data.Conns { | ||
isIdleMatch := c.limits.Idle == 0 || time.Since(client.LastActivity) > c.limits.Idle | ||
kindMatch := len(c.limits.Kind) == 0 || contains(c.limits.Kind, client.Kind) | ||
|
||
// others were handled in the connz request already | ||
if isIdleMatch && kindMatch { | ||
result = append(result, &conn{ | ||
serverId: resp.Server.ID, | ||
serverName: resp.Server.Name, | ||
conn: client, | ||
}) | ||
} | ||
} | ||
} | ||
|
||
return result, nil | ||
} | ||
|
||
func (c *balancer) getConnz(ctx context.Context) ([]*server.ServerAPIConnzResponse, error) { | ||
var ( | ||
results []*server.ServerAPIConnzResponse | ||
nextOffset int | ||
err error | ||
) | ||
|
||
for { | ||
var z []*server.ServerAPIConnzResponse | ||
|
||
nextOffset, z, err = c.getConnzWithOffset(ctx, nextOffset) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
results = append(results, z...) | ||
|
||
if nextOffset == 0 { | ||
break | ||
} | ||
|
||
c.log.Info("Gathering paged connection information") | ||
} | ||
|
||
return results, nil | ||
} | ||
|
||
func (c *balancer) getConnzWithOffset(ctx context.Context, offset int) (nextOffset int, results []*server.ServerAPIConnzResponse, err error) { | ||
req := &server.ConnzEventOptions{ | ||
ConnzOptions: server.ConnzOptions{ | ||
Account: c.limits.Account, | ||
FilterSubject: c.limits.SubjectInterest, | ||
Offset: offset, | ||
}, | ||
EventFilterOptions: server.EventFilterOptions{ | ||
Name: c.limits.ServerName, | ||
}, | ||
} | ||
|
||
connz, err := c.reqMany(ctx, "$SYS.REQ.SERVER.PING.CONNZ", req, 0) | ||
if err != nil { | ||
return 0, nil, err | ||
} | ||
|
||
for _, msg := range connz { | ||
z, err := c.parseConnzMsg(msg) | ||
if err != nil { | ||
return 0, nil, err | ||
} | ||
|
||
if z.Data.Offset+z.Data.Limit < z.Data.Limit { | ||
if z.Data.Offset+z.Data.Limit+1 > nextOffset { | ||
nextOffset = z.Data.Offset + z.Data.Limit + 1 | ||
} | ||
} | ||
|
||
results = append(results, z) | ||
} | ||
|
||
return nextOffset, results, nil | ||
} | ||
|
||
func (c *balancer) parseConnzMsg(msg *nats.Msg) (*server.ServerAPIConnzResponse, error) { | ||
reqresp := server.ServerAPIConnzResponse{} | ||
|
||
err := json.Unmarshal(msg.Data, &reqresp) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if reqresp.Error != nil { | ||
return nil, fmt.Errorf("invalid response received: %v", reqresp.Error) | ||
} | ||
|
||
if reqresp.Data == nil { | ||
return nil, fmt.Errorf("no data received in response: %s", string(msg.Data)) | ||
} | ||
|
||
return &reqresp, nil | ||
} | ||
|
||
func (c *balancer) reqMany(ctx context.Context, subj string, req any, expect int) ([]*nats.Msg, error) { | ||
jreq := []byte("{}") | ||
var err error | ||
|
||
if req != nil { | ||
switch val := req.(type) { | ||
case string: | ||
jreq = []byte(val) | ||
default: | ||
jreq, err = json.Marshal(req) | ||
if err != nil { | ||
return nil, err | ||
} | ||
} | ||
} | ||
|
||
c.log.Trace(">>> %s: %s", subj, string(jreq)) | ||
|
||
var ( | ||
mu sync.Mutex | ||
ctr int | ||
finisher *time.Timer | ||
errs = make(chan error) | ||
sub *nats.Subscription | ||
res []*nats.Msg | ||
) | ||
|
||
to, cancel := context.WithTimeout(ctx, 2*time.Second) | ||
defer cancel() | ||
|
||
if expect == 0 { | ||
finisher = time.NewTimer(2 * time.Second) | ||
go func(ctx context.Context, cancel context.CancelFunc, finisher *time.Timer) { | ||
select { | ||
case <-finisher.C: | ||
cancel() | ||
case <-ctx.Done(): | ||
return | ||
} | ||
}(to, cancel, finisher) | ||
} | ||
|
||
sub, err = c.nc.Subscribe(c.nc.NewRespInbox(), func(m *nats.Msg) { | ||
mu.Lock() | ||
defer mu.Unlock() | ||
|
||
c.log.Trace("<<< (%dB) %s", len(m.Data), string(m.Data)) | ||
if finisher != nil { | ||
finisher.Reset(300 * time.Millisecond) | ||
} | ||
|
||
if m.Header.Get("Status") == "503" { | ||
errs <- nats.ErrNoResponders | ||
return | ||
} | ||
|
||
res = append(res, m) | ||
ctr++ | ||
|
||
if expect > 0 && ctr == expect { | ||
cancel() | ||
} | ||
}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if expect > 0 { | ||
sub.AutoUnsubscribe(expect) | ||
} | ||
|
||
msg := nats.NewMsg(subj) | ||
msg.Reply = sub.Subject | ||
msg.Data = jreq | ||
|
||
err = c.nc.PublishMsg(msg) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
select { | ||
case err = <-errs: | ||
if errors.Is(err, nats.ErrNoResponders) { | ||
return nil, fmt.Errorf("server request failed, ensure the account used has system privileges and appropriate permissions") | ||
} | ||
|
||
return nil, err | ||
case <-to.Done(): | ||
sub.Unsubscribe() | ||
} | ||
|
||
mu.Lock() | ||
c.log.Debug("=== Received %d responses", ctr) | ||
mu.Unlock() | ||
|
||
return res, nil | ||
} |
Oops, something went wrong.