diff --git a/pkg/distributor/distributor_test.go b/pkg/distributor/distributor_test.go index b9b6a648c66..1e75ebc93d5 100644 --- a/pkg/distributor/distributor_test.go +++ b/pkg/distributor/distributor_test.go @@ -20,7 +20,6 @@ import ( "testing" "time" - "github.com/failsafe-go/failsafe-go/circuitbreaker" "github.com/go-kit/log" "github.com/gogo/status" "github.com/grafana/dskit/flagext" @@ -1056,8 +1055,7 @@ func TestDistributor_PushWithCircuitBreakers(t *testing.T) { ctx := user.InjectOrgID(context.Background(), "user") err := ds[0].push(ctx, NewParsedRequest(makeWriteRequest(123456789000, 10, 0, false, true, "foo"))) require.Error(t, err) - require.ErrorIs(t, err, circuitbreaker.ErrOpen) - require.ErrorAs(t, err, &client.ErrCircuitBreakerOpen{}) + require.ErrorAs(t, err, &circuitBreakerOpenError{}) } func TestDistributor_PushQuery(t *testing.T) { diff --git a/pkg/distributor/errors.go b/pkg/distributor/errors.go index ca60ff98c0b..68c48a1a0ca 100644 --- a/pkg/distributor/errors.go +++ b/pkg/distributor/errors.go @@ -4,6 +4,7 @@ package distributor import ( "fmt" + "time" "github.com/gogo/status" "github.com/grafana/dskit/grpcutil" @@ -196,6 +197,30 @@ func (e ingesterPushError) errorCause() mimirpb.ErrorCause { // Ensure that ingesterPushError implements distributorError. var _ distributorError = ingesterPushError{} +type circuitBreakerOpenError struct { + err client.ErrCircuitBreakerOpen +} + +// newCircuitBreakerOpenError creates a circuitBreakerOpenError wrapping the passed client.ErrCircuitBreakerOpen. +func newCircuitBreakerOpenError(err client.ErrCircuitBreakerOpen) circuitBreakerOpenError { + return circuitBreakerOpenError{err: err} +} + +func (e circuitBreakerOpenError) Error() string { + return e.err.Error() +} + +func (e circuitBreakerOpenError) RemainingDelay() time.Duration { + return e.err.RemainingDelay() +} + +func (e circuitBreakerOpenError) errorCause() mimirpb.ErrorCause { + return mimirpb.CIRCUIT_BREAKER_OPEN +} + +// Ensure that circuitBreakerOpenError implements distributorError. +var _ distributorError = circuitBreakerOpenError{} + // toGRPCError converts the given error into an appropriate gRPC error. func toGRPCError(pushErr error, serviceOverloadErrorEnabled bool) error { var ( @@ -220,9 +245,9 @@ func toGRPCError(pushErr error, serviceOverloadErrorEnabled bool) error { errCode = codes.AlreadyExists case mimirpb.TOO_MANY_CLUSTERS: errCode = codes.FailedPrecondition + case mimirpb.CIRCUIT_BREAKER_OPEN: + errCode = codes.Unavailable } - } else if errors.As(pushErr, &client.ErrCircuitBreakerOpen{}) { - errCode = codes.Unavailable } stat := status.New(errCode, pushErr.Error()) if errDetails != nil { @@ -241,7 +266,12 @@ func wrapIngesterPushError(err error, ingesterID string) error { stat, ok := grpcutil.ErrorToStatus(err) if !ok { - return errors.Wrap(err, fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)) + pushErr := err + var errCircuitBreakerOpen client.ErrCircuitBreakerOpen + if errors.As(pushErr, &errCircuitBreakerOpen) { + pushErr = newCircuitBreakerOpenError(errCircuitBreakerOpen) + } + return errors.Wrap(pushErr, fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)) } statusCode := stat.Code() if util.IsHTTPStatusCode(statusCode) { diff --git a/pkg/distributor/errors_test.go b/pkg/distributor/errors_test.go index 993bc58c6b9..061f734a72c 100644 --- a/pkg/distributor/errors_test.go +++ b/pkg/distributor/errors_test.go @@ -169,6 +169,27 @@ func TestNewIngesterPushError(t *testing.T) { } } +func TestNewCircuitBreakerOpenError(t *testing.T) { + errCircuitBreakerOpen := client.ErrCircuitBreakerOpen{} + + err := newCircuitBreakerOpenError(errCircuitBreakerOpen) + expectedErrorMsg := errCircuitBreakerOpen.Error() + assert.Error(t, err) + assert.EqualError(t, err, expectedErrorMsg) + checkDistributorError(t, err, mimirpb.CIRCUIT_BREAKER_OPEN) + + assert.NotErrorIs(t, err, errCircuitBreakerOpen) + assert.Equal(t, errCircuitBreakerOpen.RemainingDelay(), err.RemainingDelay()) + + assert.True(t, errors.As(err, &circuitBreakerOpenError{})) + assert.False(t, errors.As(err, &replicasDidNotMatchError{})) + + wrappedErr := fmt.Errorf("wrapped %w", err) + assert.ErrorIs(t, wrappedErr, err) + assert.True(t, errors.As(wrappedErr, &circuitBreakerOpenError{})) + checkDistributorError(t, wrappedErr, mimirpb.CIRCUIT_BREAKER_OPEN) +} + func TestToGRPCError(t *testing.T) { const ( ingesterID = "ingester-25" @@ -331,15 +352,17 @@ func TestToGRPCError(t *testing.T) { expectedErrorMsg: fmt.Sprintf("%s %s: %s", failedPushingToIngesterMessage, ingesterID, originalMsg), expectedErrorDetails: &mimirpb.ErrorDetails{Cause: mimirpb.UNKNOWN_CAUSE}, }, - "a client.ErrCircuitBreakerOpen error gets translated into an Unavailable error without details": { - err: client.ErrCircuitBreakerOpen{}, - expectedGRPCCode: codes.Unavailable, - expectedErrorMsg: circuitbreaker.ErrOpen.Error(), + "a circuitBreakerOpenError gets translated into an Unavailable error with CIRCUIT_BREAKER_OPEN cause": { + err: newCircuitBreakerOpenError(client.ErrCircuitBreakerOpen{}), + expectedGRPCCode: codes.Unavailable, + expectedErrorMsg: circuitbreaker.ErrOpen.Error(), + expectedErrorDetails: &mimirpb.ErrorDetails{Cause: mimirpb.CIRCUIT_BREAKER_OPEN}, }, - "a wrapped client.ErrCircuitBreakerOpen error gets translated into an Unavailable error without details": { - err: errors.Wrap(client.ErrCircuitBreakerOpen{}, fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)), - expectedGRPCCode: codes.Unavailable, - expectedErrorMsg: fmt.Sprintf("%s %s: %s", failedPushingToIngesterMessage, ingesterID, circuitbreaker.ErrOpen), + "a wrapped circuitBreakerOpenError gets translated into an Unavailable error witch CIRCUIT_BREAKER_OPEN cause": { + err: errors.Wrap(newCircuitBreakerOpenError(client.ErrCircuitBreakerOpen{}), fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)), + expectedGRPCCode: codes.Unavailable, + expectedErrorMsg: fmt.Sprintf("%s %s: %s", failedPushingToIngesterMessage, ingesterID, circuitbreaker.ErrOpen), + expectedErrorDetails: &mimirpb.ErrorDetails{Cause: mimirpb.CIRCUIT_BREAKER_OPEN}, }, } for name, tc := range testCases { @@ -377,12 +400,11 @@ func TestWrapIngesterPushError(t *testing.T) { }) // Ensure that client.ErrCircuitBreakerOpen error gets correctly wrapped. - t.Run("an ErrCircuitBreakerOpen error gives an ErrCircuitBreakerOpen error", func(t *testing.T) { + t.Run("an ErrCircuitBreakerOpen error gives an circuitBreakerOpenErr error", func(t *testing.T) { ingesterPushErr := client.ErrCircuitBreakerOpen{} err := wrapIngesterPushError(ingesterPushErr, ingesterID) require.Error(t, err) - require.ErrorIs(t, err, circuitbreaker.ErrOpen) - require.ErrorAs(t, err, &client.ErrCircuitBreakerOpen{}) + require.ErrorAs(t, err, &circuitBreakerOpenError{}) }) // Ensure that the errors created by httpgrpc get translated into diff --git a/pkg/distributor/push.go b/pkg/distributor/push.go index 69b5a1d965b..440ad1cb536 100644 --- a/pkg/distributor/push.go +++ b/pkg/distributor/push.go @@ -24,7 +24,6 @@ import ( "github.com/grafana/dskit/tenant" "github.com/opentracing/opentracing-go" - "github.com/grafana/mimir/pkg/ingester/client" "github.com/grafana/mimir/pkg/mimirpb" "github.com/grafana/mimir/pkg/util" "github.com/grafana/mimir/pkg/util/globalerror" @@ -227,9 +226,9 @@ func toHTTPStatus(ctx context.Context, pushErr error, limits *validation.Overrid return http.StatusBadRequest case mimirpb.TSDB_UNAVAILABLE: return http.StatusServiceUnavailable + case mimirpb.CIRCUIT_BREAKER_OPEN: + return http.StatusServiceUnavailable } - } else if errors.As(pushErr, &client.ErrCircuitBreakerOpen{}) { - return http.StatusServiceUnavailable } return http.StatusInternalServerError diff --git a/pkg/distributor/push_test.go b/pkg/distributor/push_test.go index 636406ccb52..43840faeaa8 100644 --- a/pkg/distributor/push_test.go +++ b/pkg/distributor/push_test.go @@ -1136,13 +1136,13 @@ func TestHandler_ToHTTPStatus(t *testing.T) { expectedHTTPStatus: http.StatusInternalServerError, expectedErrorMsg: fmt.Sprintf("%s %s: %s", failedPushingToIngesterMessage, ingesterID, context.DeadlineExceeded), }, - "a client.ErrCircuitBreakerOpen error gets translated into an HTTP 503": { - err: client.ErrCircuitBreakerOpen{}, + "a circuitBreakerOpenError gets translated into an HTTP 503": { + err: newCircuitBreakerOpenError(client.ErrCircuitBreakerOpen{}), expectedHTTPStatus: http.StatusServiceUnavailable, expectedErrorMsg: circuitbreaker.ErrOpen.Error(), }, - "a wrapped client.ErrCircuitBreakerOpen error gets translated into an HTTP 503": { - err: errors.Wrap(client.ErrCircuitBreakerOpen{}, fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)), + "a wrapped circuitBreakerOpenError gets translated into an HTTP 503": { + err: errors.Wrap(newCircuitBreakerOpenError(client.ErrCircuitBreakerOpen{}), fmt.Sprintf("%s %s", failedPushingToIngesterMessage, ingesterID)), expectedHTTPStatus: http.StatusServiceUnavailable, expectedErrorMsg: fmt.Sprintf("%s %s: %s", failedPushingToIngesterMessage, ingesterID, circuitbreaker.ErrOpen), }, diff --git a/pkg/mimirpb/mimir.pb.go b/pkg/mimirpb/mimir.pb.go index 4eba2ddb262..be4b6b96785 100644 --- a/pkg/mimirpb/mimir.pb.go +++ b/pkg/mimirpb/mimir.pb.go @@ -42,19 +42,21 @@ const ( SERVICE_UNAVAILABLE ErrorCause = 7 TSDB_UNAVAILABLE ErrorCause = 8 TOO_BUSY ErrorCause = 9 + CIRCUIT_BREAKER_OPEN ErrorCause = 10 ) var ErrorCause_name = map[int32]string{ - 0: "UNKNOWN_CAUSE", - 1: "REPLICAS_DID_NOT_MATCH", - 2: "TOO_MANY_CLUSTERS", - 3: "BAD_DATA", - 4: "INGESTION_RATE_LIMITED", - 5: "REQUEST_RATE_LIMITED", - 6: "INSTANCE_LIMIT", - 7: "SERVICE_UNAVAILABLE", - 8: "TSDB_UNAVAILABLE", - 9: "TOO_BUSY", + 0: "UNKNOWN_CAUSE", + 1: "REPLICAS_DID_NOT_MATCH", + 2: "TOO_MANY_CLUSTERS", + 3: "BAD_DATA", + 4: "INGESTION_RATE_LIMITED", + 5: "REQUEST_RATE_LIMITED", + 6: "INSTANCE_LIMIT", + 7: "SERVICE_UNAVAILABLE", + 8: "TSDB_UNAVAILABLE", + 9: "TOO_BUSY", + 10: "CIRCUIT_BREAKER_OPEN", } var ErrorCause_value = map[string]int32{ @@ -68,6 +70,7 @@ var ErrorCause_value = map[string]int32{ "SERVICE_UNAVAILABLE": 7, "TSDB_UNAVAILABLE": 8, "TOO_BUSY": 9, + "CIRCUIT_BREAKER_OPEN": 10, } func (ErrorCause) EnumDescriptor() ([]byte, []int) { @@ -1885,129 +1888,130 @@ func init() { func init() { proto.RegisterFile("mimir.proto", fileDescriptor_86d4d7485f544059) } var fileDescriptor_86d4d7485f544059 = []byte{ - // 1939 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcf, 0x6f, 0xdb, 0xd8, - 0x11, 0x16, 0x25, 0xea, 0x07, 0xc7, 0x92, 0xcd, 0xbc, 0xb8, 0x59, 0xad, 0xb1, 0x91, 0x1d, 0x16, - 0xdd, 0xba, 0x41, 0xeb, 0x14, 0xbb, 0x6d, 0x16, 0x1b, 0xa4, 0x68, 0x29, 0x89, 0x89, 0xe5, 0xb5, - 0x24, 0xef, 0x23, 0x95, 0x6d, 0x7a, 0x21, 0x68, 0xf9, 0xd9, 0x26, 0x56, 0x14, 0x55, 0x92, 0xca, - 0xc6, 0x3d, 0xf5, 0xd2, 0xa2, 0xe8, 0xa9, 0x97, 0x5e, 0x8a, 0xde, 0x7a, 0xe9, 0x5f, 0xd0, 0x7f, - 0xa0, 0x97, 0x00, 0x45, 0x81, 0x1c, 0x17, 0x3d, 0x04, 0x8d, 0x73, 0xe8, 0x1e, 0xf7, 0xd0, 0x53, - 0x4f, 0xc5, 0x9b, 0xc7, 0x1f, 0xa2, 0x6c, 0xb7, 0x69, 0x37, 0x37, 0xce, 0xcc, 0xf7, 0x86, 0x1f, - 0xe7, 0x7d, 0xf3, 0x38, 0x24, 0xac, 0x78, 0xae, 0xe7, 0x06, 0x3b, 0xb3, 0xc0, 0x8f, 0x7c, 0x52, - 0x1b, 0xfb, 0x41, 0xc4, 0x9e, 0xce, 0x0e, 0x37, 0xbe, 0x73, 0xe2, 0x46, 0xa7, 0xf3, 0xc3, 0x9d, - 0xb1, 0xef, 0xdd, 0x39, 0xf1, 0x4f, 0xfc, 0x3b, 0x08, 0x38, 0x9c, 0x1f, 0xa3, 0x85, 0x06, 0x5e, - 0x89, 0x85, 0xda, 0x9f, 0x8a, 0x50, 0xff, 0x24, 0x70, 0x23, 0x46, 0xd9, 0x4f, 0xe7, 0x2c, 0x8c, - 0xc8, 0x01, 0x40, 0xe4, 0x7a, 0x2c, 0x64, 0x81, 0xcb, 0xc2, 0xa6, 0xb4, 0x55, 0xda, 0x5e, 0x79, - 0x6f, 0x7d, 0x27, 0x49, 0xbf, 0x63, 0xb9, 0x1e, 0x33, 0x31, 0xd6, 0xde, 0x78, 0xf6, 0x62, 0xb3, - 0xf0, 0xb7, 0x17, 0x9b, 0xe4, 0x20, 0x60, 0xce, 0x64, 0xe2, 0x8f, 0xad, 0x74, 0x1d, 0x5d, 0xc8, - 0x41, 0x3e, 0x84, 0x8a, 0xe9, 0xcf, 0x83, 0x31, 0x6b, 0x16, 0xb7, 0xa4, 0xed, 0xd5, 0xf7, 0x6e, - 0x65, 0xd9, 0x16, 0xef, 0xbc, 0x23, 0x40, 0xc6, 0x74, 0xee, 0xd1, 0x78, 0x01, 0xb9, 0x07, 0x35, - 0x8f, 0x45, 0xce, 0x91, 0x13, 0x39, 0xcd, 0x12, 0x52, 0x69, 0x66, 0x8b, 0xfb, 0x2c, 0x0a, 0xdc, - 0x71, 0x3f, 0x8e, 0xb7, 0xe5, 0x67, 0x2f, 0x36, 0x25, 0x9a, 0xe2, 0xc9, 0x7d, 0xd8, 0x08, 0x3f, - 0x75, 0x67, 0xf6, 0xc4, 0x39, 0x64, 0x13, 0x7b, 0xea, 0x78, 0xcc, 0x7e, 0xe2, 0x4c, 0xdc, 0x23, - 0x27, 0x72, 0xfd, 0x69, 0xf3, 0x8b, 0xea, 0x96, 0xb4, 0x5d, 0xa3, 0x6f, 0x71, 0xc8, 0x3e, 0x47, - 0x0c, 0x1c, 0x8f, 0x3d, 0x4a, 0xe3, 0xda, 0x26, 0x40, 0xc6, 0x87, 0x54, 0xa1, 0xa4, 0x1f, 0xf4, - 0xd4, 0x02, 0xa9, 0x81, 0x4c, 0x47, 0xfb, 0x86, 0x2a, 0x69, 0x6b, 0xd0, 0x88, 0xd9, 0x87, 0x33, - 0x7f, 0x1a, 0x32, 0xed, 0x1e, 0xd4, 0x8d, 0x20, 0xf0, 0x83, 0x2e, 0x8b, 0x1c, 0x77, 0x12, 0x92, - 0xdb, 0x50, 0xee, 0x38, 0xf3, 0x90, 0x35, 0x25, 0x7c, 0xea, 0x85, 0x1a, 0x22, 0x0c, 0x63, 0x54, - 0x40, 0xb4, 0x7f, 0x4a, 0x00, 0x59, 0x65, 0x89, 0x0e, 0x15, 0x64, 0x9d, 0xd4, 0xff, 0x7a, 0xb6, - 0x16, 0xb9, 0x1e, 0x38, 0x6e, 0xd0, 0x5e, 0x8f, 0xcb, 0x5f, 0x47, 0x97, 0x7e, 0xe4, 0xcc, 0x22, - 0x16, 0xd0, 0x78, 0x21, 0xf9, 0x2e, 0x54, 0x43, 0xc7, 0x9b, 0x4d, 0x58, 0xd8, 0x2c, 0x62, 0x0e, - 0x35, 0xcb, 0x61, 0x62, 0x00, 0x0b, 0x56, 0xa0, 0x09, 0x8c, 0xdc, 0x05, 0x85, 0x3d, 0x65, 0xde, - 0x6c, 0xe2, 0x04, 0x61, 0x5c, 0x6c, 0xb2, 0xc0, 0x39, 0x0e, 0xc5, 0xab, 0x32, 0x28, 0xf9, 0x10, - 0xe0, 0xd4, 0x0d, 0x23, 0xff, 0x24, 0x70, 0xbc, 0xb0, 0x29, 0x2f, 0x13, 0xde, 0x4d, 0x62, 0xf1, - 0xca, 0x05, 0xb0, 0xf6, 0x7d, 0x50, 0xd2, 0xe7, 0x21, 0x04, 0x64, 0xbe, 0x49, 0x58, 0xae, 0x3a, - 0xc5, 0x6b, 0xb2, 0x0e, 0xe5, 0x27, 0xce, 0x64, 0x2e, 0x94, 0x53, 0xa7, 0xc2, 0xd0, 0x74, 0xa8, - 0x88, 0x47, 0x20, 0xb7, 0xa0, 0x8e, 0x42, 0x8b, 0x1c, 0x6f, 0x66, 0x7b, 0x21, 0xc2, 0x4a, 0x74, - 0x25, 0xf5, 0xf5, 0xc3, 0x2c, 0x05, 0xcf, 0x2b, 0x25, 0x29, 0x7e, 0x57, 0x84, 0xd5, 0xbc, 0x7e, - 0xc8, 0x07, 0x20, 0x47, 0x67, 0xb3, 0x64, 0xbb, 0xbe, 0x7e, 0x95, 0xce, 0x62, 0xd3, 0x3a, 0x9b, - 0x31, 0x8a, 0x0b, 0xc8, 0xb7, 0x81, 0x78, 0xe8, 0xb3, 0x8f, 0x1d, 0xcf, 0x9d, 0x9c, 0xa1, 0xd6, - 0x90, 0x8a, 0x42, 0x55, 0x11, 0x79, 0x80, 0x01, 0x2e, 0x31, 0xfe, 0x98, 0xa7, 0x6c, 0x32, 0x6b, - 0xca, 0x18, 0xc7, 0x6b, 0xee, 0x9b, 0x4f, 0xdd, 0xa8, 0x59, 0x16, 0x3e, 0x7e, 0xad, 0x9d, 0x01, - 0x64, 0x77, 0x22, 0x2b, 0x50, 0x1d, 0x0d, 0x3e, 0x1a, 0x0c, 0x3f, 0x19, 0xa8, 0x05, 0x6e, 0x74, - 0x86, 0xa3, 0x81, 0x65, 0x50, 0x55, 0x22, 0x0a, 0x94, 0x1f, 0xea, 0xa3, 0x87, 0x86, 0x5a, 0x24, - 0x0d, 0x50, 0x76, 0x7b, 0xa6, 0x35, 0x7c, 0x48, 0xf5, 0xbe, 0x5a, 0x22, 0x04, 0x56, 0x31, 0x92, - 0xf9, 0x64, 0xbe, 0xd4, 0x1c, 0xf5, 0xfb, 0x3a, 0x7d, 0xac, 0x96, 0xb9, 0x98, 0x7b, 0x83, 0x07, - 0x43, 0xb5, 0x42, 0xea, 0x50, 0x33, 0x2d, 0xdd, 0x32, 0x4c, 0xc3, 0x52, 0xab, 0xda, 0x47, 0x50, - 0x11, 0xb7, 0x7e, 0x03, 0x42, 0xd4, 0x7e, 0x29, 0x41, 0x2d, 0x11, 0xcf, 0x9b, 0x10, 0x76, 0x4e, - 0x12, 0xc9, 0x7e, 0x5e, 0x10, 0x42, 0xe9, 0x82, 0x10, 0xb4, 0xbf, 0x94, 0x41, 0x49, 0xc5, 0x48, - 0x6e, 0x82, 0x32, 0xf6, 0xe7, 0xd3, 0xc8, 0x76, 0xa7, 0x11, 0x6e, 0xb9, 0xbc, 0x5b, 0xa0, 0x35, - 0x74, 0xf5, 0xa6, 0x11, 0xb9, 0x05, 0x2b, 0x22, 0x7c, 0x3c, 0xf1, 0x9d, 0x48, 0xdc, 0x6b, 0xb7, - 0x40, 0x01, 0x9d, 0x0f, 0xb8, 0x8f, 0xa8, 0x50, 0x0a, 0xe7, 0x1e, 0xde, 0x49, 0xa2, 0xfc, 0x92, - 0xdc, 0x80, 0x4a, 0x38, 0x3e, 0x65, 0x9e, 0x83, 0x9b, 0x7b, 0x8d, 0xc6, 0x16, 0xf9, 0x06, 0xac, - 0xfe, 0x8c, 0x05, 0xbe, 0x1d, 0x9d, 0x06, 0x2c, 0x3c, 0xf5, 0x27, 0x47, 0xb8, 0xd1, 0x12, 0x6d, - 0x70, 0xaf, 0x95, 0x38, 0xc9, 0xbb, 0x31, 0x2c, 0xe3, 0x55, 0x41, 0x5e, 0x12, 0xad, 0x73, 0x7f, - 0x27, 0xe1, 0x76, 0x1b, 0xd4, 0x05, 0x9c, 0x20, 0x58, 0x45, 0x82, 0x12, 0x5d, 0x4d, 0x91, 0x82, - 0xa4, 0x0e, 0xab, 0x53, 0x76, 0xe2, 0x44, 0xee, 0x13, 0x66, 0x87, 0x33, 0x67, 0x1a, 0x36, 0x6b, - 0xcb, 0x27, 0x7a, 0x7b, 0x3e, 0xfe, 0x94, 0x45, 0xe6, 0xcc, 0x99, 0xc6, 0x1d, 0xda, 0x48, 0x56, - 0x70, 0x5f, 0x48, 0xbe, 0x09, 0x6b, 0x69, 0x8a, 0x23, 0x36, 0x89, 0x9c, 0xb0, 0xa9, 0x6c, 0x95, - 0xb6, 0x09, 0x4d, 0x33, 0x77, 0xd1, 0x9b, 0x03, 0x22, 0xb7, 0xb0, 0x09, 0x5b, 0xa5, 0x6d, 0x29, - 0x03, 0x22, 0x31, 0x7e, 0xbc, 0xad, 0xce, 0xfc, 0xd0, 0x5d, 0x20, 0xb5, 0xf2, 0xdf, 0x49, 0x25, - 0x2b, 0x52, 0x52, 0x69, 0x8a, 0x98, 0x54, 0x5d, 0x90, 0x4a, 0xdc, 0x19, 0xa9, 0x14, 0x18, 0x93, - 0x6a, 0x08, 0x52, 0x89, 0x3b, 0x26, 0x75, 0x1f, 0x20, 0x60, 0x21, 0x8b, 0xec, 0x53, 0x5e, 0xf9, - 0x55, 0x3c, 0x04, 0x6e, 0x5e, 0x72, 0x8c, 0xed, 0x50, 0x8e, 0xda, 0x75, 0xa7, 0x11, 0x55, 0x82, - 0xe4, 0x92, 0xbc, 0x03, 0x4a, 0xaa, 0xb5, 0xe6, 0x1a, 0x8a, 0x2f, 0x73, 0x68, 0xf7, 0x40, 0x49, - 0x57, 0xe5, 0x5b, 0xb9, 0x0a, 0xa5, 0xc7, 0x86, 0xa9, 0x4a, 0xa4, 0x02, 0xc5, 0xc1, 0x50, 0x2d, - 0x66, 0xed, 0x5c, 0xda, 0x90, 0x7f, 0xf5, 0x87, 0x96, 0xd4, 0xae, 0x42, 0x19, 0x79, 0xb7, 0xeb, - 0x00, 0xd9, 0xb6, 0x6b, 0x7f, 0x95, 0x61, 0x15, 0xb7, 0x38, 0x93, 0x74, 0x08, 0x04, 0x63, 0x2c, - 0xb0, 0x97, 0x9e, 0xa4, 0xd1, 0x36, 0xfe, 0xf5, 0x62, 0x53, 0x5f, 0x98, 0x0c, 0x66, 0x81, 0xef, - 0xb1, 0xe8, 0x94, 0xcd, 0xc3, 0xc5, 0x4b, 0xcf, 0x3f, 0x62, 0x93, 0x3b, 0xe9, 0x01, 0xbd, 0xd3, - 0x11, 0xe9, 0xb2, 0x27, 0x56, 0xc7, 0x4b, 0x9e, 0xaf, 0xaa, 0xf9, 0x9b, 0x8b, 0x0f, 0x25, 0x54, - 0x4c, 0x95, 0x54, 0xc3, 0xbc, 0xd9, 0x45, 0x24, 0x6e, 0x76, 0x34, 0x2e, 0xe9, 0xbc, 0x37, 0xa0, - 0xa8, 0x37, 0xd0, 0x29, 0xdf, 0x02, 0x35, 0x65, 0x71, 0x88, 0xd8, 0x44, 0x6c, 0xa9, 0x06, 0x45, - 0x0a, 0x84, 0xa6, 0x77, 0x4b, 0xa0, 0xa2, 0x59, 0xd2, 0x1e, 0x8a, 0xa1, 0x7b, 0x72, 0x4d, 0x52, - 0x8b, 0x7b, 0x72, 0xad, 0xa2, 0x56, 0xf7, 0xe4, 0x9a, 0xa2, 0xc2, 0x9e, 0x5c, 0xab, 0xab, 0x8d, - 0x3d, 0xb9, 0xb6, 0xa6, 0xaa, 0x34, 0x3b, 0xc5, 0xe8, 0xd2, 0xe9, 0x41, 0x97, 0xdb, 0x96, 0x2e, - 0xb7, 0xcc, 0xa2, 0x44, 0xef, 0x03, 0x64, 0x8f, 0xc7, 0x77, 0xd5, 0x3f, 0x3e, 0x0e, 0x99, 0x38, - 0x1a, 0xaf, 0xd1, 0xd8, 0xe2, 0xfe, 0x09, 0x9b, 0x9e, 0x44, 0xa7, 0xb8, 0x21, 0x0d, 0x1a, 0x5b, - 0xda, 0x1c, 0x48, 0x5e, 0x8c, 0xf8, 0x46, 0x7f, 0x8d, 0xb7, 0xf3, 0x7d, 0x50, 0x52, 0xb9, 0xe1, - 0xbd, 0x72, 0x13, 0x5e, 0x3e, 0x67, 0x3c, 0xe1, 0x65, 0x0b, 0xb4, 0x29, 0xac, 0x89, 0x41, 0x20, - 0x6b, 0x82, 0x54, 0x31, 0xd2, 0x25, 0x8a, 0x29, 0x66, 0x8a, 0x79, 0x1f, 0xaa, 0x49, 0xdd, 0xc5, - 0xac, 0xf3, 0xf6, 0x65, 0x23, 0x0b, 0x22, 0x68, 0x82, 0xd4, 0x42, 0x58, 0x5b, 0x8a, 0x91, 0x16, - 0xc0, 0xa1, 0x3f, 0x9f, 0x1e, 0x39, 0xf1, 0xb8, 0x2c, 0x6d, 0x97, 0xe9, 0x82, 0x87, 0xf3, 0x99, - 0xf8, 0x9f, 0xb1, 0x20, 0x51, 0x30, 0x1a, 0xdc, 0x3b, 0x9f, 0xcd, 0x58, 0x10, 0x6b, 0x58, 0x18, - 0x19, 0x77, 0x79, 0x81, 0xbb, 0x36, 0x81, 0xeb, 0x4b, 0x0f, 0x89, 0xc5, 0xcd, 0x9d, 0x38, 0xc5, - 0xa5, 0x13, 0x87, 0x7c, 0x70, 0xb1, 0xae, 0x6f, 0x2f, 0x0f, 0x80, 0x69, 0xbe, 0xc5, 0x92, 0xfe, - 0x59, 0x86, 0xc6, 0xc7, 0x73, 0x16, 0x9c, 0x25, 0x73, 0x2d, 0xb9, 0x0b, 0x95, 0x30, 0x72, 0xa2, - 0x79, 0x18, 0x4f, 0x46, 0xad, 0x2c, 0x4f, 0x0e, 0xb8, 0x63, 0x22, 0x8a, 0xc6, 0x68, 0xf2, 0x23, - 0x00, 0xc6, 0x07, 0x5d, 0x1b, 0xa7, 0xaa, 0x0b, 0xa3, 0x7f, 0x7e, 0x2d, 0x8e, 0xc4, 0x38, 0x53, - 0x29, 0x2c, 0xb9, 0xe4, 0xf5, 0x40, 0x03, 0xab, 0xa4, 0x50, 0x61, 0x90, 0x1d, 0xce, 0x27, 0x70, - 0xa7, 0x27, 0x58, 0xa6, 0x5c, 0x83, 0x9a, 0xe8, 0xef, 0x3a, 0x91, 0xb3, 0x5b, 0xa0, 0x31, 0x8a, - 0xe3, 0x9f, 0xb0, 0x71, 0xe4, 0x07, 0x78, 0x02, 0xe5, 0xf0, 0x8f, 0xd0, 0x9f, 0xe0, 0x05, 0x0a, - 0xf3, 0x8f, 0x9d, 0x89, 0x13, 0xe0, 0xeb, 0x37, 0x9f, 0x1f, 0xfd, 0x69, 0x7e, 0xb4, 0x38, 0xde, - 0x73, 0xa2, 0xc0, 0x7d, 0x8a, 0xc7, 0x57, 0x0e, 0xdf, 0x47, 0x7f, 0x82, 0x17, 0x28, 0xb2, 0x01, - 0xb5, 0xcf, 0x9c, 0x60, 0xea, 0x4e, 0x4f, 0xc4, 0x11, 0xa3, 0xd0, 0xd4, 0xd6, 0xde, 0x85, 0x8a, - 0xa8, 0x22, 0x7f, 0x0f, 0x18, 0x94, 0x0e, 0xa9, 0x18, 0xf7, 0xcc, 0x51, 0xa7, 0x63, 0x98, 0xa6, - 0x2a, 0x89, 0x97, 0x82, 0xf6, 0x5b, 0x09, 0x94, 0xb4, 0x64, 0x7c, 0x8e, 0x1b, 0x0c, 0x07, 0x86, - 0x80, 0x5a, 0xbd, 0xbe, 0x31, 0x1c, 0x59, 0xaa, 0xc4, 0x87, 0xba, 0x8e, 0x3e, 0xe8, 0x18, 0xfb, - 0x46, 0x57, 0x0c, 0x87, 0xc6, 0x8f, 0x8d, 0xce, 0xc8, 0xea, 0x0d, 0x07, 0x6a, 0x89, 0x07, 0xdb, - 0x7a, 0xd7, 0xee, 0xea, 0x96, 0xae, 0xca, 0xdc, 0xea, 0xf1, 0x79, 0x72, 0xa0, 0xef, 0xab, 0x65, - 0xb2, 0x06, 0x2b, 0xa3, 0x81, 0xfe, 0x48, 0xef, 0xed, 0xeb, 0xed, 0x7d, 0x43, 0xad, 0xf0, 0xb5, - 0x83, 0xa1, 0x65, 0x3f, 0x18, 0x8e, 0x06, 0x5d, 0xb5, 0xca, 0x07, 0x4b, 0x6e, 0xea, 0x9d, 0x8e, - 0x71, 0x60, 0x21, 0xa4, 0x16, 0xbf, 0xac, 0x2a, 0x20, 0xf3, 0x19, 0x59, 0x33, 0x00, 0xb2, 0xbd, - 0xc8, 0x8f, 0xe0, 0xca, 0x55, 0x23, 0xdb, 0xc5, 0xd3, 0x41, 0xfb, 0x85, 0x04, 0x90, 0xed, 0x11, - 0xb9, 0x9b, 0x7d, 0xd3, 0x88, 0xf1, 0xf1, 0xc6, 0xf2, 0x56, 0x5e, 0xfe, 0x65, 0xf3, 0xc3, 0xdc, - 0x17, 0x4a, 0x71, 0xb9, 0xdd, 0xc5, 0xd2, 0xff, 0xf4, 0x9d, 0x62, 0x43, 0x7d, 0x31, 0x3f, 0x3f, - 0x06, 0xc5, 0x5c, 0x8f, 0x3c, 0x14, 0x1a, 0x5b, 0xff, 0xff, 0x6c, 0xfa, 0x6b, 0x09, 0xd6, 0x96, - 0x68, 0x5c, 0x79, 0x93, 0xdc, 0x91, 0x59, 0x7c, 0x8d, 0x23, 0xb3, 0xb0, 0xd0, 0xdf, 0xaf, 0x43, - 0x86, 0x6f, 0x5e, 0x2a, 0xf4, 0xcb, 0xbf, 0x9f, 0x5e, 0x67, 0xf3, 0xda, 0x00, 0x99, 0xfe, 0xc9, - 0xf7, 0xa0, 0x92, 0xfb, 0xa5, 0x70, 0x63, 0xb9, 0x4b, 0xe2, 0x9f, 0x0a, 0x82, 0x70, 0x8c, 0xd5, - 0x7e, 0x2f, 0x41, 0x7d, 0x31, 0x7c, 0x65, 0x51, 0xfe, 0xf7, 0xcf, 0xdd, 0x76, 0x4e, 0x14, 0xe2, - 0x1d, 0xf0, 0xce, 0x55, 0x75, 0xc4, 0xef, 0x92, 0x0b, 0xba, 0xb8, 0xfd, 0x0f, 0x09, 0x20, 0xfb, - 0x98, 0x27, 0xd7, 0xa0, 0x11, 0x4f, 0x76, 0x76, 0x47, 0x1f, 0x99, 0xbc, 0x21, 0x37, 0xe0, 0x06, - 0x35, 0x0e, 0xf6, 0x7b, 0x1d, 0xdd, 0xb4, 0xbb, 0xbd, 0xae, 0xcd, 0xfb, 0xa6, 0xaf, 0x5b, 0x9d, - 0x5d, 0x55, 0x22, 0x5f, 0x83, 0x6b, 0xd6, 0x70, 0x68, 0xf7, 0xf5, 0xc1, 0x63, 0xbb, 0xb3, 0x3f, - 0x32, 0x2d, 0x83, 0x9a, 0x6a, 0x31, 0xd7, 0x99, 0x25, 0x9e, 0xa0, 0x37, 0x78, 0x68, 0x98, 0xbc, - 0x6d, 0x6d, 0xaa, 0x5b, 0x86, 0xbd, 0xdf, 0xeb, 0xf7, 0x2c, 0xa3, 0xab, 0xca, 0xa4, 0x09, 0xeb, - 0xd4, 0xf8, 0x78, 0x64, 0x98, 0x56, 0x3e, 0x52, 0xe6, 0x1d, 0xda, 0x1b, 0x98, 0x16, 0xef, 0x7e, - 0xe1, 0x55, 0x2b, 0xe4, 0x2d, 0xb8, 0x6e, 0x1a, 0xf4, 0x51, 0xaf, 0x63, 0xd8, 0x8b, 0xdd, 0x5d, - 0x25, 0xeb, 0xa0, 0x5a, 0x66, 0xb7, 0x9d, 0xf3, 0xd6, 0x38, 0x0d, 0xce, 0xae, 0x3d, 0x32, 0x1f, - 0xab, 0x4a, 0xfb, 0x07, 0xcf, 0x5f, 0xb6, 0x0a, 0x9f, 0xbf, 0x6c, 0x15, 0xbe, 0x7c, 0xd9, 0x92, - 0x7e, 0x7e, 0xde, 0x92, 0xfe, 0x78, 0xde, 0x92, 0x9e, 0x9d, 0xb7, 0xa4, 0xe7, 0xe7, 0x2d, 0xe9, - 0xef, 0xe7, 0x2d, 0xe9, 0x8b, 0xf3, 0x56, 0xe1, 0xcb, 0xf3, 0x96, 0xf4, 0x9b, 0x57, 0xad, 0xc2, - 0xf3, 0x57, 0xad, 0xc2, 0xe7, 0xaf, 0x5a, 0x85, 0x9f, 0x54, 0xf1, 0x17, 0xd5, 0xec, 0xf0, 0xb0, - 0x82, 0x3f, 0x9b, 0xde, 0xff, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xef, 0xbc, 0x47, 0xbe, 0xb4, - 0x12, 0x00, 0x00, + // 1959 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcf, 0x73, 0xdc, 0x48, + 0xf5, 0x1f, 0xcd, 0x68, 0x7e, 0xe8, 0x79, 0xc6, 0xee, 0x74, 0xfc, 0xcd, 0xce, 0xba, 0x36, 0x63, + 0x47, 0xdf, 0x62, 0x31, 0x29, 0x70, 0xa8, 0x5d, 0xc8, 0xd6, 0xa6, 0x42, 0x81, 0x66, 0x46, 0x89, + 0xc7, 0xf1, 0x68, 0xbc, 0x2d, 0x4d, 0x96, 0x70, 0x51, 0xc9, 0xe3, 0xb6, 0xad, 0x5a, 0x69, 0x34, + 0x48, 0x9a, 0x6c, 0xcc, 0x09, 0x0e, 0x50, 0x14, 0x27, 0x2e, 0x5c, 0x28, 0x6e, 0x5c, 0xf8, 0x0b, + 0xf8, 0x07, 0xb8, 0xa4, 0x8a, 0xa2, 0x2a, 0xc7, 0x2d, 0x0e, 0x29, 0xe2, 0x5c, 0xf6, 0xb8, 0x07, + 0x4e, 0x9c, 0xa8, 0xee, 0xd6, 0x8f, 0xd1, 0xd8, 0x86, 0x00, 0xb9, 0xe9, 0xbd, 0xf7, 0xe9, 0xa7, + 0x8f, 0x5e, 0x7f, 0x5e, 0xeb, 0x49, 0xb0, 0xe2, 0xbb, 0xbe, 0x1b, 0xee, 0xcc, 0xc2, 0x20, 0x0e, + 0x70, 0x63, 0x12, 0x84, 0x31, 0x7d, 0x36, 0x3b, 0xdc, 0xf8, 0xd6, 0x89, 0x1b, 0x9f, 0xce, 0x0f, + 0x77, 0x26, 0x81, 0x7f, 0xe7, 0x24, 0x38, 0x09, 0xee, 0x70, 0xc0, 0xe1, 0xfc, 0x98, 0x5b, 0xdc, + 0xe0, 0x57, 0x62, 0xa1, 0xfa, 0xc7, 0x32, 0x34, 0x3f, 0x0d, 0xdd, 0x98, 0x12, 0xfa, 0xe3, 0x39, + 0x8d, 0x62, 0x7c, 0x00, 0x10, 0xbb, 0x3e, 0x8d, 0x68, 0xe8, 0xd2, 0xa8, 0x2d, 0x6d, 0x55, 0xb6, + 0x57, 0x3e, 0x58, 0xdf, 0x49, 0xd3, 0xef, 0x58, 0xae, 0x4f, 0x4d, 0x1e, 0xeb, 0x6e, 0x3c, 0x7f, + 0xb9, 0x59, 0xfa, 0xeb, 0xcb, 0x4d, 0x7c, 0x10, 0x52, 0xc7, 0xf3, 0x82, 0x89, 0x95, 0xad, 0x23, + 0x0b, 0x39, 0xf0, 0xc7, 0x50, 0x33, 0x83, 0x79, 0x38, 0xa1, 0xed, 0xf2, 0x96, 0xb4, 0xbd, 0xfa, + 0xc1, 0xad, 0x3c, 0xdb, 0xe2, 0x9d, 0x77, 0x04, 0x48, 0x9f, 0xce, 0x7d, 0x92, 0x2c, 0xc0, 0xf7, + 0xa0, 0xe1, 0xd3, 0xd8, 0x39, 0x72, 0x62, 0xa7, 0x5d, 0xe1, 0x54, 0xda, 0xf9, 0xe2, 0x21, 0x8d, + 0x43, 0x77, 0x32, 0x4c, 0xe2, 0x5d, 0xf9, 0xf9, 0xcb, 0x4d, 0x89, 0x64, 0x78, 0x7c, 0x1f, 0x36, + 0xa2, 0xcf, 0xdc, 0x99, 0xed, 0x39, 0x87, 0xd4, 0xb3, 0xa7, 0x8e, 0x4f, 0xed, 0xa7, 0x8e, 0xe7, + 0x1e, 0x39, 0xb1, 0x1b, 0x4c, 0xdb, 0x5f, 0xd6, 0xb7, 0xa4, 0xed, 0x06, 0x79, 0x87, 0x41, 0xf6, + 0x19, 0xc2, 0x70, 0x7c, 0xfa, 0x38, 0x8b, 0xab, 0x9b, 0x00, 0x39, 0x1f, 0x5c, 0x87, 0x8a, 0x76, + 0x30, 0x40, 0x25, 0xdc, 0x00, 0x99, 0x8c, 0xf7, 0x75, 0x24, 0xa9, 0x6b, 0xd0, 0x4a, 0xd8, 0x47, + 0xb3, 0x60, 0x1a, 0x51, 0xf5, 0x1e, 0x34, 0xf5, 0x30, 0x0c, 0xc2, 0x3e, 0x8d, 0x1d, 0xd7, 0x8b, + 0xf0, 0x6d, 0xa8, 0xf6, 0x9c, 0x79, 0x44, 0xdb, 0x12, 0x7f, 0xea, 0x85, 0x1a, 0x72, 0x18, 0x8f, + 0x11, 0x01, 0x51, 0xff, 0x2e, 0x01, 0xe4, 0x95, 0xc5, 0x1a, 0xd4, 0x38, 0xeb, 0xb4, 0xfe, 0xd7, + 0xf3, 0xb5, 0x9c, 0xeb, 0x81, 0xe3, 0x86, 0xdd, 0xf5, 0xa4, 0xfc, 0x4d, 0xee, 0xd2, 0x8e, 0x9c, + 0x59, 0x4c, 0x43, 0x92, 0x2c, 0xc4, 0xdf, 0x86, 0x7a, 0xe4, 0xf8, 0x33, 0x8f, 0x46, 0xed, 0x32, + 0xcf, 0x81, 0xf2, 0x1c, 0x26, 0x0f, 0xf0, 0x82, 0x95, 0x48, 0x0a, 0xc3, 0x77, 0x41, 0xa1, 0xcf, + 0xa8, 0x3f, 0xf3, 0x9c, 0x30, 0x4a, 0x8a, 0x8d, 0x17, 0x38, 0x27, 0xa1, 0x64, 0x55, 0x0e, 0xc5, + 0x1f, 0x03, 0x9c, 0xba, 0x51, 0x1c, 0x9c, 0x84, 0x8e, 0x1f, 0xb5, 0xe5, 0x65, 0xc2, 0xbb, 0x69, + 0x2c, 0x59, 0xb9, 0x00, 0x56, 0xbf, 0x0b, 0x4a, 0xf6, 0x3c, 0x18, 0x83, 0xcc, 0x36, 0x89, 0x97, + 0xab, 0x49, 0xf8, 0x35, 0x5e, 0x87, 0xea, 0x53, 0xc7, 0x9b, 0x0b, 0xe5, 0x34, 0x89, 0x30, 0x54, + 0x0d, 0x6a, 0xe2, 0x11, 0xf0, 0x2d, 0x68, 0x72, 0xa1, 0xc5, 0x8e, 0x3f, 0xb3, 0xfd, 0x88, 0xc3, + 0x2a, 0x64, 0x25, 0xf3, 0x0d, 0xa3, 0x3c, 0x05, 0xcb, 0x2b, 0xa5, 0x29, 0x7e, 0x5b, 0x86, 0xd5, + 0xa2, 0x7e, 0xf0, 0x47, 0x20, 0xc7, 0x67, 0xb3, 0x74, 0xbb, 0xfe, 0xff, 0x2a, 0x9d, 0x25, 0xa6, + 0x75, 0x36, 0xa3, 0x84, 0x2f, 0xc0, 0xdf, 0x04, 0xec, 0x73, 0x9f, 0x7d, 0xec, 0xf8, 0xae, 0x77, + 0xc6, 0xb5, 0xc6, 0xa9, 0x28, 0x04, 0x89, 0xc8, 0x03, 0x1e, 0x60, 0x12, 0x63, 0x8f, 0x79, 0x4a, + 0xbd, 0x59, 0x5b, 0xe6, 0x71, 0x7e, 0xcd, 0x7c, 0xf3, 0xa9, 0x1b, 0xb7, 0xab, 0xc2, 0xc7, 0xae, + 0xd5, 0x33, 0x80, 0xfc, 0x4e, 0x78, 0x05, 0xea, 0x63, 0xe3, 0x91, 0x31, 0xfa, 0xd4, 0x40, 0x25, + 0x66, 0xf4, 0x46, 0x63, 0xc3, 0xd2, 0x09, 0x92, 0xb0, 0x02, 0xd5, 0x87, 0xda, 0xf8, 0xa1, 0x8e, + 0xca, 0xb8, 0x05, 0xca, 0xee, 0xc0, 0xb4, 0x46, 0x0f, 0x89, 0x36, 0x44, 0x15, 0x8c, 0x61, 0x95, + 0x47, 0x72, 0x9f, 0xcc, 0x96, 0x9a, 0xe3, 0xe1, 0x50, 0x23, 0x4f, 0x50, 0x95, 0x89, 0x79, 0x60, + 0x3c, 0x18, 0xa1, 0x1a, 0x6e, 0x42, 0xc3, 0xb4, 0x34, 0x4b, 0x37, 0x75, 0x0b, 0xd5, 0xd5, 0x47, + 0x50, 0x13, 0xb7, 0x7e, 0x0b, 0x42, 0x54, 0x7f, 0x21, 0x41, 0x23, 0x15, 0xcf, 0xdb, 0x10, 0x76, + 0x41, 0x12, 0xe9, 0x7e, 0x5e, 0x10, 0x42, 0xe5, 0x82, 0x10, 0xd4, 0x3f, 0x57, 0x41, 0xc9, 0xc4, + 0x88, 0x6f, 0x82, 0x32, 0x09, 0xe6, 0xd3, 0xd8, 0x76, 0xa7, 0x31, 0xdf, 0x72, 0x79, 0xb7, 0x44, + 0x1a, 0xdc, 0x35, 0x98, 0xc6, 0xf8, 0x16, 0xac, 0x88, 0xf0, 0xb1, 0x17, 0x38, 0xb1, 0xb8, 0xd7, + 0x6e, 0x89, 0x00, 0x77, 0x3e, 0x60, 0x3e, 0x8c, 0xa0, 0x12, 0xcd, 0x7d, 0x7e, 0x27, 0x89, 0xb0, + 0x4b, 0x7c, 0x03, 0x6a, 0xd1, 0xe4, 0x94, 0xfa, 0x0e, 0xdf, 0xdc, 0x6b, 0x24, 0xb1, 0xf0, 0xd7, + 0x60, 0xf5, 0x27, 0x34, 0x0c, 0xec, 0xf8, 0x34, 0xa4, 0xd1, 0x69, 0xe0, 0x1d, 0xf1, 0x8d, 0x96, + 0x48, 0x8b, 0x79, 0xad, 0xd4, 0x89, 0xdf, 0x4f, 0x60, 0x39, 0xaf, 0x1a, 0xe7, 0x25, 0x91, 0x26, + 0xf3, 0xf7, 0x52, 0x6e, 0xb7, 0x01, 0x2d, 0xe0, 0x04, 0xc1, 0x3a, 0x27, 0x28, 0x91, 0xd5, 0x0c, + 0x29, 0x48, 0x6a, 0xb0, 0x3a, 0xa5, 0x27, 0x4e, 0xec, 0x3e, 0xa5, 0x76, 0x34, 0x73, 0xa6, 0x51, + 0xbb, 0xb1, 0x7c, 0xa2, 0x77, 0xe7, 0x93, 0xcf, 0x68, 0x6c, 0xce, 0x9c, 0x69, 0xd2, 0xa1, 0xad, + 0x74, 0x05, 0xf3, 0x45, 0xf8, 0xeb, 0xb0, 0x96, 0xa5, 0x38, 0xa2, 0x5e, 0xec, 0x44, 0x6d, 0x65, + 0xab, 0xb2, 0x8d, 0x49, 0x96, 0xb9, 0xcf, 0xbd, 0x05, 0x20, 0xe7, 0x16, 0xb5, 0x61, 0xab, 0xb2, + 0x2d, 0xe5, 0x40, 0x4e, 0x8c, 0x1d, 0x6f, 0xab, 0xb3, 0x20, 0x72, 0x17, 0x48, 0xad, 0xfc, 0x7b, + 0x52, 0xe9, 0x8a, 0x8c, 0x54, 0x96, 0x22, 0x21, 0xd5, 0x14, 0xa4, 0x52, 0x77, 0x4e, 0x2a, 0x03, + 0x26, 0xa4, 0x5a, 0x82, 0x54, 0xea, 0x4e, 0x48, 0xdd, 0x07, 0x08, 0x69, 0x44, 0x63, 0xfb, 0x94, + 0x55, 0x7e, 0x95, 0x1f, 0x02, 0x37, 0x2f, 0x39, 0xc6, 0x76, 0x08, 0x43, 0xed, 0xba, 0xd3, 0x98, + 0x28, 0x61, 0x7a, 0x89, 0xdf, 0x03, 0x25, 0xd3, 0x5a, 0x7b, 0x8d, 0x8b, 0x2f, 0x77, 0xa8, 0xf7, + 0x40, 0xc9, 0x56, 0x15, 0x5b, 0xb9, 0x0e, 0x95, 0x27, 0xba, 0x89, 0x24, 0x5c, 0x83, 0xb2, 0x31, + 0x42, 0xe5, 0xbc, 0x9d, 0x2b, 0x1b, 0xf2, 0x2f, 0x7f, 0xdf, 0x91, 0xba, 0x75, 0xa8, 0x72, 0xde, + 0xdd, 0x26, 0x40, 0xbe, 0xed, 0xea, 0x5f, 0x64, 0x58, 0xe5, 0x5b, 0x9c, 0x4b, 0x3a, 0x02, 0xcc, + 0x63, 0x34, 0xb4, 0x97, 0x9e, 0xa4, 0xd5, 0xd5, 0xff, 0xf1, 0x72, 0x53, 0x5b, 0x98, 0x0c, 0x66, + 0x61, 0xe0, 0xd3, 0xf8, 0x94, 0xce, 0xa3, 0xc5, 0x4b, 0x3f, 0x38, 0xa2, 0xde, 0x9d, 0xec, 0x80, + 0xde, 0xe9, 0x89, 0x74, 0xf9, 0x13, 0xa3, 0xc9, 0x92, 0xe7, 0x7f, 0xd5, 0xfc, 0xcd, 0xc5, 0x87, + 0x12, 0x2a, 0x26, 0x4a, 0xa6, 0x61, 0xd6, 0xec, 0x22, 0x92, 0x34, 0x3b, 0x37, 0x2e, 0xe9, 0xbc, + 0xb7, 0xa0, 0xa8, 0xb7, 0xd0, 0x29, 0xdf, 0x00, 0x94, 0xb1, 0x38, 0xe4, 0xd8, 0x54, 0x6c, 0x99, + 0x06, 0x45, 0x0a, 0x0e, 0xcd, 0xee, 0x96, 0x42, 0x45, 0xb3, 0x64, 0x3d, 0x94, 0x40, 0xf7, 0xe4, + 0x86, 0x84, 0xca, 0x7b, 0x72, 0xa3, 0x86, 0xea, 0x7b, 0x72, 0x43, 0x41, 0xb0, 0x27, 0x37, 0x9a, + 0xa8, 0xb5, 0x27, 0x37, 0xd6, 0x10, 0x22, 0xf9, 0x29, 0x46, 0x96, 0x4e, 0x0f, 0xb2, 0xdc, 0xb6, + 0x64, 0xb9, 0x65, 0x16, 0x25, 0x7a, 0x1f, 0x20, 0x7f, 0x3c, 0xb6, 0xab, 0xc1, 0xf1, 0x71, 0x44, + 0xc5, 0xd1, 0x78, 0x8d, 0x24, 0x16, 0xf3, 0x7b, 0x74, 0x7a, 0x12, 0x9f, 0xf2, 0x0d, 0x69, 0x91, + 0xc4, 0x52, 0xe7, 0x80, 0x8b, 0x62, 0xe4, 0x6f, 0xf4, 0x37, 0x78, 0x3b, 0xdf, 0x07, 0x25, 0x93, + 0x1b, 0xbf, 0x57, 0x61, 0xc2, 0x2b, 0xe6, 0x4c, 0x26, 0xbc, 0x7c, 0x81, 0x3a, 0x85, 0x35, 0x31, + 0x08, 0xe4, 0x4d, 0x90, 0x29, 0x46, 0xba, 0x44, 0x31, 0xe5, 0x5c, 0x31, 0x1f, 0x42, 0x3d, 0xad, + 0xbb, 0x98, 0x75, 0xde, 0xbd, 0x6c, 0x64, 0xe1, 0x08, 0x92, 0x22, 0xd5, 0x08, 0xd6, 0x96, 0x62, + 0xb8, 0x03, 0x70, 0x18, 0xcc, 0xa7, 0x47, 0x4e, 0x32, 0x2e, 0x4b, 0xdb, 0x55, 0xb2, 0xe0, 0x61, + 0x7c, 0xbc, 0xe0, 0x73, 0x1a, 0xa6, 0x0a, 0xe6, 0x06, 0xf3, 0xce, 0x67, 0x33, 0x1a, 0x26, 0x1a, + 0x16, 0x46, 0xce, 0x5d, 0x5e, 0xe0, 0xae, 0x7a, 0x70, 0x7d, 0xe9, 0x21, 0x79, 0x71, 0x0b, 0x27, + 0x4e, 0x79, 0xe9, 0xc4, 0xc1, 0x1f, 0x5d, 0xac, 0xeb, 0xbb, 0xcb, 0x03, 0x60, 0x96, 0x6f, 0xb1, + 0xa4, 0x7f, 0x92, 0xa1, 0xf5, 0xc9, 0x9c, 0x86, 0x67, 0xe9, 0x5c, 0x8b, 0xef, 0x42, 0x2d, 0x8a, + 0x9d, 0x78, 0x1e, 0x25, 0x93, 0x51, 0x27, 0xcf, 0x53, 0x00, 0xee, 0x98, 0x1c, 0x45, 0x12, 0x34, + 0xfe, 0x01, 0x00, 0x65, 0x83, 0xae, 0xcd, 0xa7, 0xaa, 0x0b, 0xa3, 0x7f, 0x71, 0x2d, 0x1f, 0x89, + 0xf9, 0x4c, 0xa5, 0xd0, 0xf4, 0x92, 0xd5, 0x83, 0x1b, 0xbc, 0x4a, 0x0a, 0x11, 0x06, 0xde, 0x61, + 0x7c, 0x42, 0x77, 0x7a, 0xc2, 0xcb, 0x54, 0x68, 0x50, 0x93, 0xfb, 0xfb, 0x4e, 0xec, 0xec, 0x96, + 0x48, 0x82, 0x62, 0xf8, 0xa7, 0x74, 0x12, 0x07, 0x21, 0x3f, 0x81, 0x0a, 0xf8, 0xc7, 0xdc, 0x9f, + 0xe2, 0x05, 0x8a, 0xe7, 0x9f, 0x38, 0x9e, 0x13, 0xf2, 0xd7, 0x6f, 0x31, 0x3f, 0xf7, 0x67, 0xf9, + 0xb9, 0xc5, 0xf0, 0xbe, 0x13, 0x87, 0xee, 0x33, 0x7e, 0x7c, 0x15, 0xf0, 0x43, 0xee, 0x4f, 0xf1, + 0x02, 0x85, 0x37, 0xa0, 0xf1, 0xb9, 0x13, 0x4e, 0xdd, 0xe9, 0x89, 0x38, 0x62, 0x14, 0x92, 0xd9, + 0xea, 0xfb, 0x50, 0x13, 0x55, 0x64, 0xef, 0x01, 0x9d, 0x90, 0x11, 0x11, 0xe3, 0x9e, 0x39, 0xee, + 0xf5, 0x74, 0xd3, 0x44, 0x92, 0x78, 0x29, 0xa8, 0xbf, 0x91, 0x40, 0xc9, 0x4a, 0xc6, 0xe6, 0x38, + 0x63, 0x64, 0xe8, 0x02, 0x6a, 0x0d, 0x86, 0xfa, 0x68, 0x6c, 0x21, 0x89, 0x0d, 0x75, 0x3d, 0xcd, + 0xe8, 0xe9, 0xfb, 0x7a, 0x5f, 0x0c, 0x87, 0xfa, 0x0f, 0xf5, 0xde, 0xd8, 0x1a, 0x8c, 0x0c, 0x54, + 0x61, 0xc1, 0xae, 0xd6, 0xb7, 0xfb, 0x9a, 0xa5, 0x21, 0x99, 0x59, 0x03, 0x36, 0x4f, 0x1a, 0xda, + 0x3e, 0xaa, 0xe2, 0x35, 0x58, 0x19, 0x1b, 0xda, 0x63, 0x6d, 0xb0, 0xaf, 0x75, 0xf7, 0x75, 0x54, + 0x63, 0x6b, 0x8d, 0x91, 0x65, 0x3f, 0x18, 0x8d, 0x8d, 0x3e, 0xaa, 0xb3, 0xc1, 0x92, 0x99, 0x5a, + 0xaf, 0xa7, 0x1f, 0x58, 0x1c, 0xd2, 0x48, 0x5e, 0x56, 0x35, 0x90, 0xd9, 0x8c, 0xac, 0xea, 0x00, + 0xf9, 0x5e, 0x14, 0x47, 0x70, 0xe5, 0xaa, 0x91, 0xed, 0xe2, 0xe9, 0xa0, 0xfe, 0x5c, 0x02, 0xc8, + 0xf7, 0x08, 0xdf, 0xcd, 0xbf, 0x69, 0xc4, 0xf8, 0x78, 0x63, 0x79, 0x2b, 0x2f, 0xff, 0xb2, 0xf9, + 0x7e, 0xe1, 0x0b, 0xa5, 0xbc, 0xdc, 0xee, 0x62, 0xe9, 0xbf, 0xfa, 0x4e, 0xb1, 0xa1, 0xb9, 0x98, + 0x9f, 0x1d, 0x83, 0x62, 0xae, 0xe7, 0x3c, 0x14, 0x92, 0x58, 0xff, 0xfd, 0x6c, 0xfa, 0x2b, 0x09, + 0xd6, 0x96, 0x68, 0x5c, 0x79, 0x93, 0xc2, 0x91, 0x59, 0x7e, 0x83, 0x23, 0xb3, 0xb4, 0xd0, 0xdf, + 0x6f, 0x42, 0x86, 0x6d, 0x5e, 0x26, 0xf4, 0xcb, 0xbf, 0x9f, 0xde, 0x64, 0xf3, 0xba, 0x00, 0xb9, + 0xfe, 0xf1, 0x77, 0xa0, 0x56, 0xf8, 0xa5, 0x70, 0x63, 0xb9, 0x4b, 0x92, 0x9f, 0x0a, 0x82, 0x70, + 0x82, 0x55, 0x7f, 0x27, 0x41, 0x73, 0x31, 0x7c, 0x65, 0x51, 0xfe, 0xf3, 0xcf, 0xdd, 0x6e, 0x41, + 0x14, 0xe2, 0x1d, 0xf0, 0xde, 0x55, 0x75, 0xe4, 0xdf, 0x25, 0x17, 0x74, 0x71, 0xfb, 0x67, 0x65, + 0x80, 0xfc, 0x63, 0x1e, 0x5f, 0x83, 0x56, 0x32, 0xd9, 0xd9, 0x3d, 0x6d, 0x6c, 0xb2, 0x86, 0xdc, + 0x80, 0x1b, 0x44, 0x3f, 0xd8, 0x1f, 0xf4, 0x34, 0xd3, 0xee, 0x0f, 0xfa, 0x36, 0xeb, 0x9b, 0xa1, + 0x66, 0xf5, 0x76, 0x91, 0x84, 0xff, 0x0f, 0xae, 0x59, 0xa3, 0x91, 0x3d, 0xd4, 0x8c, 0x27, 0x76, + 0x6f, 0x7f, 0x6c, 0x5a, 0x3a, 0x31, 0x51, 0xb9, 0xd0, 0x99, 0x15, 0x96, 0x60, 0x60, 0x3c, 0xd4, + 0x4d, 0xd6, 0xb6, 0x36, 0xd1, 0x2c, 0xdd, 0xde, 0x1f, 0x0c, 0x07, 0x96, 0xde, 0x47, 0x32, 0x6e, + 0xc3, 0x3a, 0xd1, 0x3f, 0x19, 0xeb, 0xa6, 0x55, 0x8c, 0x54, 0x59, 0x87, 0x0e, 0x0c, 0xd3, 0x62, + 0xdd, 0x2f, 0xbc, 0xa8, 0x86, 0xdf, 0x81, 0xeb, 0xa6, 0x4e, 0x1e, 0x0f, 0x7a, 0xba, 0xbd, 0xd8, + 0xdd, 0x75, 0xbc, 0x0e, 0xc8, 0x32, 0xfb, 0xdd, 0x82, 0xb7, 0xc1, 0x68, 0x30, 0x76, 0xdd, 0xb1, + 0xf9, 0x04, 0x29, 0xec, 0x56, 0xbd, 0x01, 0xe9, 0x8d, 0x07, 0x96, 0xdd, 0x25, 0xba, 0xf6, 0x48, + 0x27, 0xf6, 0xe8, 0x40, 0x37, 0x10, 0x74, 0xbf, 0xf7, 0xe2, 0x55, 0xa7, 0xf4, 0xc5, 0xab, 0x4e, + 0xe9, 0xab, 0x57, 0x1d, 0xe9, 0xa7, 0xe7, 0x1d, 0xe9, 0x0f, 0xe7, 0x1d, 0xe9, 0xf9, 0x79, 0x47, + 0x7a, 0x71, 0xde, 0x91, 0xfe, 0x76, 0xde, 0x91, 0xbe, 0x3c, 0xef, 0x94, 0xbe, 0x3a, 0xef, 0x48, + 0xbf, 0x7e, 0xdd, 0x29, 0xbd, 0x78, 0xdd, 0x29, 0x7d, 0xf1, 0xba, 0x53, 0xfa, 0x51, 0x9d, 0xff, + 0xbc, 0x9a, 0x1d, 0x1e, 0xd6, 0xf8, 0x6f, 0xa8, 0x0f, 0xff, 0x19, 0x00, 0x00, 0xff, 0xff, 0x3d, + 0xca, 0x70, 0x87, 0xce, 0x12, 0x00, 0x00, } func (x ErrorCause) String() string { diff --git a/pkg/mimirpb/mimir.proto b/pkg/mimirpb/mimir.proto index 1ae86f02e3d..9057abea053 100644 --- a/pkg/mimirpb/mimir.proto +++ b/pkg/mimirpb/mimir.proto @@ -45,6 +45,7 @@ enum ErrorCause { SERVICE_UNAVAILABLE = 7; TSDB_UNAVAILABLE = 8; TOO_BUSY = 9; + CIRCUIT_BREAKER_OPEN = 10; } message ErrorDetails {