You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package clientinterceptors
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"path"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/core/breaker"
|
|
|
|
"github.com/zeromicro/go-zero/zrpc/internal/codes"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// BreakerInterceptor is an interceptor that acts as a circuit breaker.
|
|
|
|
func BreakerInterceptor(ctx context.Context, method string, req, reply any,
|
|
|
|
cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
|
|
breakerName := path.Join(cc.Target(), method)
|
|
|
|
return breaker.DoWithAcceptable(breakerName, func() error {
|
|
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
|
|
}, codes.Acceptable)
|
|
|
|
}
|