2018-01-09 18:57:14 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 2017 gRPC 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 roundrobin defines a roundrobin balancer. Roundrobin balancer is
|
|
|
|
// installed as one of the default balancers in gRPC, users don't need to
|
|
|
|
// explicitly install this balancer.
|
|
|
|
package roundrobin
|
|
|
|
|
|
|
|
import (
|
2025-03-07 16:07:23 +00:00
|
|
|
"fmt"
|
2018-01-09 18:57:14 +00:00
|
|
|
|
|
|
|
"google.golang.org/grpc/balancer"
|
2025-03-07 16:07:23 +00:00
|
|
|
"google.golang.org/grpc/balancer/endpointsharding"
|
|
|
|
"google.golang.org/grpc/balancer/pickfirst/pickfirstleaf"
|
2018-01-09 18:57:14 +00:00
|
|
|
"google.golang.org/grpc/grpclog"
|
2025-03-07 16:07:23 +00:00
|
|
|
internalgrpclog "google.golang.org/grpc/internal/grpclog"
|
2018-01-09 18:57:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Name is the name of round_robin balancer.
|
|
|
|
const Name = "round_robin"
|
|
|
|
|
2021-02-10 06:51:30 +00:00
|
|
|
var logger = grpclog.Component("roundrobin")
|
|
|
|
|
2018-01-09 18:57:14 +00:00
|
|
|
func init() {
|
2025-03-07 16:07:23 +00:00
|
|
|
balancer.Register(builder{})
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
2025-03-07 16:07:23 +00:00
|
|
|
type builder struct{}
|
2018-01-09 18:57:14 +00:00
|
|
|
|
2025-03-07 16:07:23 +00:00
|
|
|
func (bb builder) Name() string {
|
|
|
|
return Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb builder) Build(cc balancer.ClientConn, opts balancer.BuildOptions) balancer.Balancer {
|
|
|
|
childBuilder := balancer.Get(pickfirstleaf.Name).Build
|
|
|
|
bal := &rrBalancer{
|
|
|
|
cc: cc,
|
|
|
|
Balancer: endpointsharding.NewBalancer(cc, opts, childBuilder, endpointsharding.Options{}),
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
2025-03-07 16:07:23 +00:00
|
|
|
bal.logger = internalgrpclog.NewPrefixLogger(logger, fmt.Sprintf("[%p] ", bal))
|
|
|
|
bal.logger.Infof("Created")
|
|
|
|
return bal
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
2025-03-07 16:07:23 +00:00
|
|
|
type rrBalancer struct {
|
|
|
|
balancer.Balancer
|
|
|
|
cc balancer.ClientConn
|
|
|
|
logger *internalgrpclog.PrefixLogger
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|
|
|
|
|
2025-03-07 16:07:23 +00:00
|
|
|
func (b *rrBalancer) UpdateClientConnState(ccs balancer.ClientConnState) error {
|
|
|
|
return b.Balancer.UpdateClientConnState(balancer.ClientConnState{
|
|
|
|
// Enable the health listener in pickfirst children for client side health
|
|
|
|
// checks and outlier detection, if configured.
|
|
|
|
ResolverState: pickfirstleaf.EnableHealthListener(ccs.ResolverState),
|
|
|
|
})
|
|
|
|
}
|
2022-11-08 08:23:05 +00:00
|
|
|
|
2025-03-07 16:07:23 +00:00
|
|
|
func (b *rrBalancer) ExitIdle() {
|
|
|
|
// Should always be ok, as child is endpoint sharding.
|
|
|
|
if ei, ok := b.Balancer.(balancer.ExitIdler); ok {
|
|
|
|
ei.ExitIdle()
|
|
|
|
}
|
2018-01-09 18:57:14 +00:00
|
|
|
}
|