gpt4 book ai didi

go - 为什么我的 Golang channel 写入永远阻塞?

转载 作者:IT王子 更新时间:2023-10-29 01:11:57 27 4
gpt4 key购买 nike

在过去的几天里,我一直在尝试通过重构我的一个命令行实用程序来改变 Golang 的并发性,但我被卡住了。

Here's 原始代码(主分支)。

Here's 并发分支(x_concurrent分支)

当我使用 go run jira_open_comment_emailer.go 执行并发代码时,如果 JIRA 问题被添加到 channel heredefer wg.Done() 永远不会执行,这导致我的 wg.Wait() 永远挂起。

我的想法是,我有大量的 JIRA 问题,我想为每个问题分拆一个 goroutine,看看它是否有我需要回复的评论。如果是这样,我想将它添加到某种结构(经过一些研究后我选择了一个 channel ),以后我可以像队列一样从中读取以建立电子邮件提醒。

这是代码的相关部分:

// Given an issue, determine if it has an open comment
// Returns true if there is an open comment on the issue, otherwise false
func getAndProcessComments(issue Issue, channel chan<- Issue, wg *sync.WaitGroup) {
// Decrement the wait counter when the function returns
defer wg.Done()

needsReply := false

// Loop over the comments in the issue
for _, comment := range issue.Fields.Comment.Comments {
commentMatched, err := regexp.MatchString("~"+config.JIRAUsername, comment.Body)
checkError("Failed to regex match against comment body", err)

if commentMatched {
needsReply = true
}

if comment.Author.Name == config.JIRAUsername {
needsReply = false
}
}

// Only add the issue to the channel if it needs a reply
if needsReply == true {
// This never allows the defered wg.Done() to execute?
channel <- issue
}
}

func main() {
start := time.Now()

// This retrieves all issues in a search from JIRA
allIssues := getFullIssueList()

// Initialize a wait group
var wg sync.WaitGroup

// Set the number of waits to the number of issues to process
wg.Add(len(allIssues))

// Create a channel to store issues that need a reply
channel := make(chan Issue)

for _, issue := range allIssues {
go getAndProcessComments(issue, channel, &wg)
}

// Block until all of my goroutines have processed their issues.
wg.Wait()

// Only send an email if the channel has one or more issues
if len(channel) > 0 {
sendEmail(channel)
}

fmt.Printf("Script ran in %s", time.Since(start))
}

最佳答案

goroutines 在发送到无缓冲 channel 时阻塞。解除 goroutine 阻塞的最小更改是创建一个缓冲 channel ,该 channel 具有处理所有问题的能力:

channel := make(chan Issue, len(allIssues))

并在调用 wg.Wait() 后关闭 channel 。

关于go - 为什么我的 Golang channel 写入永远阻塞?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37439776/

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