【发布时间】:2021-03-29 06:04:51
【问题描述】:
我正在尝试找到一种有效的方法来关闭我所有的 go 例程,一旦我得到我的操作系统中断信号。在这里,我正在轮询事件(比如从某个队列中)并在 goroutine 中处理它。但是当我收到操作系统中断时,我想确保正在运行的作业在终止之前完成。只有在所有 goroutine 完成后,我还需要做一些额外的事情。下面的代码对我来说似乎很好,但是有没有更好/有效的方法来做到这一点?
package main
import (
"fmt"
"os"
"os/signal"
"sync"
"syscall"
"time" // or "runtime"
)
func something(wg *sync.WaitGroup){
defer wg.Done()
fmt.Println("something is happening here...")
time.Sleep(10 * time.Second)
fmt.Println("job done...")
}
func main() {
c := make(chan os.Signal)
mutex := sync.Mutex{}
stop := make(chan int, 1)
signal.Notify(c, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
wg := sync.WaitGroup{}
count := 0
go func() {
<-c
currentTime := time.Now()
fmt.Println("Interrupt signal got at: ", currentTime.String())
// do not let the code shutdown without running everything we needed to do
mutex.Lock()
stop <- 1
fmt.Println("Done .. try shutting down")
wg.Wait()
// do cleanup
time.Sleep(3*time.Second)
fmt.Println("All cleanup completed .. shut down")
currentTime = time.Now()
fmt.Println("Kill at : ", currentTime.String())
mutex.Unlock()
}()
// This for loop is for reading messages from queue like sqs, and it has to be infinite loop because there might be scenarios where there are no events for period of time.
for {
// read off of queue
select {
case stop <- 1:
fmt.Println("Not stopped yet")
wg.Add(1)
go something(&wg)
<- stop
count ++
default:
// try getting the lock before exiting (so that other cleanups are done)
mutex.Lock()
fmt.Println("Done! All jobs completed: Jobs count",count)
return
}
fmt.Println("Processing job -", count)
time.Sleep(1 * time.Second)
}
}
【问题讨论】:
-
很棒的文章。谢谢
标签: go concurrency signals goroutine