func(s*DiscoveryServer)Stream(streamDiscoveryStream)error{......iferr:=s.WaitForRequestLimit(stream.Context());err!=nil{log.Warnf("ADS: %q exceeded rate limit: %v",peerAddr,err)returnstatus.Errorf(codes.ResourceExhausted,"request rate limit exceeded: %v",err)}......}func(s*DiscoveryServer)WaitForRequestLimit(ctxcontext.Context)error{ifs.RequestRateLimit.Limit()==0{// Allow opt out when rate limiting is set to 0qps
returnnil}// Give a bit of time for queue to clear out, but if not fail fast. Client will connect to another
// instance in best case, or retry with backoff.
wait,cancel:=context.WithTimeout(ctx,time.Second)defercancel()returns.RequestRateLimit.Wait(wait)}
当控制面 pod 重建的时候,会触发数据面对控制面的重连,当数据面比较多时,istiod的日志中就会出现上图所示的报错。
RequestLimit=env.Register("PILOT_MAX_REQUESTS_PER_SECOND",25.0,"Limits the number of incoming XDS requests per second. On larger machines this can be increased to handle more proxies concurrently.",).Get()