cdsbalancer: improve log messages (#6134)

This commit is contained in:
Easwar Swaminathan 2023-03-22 09:19:57 -07:00 committed by GitHub
parent a02aae6168
commit 9c25653be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 13 deletions

View File

@ -48,7 +48,7 @@ const (
) )
var ( var (
errBalancerClosed = errors.New("cdsBalancer is closed") errBalancerClosed = errors.New("cds_experimental LB policy is closed")
// newChildBalancer is a helper function to build a new cluster_resolver // newChildBalancer is a helper function to build a new cluster_resolver
// balancer and will be overridden in unittests. // balancer and will be overridden in unittests.
@ -327,7 +327,7 @@ func (b *cdsBalancer) handleWatchUpdate(update clusterHandlerUpdate) {
return return
} }
b.logger.Infof("Watch update from xds-client %p, content: %+v, security config: %v", b.xdsClient, pretty.ToJSON(update.updates), pretty.ToJSON(update.securityCfg)) b.logger.Infof("Received Cluster resource contains content: %s, security config: %s", pretty.ToJSON(update.updates), pretty.ToJSON(update.securityCfg))
// Process the security config from the received update before building the // Process the security config from the received update before building the
// child policy or forwarding the update to it. We do this because the child // child policy or forwarding the update to it. We do this because the child
@ -338,7 +338,7 @@ func (b *cdsBalancer) handleWatchUpdate(update clusterHandlerUpdate) {
// If the security config is invalid, for example, if the provider // If the security config is invalid, for example, if the provider
// instance is not found in the bootstrap config, we need to put the // instance is not found in the bootstrap config, we need to put the
// channel in transient failure. // channel in transient failure.
b.logger.Warningf("Invalid security config update from xds-client %p: %v", b.xdsClient, err) b.logger.Warningf("Received Cluster resource contains invalid security config: %v", err)
b.handleErrorFromUpdate(err, false) b.handleErrorFromUpdate(err, false)
return return
} }
@ -388,7 +388,7 @@ func (b *cdsBalancer) handleWatchUpdate(update clusterHandlerUpdate) {
DNSHostname: cu.DNSHostName, DNSHostname: cu.DNSHostName,
} }
default: default:
b.logger.Infof("unexpected cluster type %v when handling update from cluster handler", cu.ClusterType) b.logger.Infof("Unexpected cluster type %v when handling update from cluster handler", cu.ClusterType)
} }
if envconfig.XDSOutlierDetection { if envconfig.XDSOutlierDetection {
dms[i].OutlierDetection = outlierDetectionToConfig(cu.OutlierDetection) dms[i].OutlierDetection = outlierDetectionToConfig(cu.OutlierDetection)
@ -416,7 +416,7 @@ func (b *cdsBalancer) handleWatchUpdate(update clusterHandlerUpdate) {
BalancerConfig: lbCfg, BalancerConfig: lbCfg,
} }
if err := b.childLB.UpdateClientConnState(ccState); err != nil { if err := b.childLB.UpdateClientConnState(ccState); err != nil {
b.logger.Errorf("xds: cluster_resolver balancer.UpdateClientConnState(%+v) returned error: %v", ccState, err) b.logger.Errorf("Encountered error when sending config {%+v} to child policy: %v", ccState, err)
} }
} }
@ -435,13 +435,13 @@ func (b *cdsBalancer) run() {
// SubConn updates are passthrough and are simply handed over to // SubConn updates are passthrough and are simply handed over to
// the underlying cluster_resolver balancer. // the underlying cluster_resolver balancer.
if b.childLB == nil { if b.childLB == nil {
b.logger.Errorf("xds: received scUpdate {%+v} with no cluster_resolver balancer", update) b.logger.Errorf("Received SubConn update with no child policy: %+v", update)
break break
} }
b.childLB.UpdateSubConnState(update.subConn, update.state) b.childLB.UpdateSubConnState(update.subConn, update.state)
case exitIdle: case exitIdle:
if b.childLB == nil { if b.childLB == nil {
b.logger.Errorf("xds: received ExitIdle with no child balancer") b.logger.Errorf("Received ExitIdle with no child policy")
break break
} }
// This implementation assumes the child balancer supports // This implementation assumes the child balancer supports
@ -515,7 +515,7 @@ func (b *cdsBalancer) handleErrorFromUpdate(err error, fromParent bool) {
// xdsResolver. // xdsResolver.
func (b *cdsBalancer) UpdateClientConnState(state balancer.ClientConnState) error { func (b *cdsBalancer) UpdateClientConnState(state balancer.ClientConnState) error {
if b.closed.HasFired() { if b.closed.HasFired() {
b.logger.Warningf("xds: received ClientConnState {%+v} after cdsBalancer was closed", state) b.logger.Errorf("Received balancer config after close")
return errBalancerClosed return errBalancerClosed
} }
@ -526,18 +526,18 @@ func (b *cdsBalancer) UpdateClientConnState(state balancer.ClientConnState) erro
} }
b.xdsClient = c b.xdsClient = c
} }
b.logger.Infof("Received balancer config update: %s", pretty.ToJSON(state.BalancerConfig))
b.logger.Infof("Received update from resolver, balancer config: %+v", pretty.ToJSON(state.BalancerConfig))
// The errors checked here should ideally never happen because the // The errors checked here should ideally never happen because the
// ServiceConfig in this case is prepared by the xdsResolver and is not // ServiceConfig in this case is prepared by the xdsResolver and is not
// something that is received on the wire. // something that is received on the wire.
lbCfg, ok := state.BalancerConfig.(*lbConfig) lbCfg, ok := state.BalancerConfig.(*lbConfig)
if !ok { if !ok {
b.logger.Warningf("xds: unexpected LoadBalancingConfig type: %T", state.BalancerConfig) b.logger.Warningf("Received unexpected balancer config type: %T", state.BalancerConfig)
return balancer.ErrBadResolverState return balancer.ErrBadResolverState
} }
if lbCfg.ClusterName == "" { if lbCfg.ClusterName == "" {
b.logger.Warningf("xds: no clusterName found in LoadBalancingConfig: %+v", lbCfg) b.logger.Warningf("Received balancer config with no cluster name")
return balancer.ErrBadResolverState return balancer.ErrBadResolverState
} }
b.updateCh.Put(&ccUpdate{clusterName: lbCfg.ClusterName}) b.updateCh.Put(&ccUpdate{clusterName: lbCfg.ClusterName})
@ -547,7 +547,7 @@ func (b *cdsBalancer) UpdateClientConnState(state balancer.ClientConnState) erro
// ResolverError handles errors reported by the xdsResolver. // ResolverError handles errors reported by the xdsResolver.
func (b *cdsBalancer) ResolverError(err error) { func (b *cdsBalancer) ResolverError(err error) {
if b.closed.HasFired() { if b.closed.HasFired() {
b.logger.Warningf("xds: received resolver error {%v} after cdsBalancer was closed", err) b.logger.Warningf("Received resolver error after close: %v", err)
return return
} }
b.updateCh.Put(&ccUpdate{err: err}) b.updateCh.Put(&ccUpdate{err: err})
@ -556,7 +556,7 @@ func (b *cdsBalancer) ResolverError(err error) {
// UpdateSubConnState handles subConn updates from gRPC. // UpdateSubConnState handles subConn updates from gRPC.
func (b *cdsBalancer) UpdateSubConnState(sc balancer.SubConn, state balancer.SubConnState) { func (b *cdsBalancer) UpdateSubConnState(sc balancer.SubConn, state balancer.SubConnState) {
if b.closed.HasFired() { if b.closed.HasFired() {
b.logger.Warningf("xds: received subConn update {%v, %v} after cdsBalancer was closed", sc, state) b.logger.Warningf("Received subConn update after close: {%v, %v}", sc, state)
return return
} }
b.updateCh.Put(&scUpdate{subConn: sc, state: state}) b.updateCh.Put(&scUpdate{subConn: sc, state: state})

View File

@ -692,6 +692,8 @@ func (s) TestCircuitBreaking(t *testing.T) {
// TestClose verifies the Close() method in the CDS balancer. // TestClose verifies the Close() method in the CDS balancer.
func (s) TestClose(t *testing.T) { func (s) TestClose(t *testing.T) {
grpctest.TLogger.ExpectError("cds-lb.*Received balancer config after close")
// This creates a CDS balancer, pushes a ClientConnState update with a fake // This creates a CDS balancer, pushes a ClientConnState update with a fake
// xdsClient, and makes sure that the CDS balancer registers a watch on the // xdsClient, and makes sure that the CDS balancer registers a watch on the
// provided xdsClient. // provided xdsClient.