gpt4 book ai didi

go - 嵌套在一堆 goroutine 中的 errgroup

转载 作者:行者123 更新时间:2023-12-01 22:21:13 32 4
gpt4 key购买 nike

我对 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/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com