Go 每日一库之 hystrix-go
Hystrix是 Netflix 的一个非常棒的项目。
Hystrix 是一个延迟和容错库,旨在隔离对远程系统、服务和第三方库的访问点,防止级联故障,并在故障不可避免的复杂分布式系统中实现弹性。
我认为程序员定义的回退(fallbacks)和自适应健康监控的 Hystrix 模式适用于任何分布式系统。Goroutines和channels是很好的并发原语,但不能直接帮助我们的应用程序在故障期间保持可用。
hystrix-go旨在让 Go 程序员轻松构建具有与基于 Java 的 Hystrix 库类似的执行语义的应用程序。
如何使用
import "github.com/afex/hystrix-go/hystrix"
将代码作为 Hystrix 命令执行
定义依赖于外部系统的应用程序逻辑,将函数传递给hystrix.Go
. 当该系统正常健康时,会执行此方法。
hystrix.Go("my_command", func() error {
// talk to other services
return nil
}, nil)
定义回退行为
如果你希望在服务中断期间执行代码,可以将第二个函数传递给hystrix.Go
. 理想情况下,这儿的逻辑可以使应用程序优雅地处理不可用的外部服务。
当代码返回一个错误时,或者当它基于各种健康检查无法完成时,就会触发此事件。
hystrix.Go("my_command", func() error {
// talk to other services
return nil
}, func(err error) error {
// do this when services are down
return nil
})
等待输出
调用hystrix.Go
就像启动一个 goroutine,你会收到一个可以select监控的error channel。
output := make(chan bool, 1)
errors := hystrix.Go("my_command", func() error {
// talk to other services
output <- true
return nil
}, nil)
select {
case out := <-output:
// success
case err := <-errors:
// failure
}
同步 API
由于调用命令并立即等待它完成是种常见的模式,因此hystrix提供了一个同步API。hystrix.Do
函数返回一个错误。
err := hystrix.Do("my_command", func() error {
// talk to other services
return nil
}, nil)
配置设置
在应用程序启动期间,你可以调用hystrix.ConfigureCommand()
来调整每个命令的设置。
hystrix.ConfigureCommand("my_command", hystrix.CommandConfig{
Timeout: 1000,
MaxConcurrentRequests: 100,
ErrorPercentThreshold: 25,
})
你也可以使用hystrix.Configure()
,它接受一个map[string]CommandConfig
的map。
如何启用仪表板指标
在你的 main.go 中,在端口上注册事件流 HTTP 处理程序并在 goroutine 中启动它。一旦你为Hystrix 仪表板[6]配置了涡轮机以开始流式传输事件,你的命令将自动开始出现。
在 main.go 中,在端口上注册事件流 HTTP 处理程序,并在 goroutine 中启动它。一旦为 Hystrix 仪表板配置了涡轮机(turbine)以启动流事件,命令将自动开始显示。
hystrixStreamHandler := hystrix.NewStreamHandler()
hystrixStreamHandler.Start()
go http.ListenAndServe(net.JoinHostPort("", "81"), hystrixStreamHandler)
将circuit指标发送到 Statsd
c, err := plugins.InitializeStatsdCollector(&plugins.StatsdCollectorConfig{
StatsdAddr: "localhost:8125",
Prefix: "myapp.hystrix",
})
if err != nil {
log.Fatalf("could not initialize statsd client: %v", err)
}
metricCollector.Registry.Register(c.NewStatsdCollector)
FAQ
如果我的运行函数发生了panic会怎么样?hystrix-go 会触发回退吗?
不,hystrix-go 不使用recover()
,所以panic会像平常一样杀死进程。
如何构建和测试
- 安装 vagrant 和 VirtualBox
- 将hystrix-go 存储库clone下来
- 在 hystrix-go 目录中,运行
vagrant up
,然后vagrant ssh
cd /go/src/github.com/afex/hystrix-go
go test ./...
原文链接:https://mp.weixin.qq.com/s/zlWI27R7wPEJM-lRLcu8EQ
声明:本文转载网络 发布,仅代表作者观点,不代表蜗牛120博客网的观点或立场,蜗牛120博客网仅提供信息发布平台,合作供稿、侵权删除、反馈建议请联系Telegram: @nice_seo
评论