search
HomeBackend DevelopmentGolangGo program exits before goroutine work completes
Go program exits before goroutine work completesFeb 08, 2024 pm 10:57 PM
go language

Go 程序在 goroutine 工作完成之前退出

In this article, php editor Xiaoxin will introduce an important issue about Go programs: the situation of exiting before the goroutine work is completed. In the Go language, goroutine is a lightweight thread that can execute tasks concurrently. However, when our program may exit before the goroutine work is completed, we need to understand how to handle this situation to ensure that our program completes the task correctly. In the following content, we will explore this problem and provide some solutions to solve it.

Question Content

I'm having trouble understanding how to properly block and close channels. I'm starting an arbitrary number of workers and I'm finding that my main function either exits before the workers complete or hangs due to unclosed channels. I need a better way to stop the worker from reading the channel without exiting the main channel, and then gracefully close the channel when finished to end the loop. Any attempts I make end in deadlock.

I tried a few things including using a wait group, but the problem persists. I noticed that by adding time.sleep the program works as expected, but commenting it out results in no work being done.

time.sleep(time.duration(10 * time.second))

This is a runnable example https://go.dev/play/p/qhqnj-ajqbi which preserves sleep. This is the broken code with the sleep timeout commented out.

package main

import (
    "fmt"
    "sync"
    "time"
)

// some complicated work
func do(num int, ch chan<- int) {
    time.sleep(time.duration(500 * time.millisecond))
    ch <- num
}

func main() {

    results := make(chan int)

    // for some number of required complicated work
    for i := 0; i < 53; i++ {
        go do(i, results)
    }

    var wg sync.waitgroup

    // start 3 workers which can process results
    for i := 0; i < 3; i++ {
        wg.add(1)
        go func(id int) {
            defer wg.done()
            worker(id, results)
        }(i)
    }

    // handle closing the channel when all workers complete
    go func() {
        wg.wait()
        close(results)
    }()

    //time.sleep(time.duration(10 * time.second))

    fmt.println("donezo")
}

// process the results of do() in a meaningful way
func worker(id int, ch <-chan int) {
    fmt.println("starting worker", id)

    for i := range ch {
        fmt.println("channel val:", i)
    }
}

I also tried moving defer wg.done() inside the worker() func but it's the same problem and doesn't work without sleep.

// process the results of do() in a meaningful way
func worker(wg *sync.WaitGroup, id int, ch <-chan int) {
    fmt.Println("starting worker", id)

    defer wg.Done()

    for i := range ch {
        fmt.Println("channel val:", i)
    }
}

Did I choose the wrong paradigm, or am I just using the wrong paradigm?

Workaround

I originally asked "Can I make some small adjustments to my code to make it work? Or do I have to rethink this problem?" I The answer found is that, yes, there is a small adjustment.

I had to learn an interesting basic concept about channels: you can read data from a closed channel, i.e. drain the channel. As mentioned in my original example range never terminates because I can't find a good place to close the channel, and even when I force it in other creative ways the program behaves poorly Behavior

  • Exited without processing all content in the channel
  • Deadlock or sending on closed channel

This is due to a subtle difference in the "real" code where the time required to process the channel contents is longer than the time required to populate the channel and Things are out of sync.

Since there is no clear practical way to close the channel in my sender (which is recommended in 99% of channel tutorials), when you have multiple workers reading the channel and the workers don't know about it, by It's actually acceptable to do this with a goroutine in main where the last value is read.

solution

I wrapped the worker in its own sync.waitgroup and used worker.wait() to block the program exit, thus allowing the work to "finish". When there is no more data to send, I close() the channel independently, i.e. I block by waiting for the writer to finish using their own wait group. close Provides a termination case for range loops because when the channel's default value is returned, i.e. the eof type is reached when the end of the channel is reached, it will end. A blocking rendezvous channel has no endpoint until it is closed.

My take on this is that if you don't know how many values ​​will be pushed in parallel, go has no way of knowing the length of the unbuffered channel because it's in scope, until you close it. . Since it's closed, it means reading whatever is left until the termination value or the end. workers.wait() will block until completed.

Examples of resolved operations https://www.php.cn/link/2bf0ccdbb4d3ebbcb990af74bd78c658

Example of reading closed channel https://www.php.cn/link/d5397f1497b5cdaad7253fdc92db610b

Output

filling 0
filling 1
filling 2
filling 3
filling 4
filling 5
filling 6
filling 7
filling 8
filling 9
closed
empyting 0
empyting 1
empyting 2
empyting 3
empyting 4
empyting 5
empyting 6
empyting 7
empyting 8
empyting 9

The above is the detailed content of Go program exits before goroutine work completes. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
go语言有没有缩进go语言有没有缩进Dec 01, 2022 pm 06:54 PM

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言为什么叫gogo语言为什么叫goNov 28, 2022 pm 06:19 PM

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

一文详解Go中的并发【20 张动图演示】一文详解Go中的并发【20 张动图演示】Sep 08, 2022 am 10:48 AM

Go语言中各种并发模式看起来是怎样的?下面本篇文章就通过20 张动图为你演示 Go 并发,希望对大家有所帮助!

【整理分享】一些GO面试题(附答案解析)【整理分享】一些GO面试题(附答案解析)Oct 25, 2022 am 10:45 AM

本篇文章给大家整理分享一些GO面试题集锦快答,希望对大家有所帮助!

tidb是go语言么tidb是go语言么Dec 02, 2022 pm 06:24 PM

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

go语言能不能编译go语言能不能编译Dec 09, 2022 pm 06:20 PM

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

go语言是否需要编译go语言是否需要编译Dec 01, 2022 pm 07:06 PM

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

golang map怎么删除元素golang map怎么删除元素Dec 08, 2022 pm 06:26 PM

删除map元素的两种方法:1、使用delete()函数从map中删除指定键值对,语法“delete(map, 键名)”;2、重新创建一个新的map对象,可以清空map中的所有元素,语法“var mapname map[keytype]valuetype”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!