- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 golang 及其并发原则相当陌生。我的用例涉及对一批实体执行多个 http 请求(针对单个实体)。如果某个实体的任何 http 请求失败,我需要停止它的所有并行 http 请求。此外,我必须管理因错误而失败的实体的数量。我正在尝试在实体goroutines中实现errorgroup,这样如果单个实体的任何http请求失败,errorgroup就会终止并将错误返回给它的父goroutine。但我不确定如何保持错误计数。
func main(entity[] string) {
errorC := make(chan string) // channel to insert failed entity
var wg sync.WaitGroup
for _, link := range entity {
wg.Add(1)
// Spawn errorgroup here. errorgroup_spawn
}
go func() {
wg.Wait()
close(errorC)
}()
for msg := range errorC {
// here storing error entityIds somewhere.
}
}
和这样的错误组
func errorgroup_spawn(ctx context.Context, errorC chan string, wg *sync.WaitGroup) { // and other params
defer (*wg).Done()
goRoutineCollection, ctxx := errgroup.WithContext(ctx)
results := make(chan *result)
goRoutineCollection.Go(func() error {
// http calls for single entity
// if error occurs, push it in errorC, and return Error.
return nil
})
go func() {
goRoutineCollection.Wait()
close(result)
}()
return goRoutineCollection.Wait()
}
PS:我也在考虑应用嵌套的错误组,但在运行其他错误组时无法考虑维护错误计数
最佳答案
跟踪错误的一种方法是使用状态结构来跟踪哪个错误来自何处:
type Status struct {
Entity string
Err error
}
...
errorC := make(chan Status)
// Spawn error groups with name of the entity, and when error happens, push Status{Entity:entityName,Err:err} to the chanel
然后,您可以从错误 channel 中读取所有错误并找出失败的原因。
// Keep entity statuses
statuses:=make([]Status,len(entity))
for i, link := range entity {
statuses[i].Entity=link
wg.Add(1)
go func(i index) {
defer wg.Done()
ctx, cancel:=context.WithCancel(context.Background())
defer cancel()
// Error collector
status:=make(chan error)
defer close(status)
go func() {
for st:=range status {
if st!=nil {
cancel() // Stop all calls
// store first error
if statuses[i].Err==nil {
statuses[i].Err=st
}
}
}
}()
innerWg:=sync.WaitGroup{}
innerWg.Add(1)
go func() {
defer innerWg.Done()
status<- makeHttpCall(ctx)
}()
innerWg.Add(1)
go func() {
defer innerWg.Done()
status<- makeHttpCall(ctx)
}()
...
innerWg.Wait()
}(i)
}
一切就绪后,
statuses
将包含所有实体和相应的状态。
关于go - 嵌套在一堆 goroutine 中的 errgroup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63457401/
四哥水平有限,如果有翻译或理解错误的点,烦请帮忙指出,感谢! 这是系列文章的第二篇,第一篇文章点击这里查看。 原文如下: 基于 goroutine 和 channel 的并发特性,使得 G
我正在尝试在其中一个遇到错误后取消剩余的 goroutine,或者至少取消其中的 fetch 函数调用。 func fetch(n int, fail bool) (string, error) {
我对 golang 及其并发原则相当陌生。我的用例涉及对一批实体执行多个 http 请求(针对单个实体)。如果某个实体的任何 http 请求失败,我需要停止它的所有并行 http 请求。此外,我必须管
我看到了 example godoc 中的 errgroup,这让我很困惑,它只是将结果分配给全局结果,而不是在每个搜索例程中使用 channel 。继承人的代码: Google := func(ct
我是一名优秀的程序员,十分优秀!