1 Star 0 Fork 0

SasukeBo/go-micro

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hystrix.go 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
汪波 提交于 2023-02-23 10:27 . fix: 替换包名
package hystrix
import (
"context"
"gitee.com/sasukebo/go-micro/v4/client"
"github.com/afex/hystrix-go/hystrix"
)
type clientWrapper struct {
client.Client
filter func(context.Context, error) bool
fallback func(context.Context, error) error
}
func (cw *clientWrapper) Call(ctx context.Context, req client.Request, rsp interface{}, opts ...client.CallOption) error {
var err error
herr := hystrix.DoC(ctx, req.Service()+"."+req.Endpoint(), func(c context.Context) error {
err = cw.Client.Call(c, req, rsp, opts...)
if cw.filter != nil {
// custom error handling, filter errors that should not trigger circuit breaker
if cw.filter(ctx, err) {
return nil
}
}
return err
}, cw.fallback)
if herr != nil {
return herr
}
// return original error
return err
}
// NewClientWrapper returns a hystrix client Wrapper.
func NewClientWrapper(opts ...Option) client.Wrapper {
var options Options
for _, o := range opts {
o(&options)
}
return func(c client.Client) client.Client {
return &clientWrapper{c, options.Filter, options.Fallback}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sasukebo/go-micro.git
git@gitee.com:sasukebo/go-micro.git
sasukebo
go-micro
go-micro
6e18eb58b836

搜索帮助