当前位置:   article > 正文

实例详解在Go中构建流数据pipeline_golang pipeline

golang pipeline

本文分享自华为云社区《Go并发范式 流水线和优雅退出 Pipeline 与 Cancellation》,作者:张俭。

介绍

Go 的并发原语可以轻松构建流数据管道,从而高效利用 I/O 和多个 CPU。 本文展示了此类pipelines的示例,强调了操作失败时出现的细微之处,并介绍了干净地处理失败的技术。

什么是pipeline?

pipeline在Go中并没有书面的定义,只是众多并发程序中的一种。非正式地,pipeline由一系列stage组成。每个stage是运行着同一个function的协程组。在每个stage,协程们

  • 通过inbound channel从上游获取数据
  • 在data上进行运算,通常会产生新的值
  • 通过outbound channel向下游发送数据

每个Stage都有数个inbound channel和outbound channel,除了第一个和最后一个Stage,分别只有outbound和inbound channel。第一个Stage通常叫做Source或Producer。最后一个Stage通常叫做Sink或Consumer。

我们将从一个简单的示例pipeline开始来解释这些想法和技术。 稍后,我们将提供一个更实际的例子。

Squaring numbers 平方数

考虑一个有着三个阶段的流水线

第一阶段,gen,是个将整数列表转换为一个发射列表中整数的channel的函数。gen函数启动一个go routine,用来发送channel中的整数,然后当所有的整数都被发出后,将channel关闭:

  1. func gen(nums ...int) <-chan int {
  2. out := make(chan int)
  3. go func() {
  4. for _, n := range nums {
  5. out <- n
  6. }
  7. close(out)
  8. }()
  9. return out
  10. }

第二阶段,sq从上面的channel中接收数据,返回一个发射对应整数平方数的channel。当inbound channel关闭后,并且这一阶段将所有的value发送到下游后,再将这个outbound channel关闭

  1. func sq(in <-chan int) <-chan int {
  2. out := make(chan int)
  3. go func() {
  4. for n := range in {
  5. out <- n * n
  6. }
  7. close(out)
  8. }()
  9. return out
  10. }

main函数组织整个pipeline,并且运行最终的stage:从第二个stage中接收数据然后逐个打印,直到channel被关闭

  1. func main() {
  2. // Set up the pipeline
  3. c := gen(2, 3)
  4. out := sq(c)
  5. // Consume the output
  6. // 4
  7. fmt.Println(<-out)
  8. // 9
  9. fmt.Println(<-out)
  10. }

既然sq的inbound channel和outbound channel类型相同,我们可以将其进行任意数量的组合。我们还可以将main函数重写为循环,就像在其他Stage中做的那样一样。

  1. func main() {
  2. // Set up the pipeline and consume the output.
  3. for n := range sq(sq(gen(2, 3))) {
  4. fmt.Println(n) // 16 then 81
  5. }
  6. }

扇入和扇出

许多函数可以从一个channel中获取数据直到channel被关闭,这被叫做扇出。这提供了一种在worker之间分配工作以并行化 CPU 使用和 I/O 的方法。

一个函数可以通过将多个input channel多路复用到同一个channel,当所有的channel关闭时,该多路复用channel才关闭。从而达到从多个input获取数据并处理,直到所有input channel都关闭才停止的效果。这叫做扇入。

我们可以将我们的流水线改为运行两个sq,每个都从相同的channel读取数据。我们引入一个新的函数merge,来做扇入的工作

  1. func main() {
  2. in := gen(2, 3)
  3. // Distribute the sq work across two goroutines that both read from in.
  4. c1 := sq(in)
  5. c2 := sq(in)
  6. // Consume the merged output from c1 and c2.
  7. for n := range merge(c1, c2) {
  8. fmt.Println(n) // 4 then 9, or 9 then 4
  9. }
  10. }

merge函数通过对每个channel开启一个协程,把数据拷贝到另一个out channel中,实现将channel列表转换为一个channel的效果。当所有send操作完成后,再将out channel关闭。

向一个已经关闭上的channel发送数据会导致panic,所以保证发送完所有再关闭channel至关重要。sync.WaitGroup提供了一个简单地方式来编排这个同步

  1. func merge(cs ...<-chan int) <-chan int {
  2. var wg sync.WaitGroup
  3. out := make(chan int)
  4. // Start an output goroutine for each input channel in cs. output
  5. // copies values from c to out until c is closed, then calls wg.Done
  6. output := func(c <-chan int) {
  7. for n := range c {
  8. out <- n
  9. }
  10. wg.Done()
  11. }
  12. wg.Add(len(cs))
  13. for _, c := range cs {
  14. go output(c)
  15. }
  16. // Start a goroutine to close out once all the output goroutines are
  17. // done. This must start after the wg.Add call.
  18. go func() {
  19. wg.Wait()
  20. close(out)
  21. }()
  22. return out
  23. }

短暂的停顿

我们的pipeline函数有这样的模式:

  • 当发送任务结束后,关闭发送output channel
  • 直到input channel关闭前,一直从input channel中接收消息

这个模式下,每个阶段都可以用协程+for循环的模式来书写,保证每个数据发送到下游后再关闭所有协程。

但是在实际的pipeline中,阶段并不总是接收所有来自inbound channel的数据。通常,如果inbound的值出现了错误,pipeline会提前退出。 在任何一种情况下,接收者都不必等待剩余值到达,并且我们希望fast fail(较早阶段的Stage尽早停止后期Stage不需要的值)。

在我们的示例pipeline中,如果一个Stage未能消费所有inbound值,则尝试计算后并发送这些值的 goroutine 将无限期阻塞:

  1. // Consume the first value from the output.
  2. out := merge(c1, c2)
  3. fmt.Println(<-out) // 4 or 9
  4. return
  5. // Since we didn't receive the second value from out,
  6. // one of the output goroutines is hung attempting to send it.
  7. }

这就导致了资源泄漏:协程消耗内存、运行资源,并且在协程栈内的golang堆引用导致垃圾无法回收。协程只能自己退出,不能由垃圾回收机制回收。

即使下游的Stage无法接收所有inbound value,我们也需要把上游的协程退出。如果把上游的协程改为有buffer的,可以解决上面的问题。如果Buffer中还有空间,则发送操作可以立刻完成

  1. c := make(chan int, 2) // buffer size 2
  2. c <- 1 // succeeds immediately
  3. c <- 2 // succeeds immediately
  4. c <- 3 // blocks until another goroutine does <-c and receives 1

当要发送的数目可以在channel创建时知道时,buffer可以简化代码。举个例子,让我们来使用buffer channel,不开辟新的协程来重写gen方法:

  1. func gen(nums ...int) <-chan int {
  2. out := make(chan int, len(nums))
  3. for _, n := range nums {
  4. out <- n
  5. }
  6. close(out)
  7. return out
  8. }

在我们的pipeline中,我们就需要在merge方法中使用的channel添加buffer:

  1. func merge(cs ...<-chan int) <-chan int {
  2. var wg sync.WaitGroup
  3. out := make(chan int, 1) // enough space for the unread inputs
  4. // ... 其余的没有变更 ...

尽管上面这个方案修复了阻塞的问题,但它是很差的方案。这里有一个对1的硬编码,这太脆弱了?你真的能预料到有多少个值不能被正常发送吗?一旦两个值不能正常发送,你的协程又阻塞了。

作为替代,我们需要给下游阶段提供一个机制,知会下游阶段,发送者已经停止发送了。

Explicity cancellation 显示取消

当main函数决定不从out处接收所有数据,而是退出时,它必须知会上游阶段的协程放弃接下来的发送。它通过向一个名叫done的channel发送数据来完成这个动作。因为发送方有两个,所以 向done发送两次数据。

  1. func main() {
  2. in := gen(2, 3)
  3. // Distribute the sq work across two goroutines that both read from in.
  4. c1 := sq(in)
  5. c2 := sq(in)
  6. // Consume the first value from output.
  7. done := make(chan struct{}, 2)
  8. out := merge(done, c1, c2)
  9. fmt.Println(<-out) // 4 or 9
  10. // Tell the remaining senders we're leaving.
  11. done <- struct{}{}
  12. done <- struct{}{}
  13. }

发送到out channel的发送者把原来的逻辑替换成一个select操作,select或者发送一个数据,抑或从done处接收到数据。因为done中数据值的类型根本不重要,主要是接收到值这个事件本身很重要,所以done channel的类型时struct {}。output循环继续在inbound channel上执行,所以上游的阶段并没有被阻塞。(我们稍后会讨论如何让循环迅速返回。)

  1. func merge(done <-chan struct{}, cs ...<-chan int) <-chan int {
  2. var wg sync.WaitGroup
  3. out := make(chan int)
  4. // Start an output goroutine for each input channel in cs. output
  5. // copies values from c to out until c is closed or it receives a value
  6. // from done, then output calls wg.Done.
  7. output := func(c <-chan int) {
  8. for n := range c {
  9. select {
  10. case out <- n:
  11. case <-done:
  12. }
  13. }
  14. wg.Done()
  15. }
  16. // ... the rest is unchanged ...

这个方法有一个问题:每一个下游接收者都需要知道可能阻塞的上游发送者总数。维护它们的数目,是一个琐碎又容易出错的事情。

我们需要一个机制来让不可知的、无界的发送协程来停止发送到下游的值。在Go,我们可以通过关闭channel来完成这件事,因为在已经关闭的channel上执行receive操作,会立刻返回该元素的零值。

这说明main函数可以简单地通过关闭done channel来让所有的发送者不阻塞。关闭操作是一个高效的广播。我们把pipeline中的每个函数都接受done作为参数,并把done在defer语句中关闭, 这样,如果在main函数中返回,都会通知pipeline中的阶段退出。

  1. func main() {
  2. // Set up a done channel that's shared by the whole pipeline,
  3. // and close that channel when this pipeline exits, as a signal
  4. // for all the goroutines we started to exit.
  5. done := make(chan struct{})
  6. defer close(done)
  7. in := gen(done, 2, 3)
  8. // Distribute the sq work across two goroutines that both read from in.
  9. c1 := sq(done, in)
  10. c2 := sq(done, in)
  11. // Consume the first value from output.
  12. out := merge(done, c1, c2)
  13. fmt.Println(<-out) // 4 or 9
  14. // done will be closed by the deferred call.
  15. }

现在当donechannel关闭后,接收到close信息的阶段,都可以直接退出了。merge函数中的outout协程可以不从inbound channel中取数据直接退出,因为它知道,上游的发送sq,接收到close信息,也会直接退出。output通过defer语句来保证wg.Done()一定被调用。(译者注:来关闭out channel)

  1. func merge(done <-chan struct{}, cs ...<-chan int) <-chan int {
  2. var wg sync.WaitGroup
  3. out := make(chan int)
  4. // Start an output goroutine for each input channel in cs. output
  5. // copies values from c to out until c or done is closed, then calls
  6. // wg.Done.
  7. output := func(c <-chan int) {
  8. defer wg.Done()
  9. for n := range c {
  10. select {
  11. case out <- n:
  12. case <-done:
  13. return
  14. }
  15. }
  16. }
  17. // ... the rest is unchanged ...

相似的,当接收到close信号时,sq函数也可以立刻返回。sq通过defer语句来保证outchannel一定被关闭。

这是给构建pipeline的一些指导:

  • 当所有的发送操作完成后,关闭outbound channel
  • 如果发送发不阻塞,或是channel没有关闭,接收者会一直从channel中接收数据

Pipeline通过如下两个方式来解除发送者的阻塞

  • 确保channel的buffer足够大
  • 显示知会发送者,接收者已经放弃接收

Digesting a tree 对树进行摘要

让我们来考虑一个更实际的pipeline

MD5 是一种消息摘要算法,可用作文件校验和。 命令行实用程序 md5sum 打印文件列表的摘要值。

  1. % md5sum *.go
  2. d47c2bbc28298ca9befdfbc5d3aa4e65 bounded.go
  3. ee869afd31f83cbb2d10ee81b2b831dc parallel.go
  4. b88175e65fdcbc01ac08aaf1fd9b5e96 serial.go

我们的示例程序类似于 md5sum,但将单个目录作为参数并打印该目录下每个常规文件的摘要值,按路径名排序。

  1. % go run serial.go .
  2. d47c2bbc28298ca9befdfbc5d3aa4e65 bounded.go
  3. ee869afd31f83cbb2d10ee81b2b831dc parallel.go
  4. b88175e65fdcbc01ac08aaf1fd9b5e96 serial.go

我们的主函数调MD5All这个辅助函数,返回路径名和摘要值的map,main函数再将它们排序打印

  1. func main() {
  2. // Calculate the MD5 sum of all files under the specified directory,
  3. // then print the results sorted by path name.
  4. m, err := MD5All(os.Args[1])
  5. if err != nil {
  6. fmt.Println(err)
  7. return
  8. }
  9. var paths []string
  10. for path := range m {
  11. paths = append(paths, path)
  12. }
  13. sort.Strings(paths)
  14. for _, path := range paths {
  15. fmt.Printf("%x %s\n", m[path], path)
  16. }
  17. }

MD5All函数是我们讨论的重点。在如下串行化的实现中,没有使用并发技术,只是简单对文件进行了遍历

  1. // MD5All reads all the files in the file tree rooted at root and returns a map
  2. // from file path to the MD5 sum of the file's contents. If the directory walk
  3. // fails or any read operation fails, MD5All returns an error.
  4. func MD5All(root string) (map[string][md5.Size]byte, error) {
  5. m := make(map[string][md5.Size]byte)
  6. err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
  7. if err != nil {
  8. return err
  9. }
  10. if !info.Mode().IsRegular() {
  11. return nil
  12. }
  13. data, err := ioutil.ReadFile(path)
  14. if err != nil {
  15. return err
  16. }
  17. m[path] = md5.Sum(data)
  18. return nil
  19. })
  20. if err != nil {
  21. return nil, err
  22. }
  23. return m, nil
  24. }

并行计算摘要

在并行的解法中,我们将MD5All分割为两个阶段的pipeline。第一个阶段,sumFiles,遍历文件树,针对每个文件,在新的协程中计算摘要,然后把结果发送到channel中,这是result的类型

  1. type result struct {
  2. path string
  3. sum [md5.Size]byte
  4. err error
  5. }

sumFiles返回两个channel:一个是result channel,另一个是filepath.Walk中产生的错误。walk函数针对每个文件启动一个新的协程来处理,然后检查donechannel。如果done已经被关闭,walk函数会立刻停止:

  1. func sumFiles(done <-chan struct{}, root string) (<-chan result, <-chan error) {
  2. // For each regular file, start a goroutine that sums the file and
  3. // sends the result on c.
  4. // Send the result of the walk on errc.
  5. c := make(chan result)
  6. errc := make(chan error, 1)
  7. go func() {
  8. var wg sync.WaitGroup
  9. // If any error occurred, walk method will return
  10. err := filepath.Walk(root, func(path string, info fs.FileInfo, err error) error {
  11. if err != nil {
  12. return err
  13. }
  14. if !info.Mode().IsRegular() {
  15. return nil
  16. }
  17. wg.Add(1)
  18. go func() {
  19. data, err := ioutil.ReadFile(path)
  20. select {
  21. case c <- result{
  22. path: path,
  23. sum: md5.Sum(data),
  24. err: err,
  25. }:
  26. case <-done:
  27. }
  28. wg.Done()
  29. }()
  30. // Abort the walk if done is closed.
  31. select {
  32. case <-done:
  33. return errors.New("walk canceled")
  34. default:
  35. return nil
  36. }
  37. })
  38. // Walk has returned, so all calls to wg.Add are done.
  39. // Start a goroutine to close c once all the sends are done.
  40. // No select needed here, since errc is buffered.
  41. errc <- err
  42. }()
  43. return c, errc
  44. }

MD5All从c中接收到摘要数据。当发生错误时,MD5All会迅速返回,通过defer语句来关闭done channel

  1. func MD5All(root string) (map[string][md5.Size]byte, error) {
  2. // MD5All closes the done channel when it returns; it may do so before
  3. // receiving all the values from c and errc.
  4. done := make(chan struct{})
  5. defer close(done)
  6. c, errc := sumFiles(done, root)
  7. m := make(map[string][md5.Size]byte)
  8. for r := range c {
  9. if r.err != nil {
  10. return nil, r.err
  11. }
  12. m[r.path] = r.sum
  13. }
  14. if err := <-errc; err != nil {
  15. return nil, err
  16. }
  17. return m, nil
  18. }

有界的并行

parallel.go 中的 MD5All 实现为每个文件启动一个新的 goroutine。 在包含许多大文件的目录中,这可能会分配比机器上可用的内存更多的内存。

我们可以通过限制并行读取的文件数量来限制这些分配。 在新的解决方式中,我们通过创建固定数量的 goroutine 来读取文件来做到这一点。 我们的pipeline现在分为三个阶段:遍历树、读取并计算文件摘要以及收集摘要。

第一阶段 walkFiles 发射出文件树中常规文件的路径:

  1. func walkFiles(done <-chan struct{}, root string) (<-chan string, <-chan error) {
  2. paths := make(chan string)
  3. errc := make(chan error, 1)
  4. go func() {
  5. // Close the paths channel after Walk returns.
  6. defer close(paths)
  7. // No select needed for this send, since errc is buffered.
  8. errc <- filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
  9. if err != nil {
  10. return err
  11. }
  12. if !info.Mode().IsRegular() {
  13. return nil
  14. }
  15. select {
  16. case paths <- path:
  17. case <-done:
  18. return errors.New("walk canceled")
  19. }
  20. return nil
  21. })
  22. }()
  23. return paths, errc
  24. }

第二阶段启动固定数量的协程来计算文件摘要,然后发送到c channel中

  1. func digester(done <-chan struct{}, paths <-chan string, c chan<- result) {
  2. for path := range paths {
  3. data, err := ioutil.ReadFile(path)
  4. select {
  5. case c <- result{path, md5.Sum(data), err}:
  6. case <-done:
  7. return
  8. }
  9. }
  10. }

和之前的示例不同,因为多个协程都在共享channel上发送数据,digester函数并没有关闭output channel。作为替代,当所有的digesters跑完之后,MD5All会关闭channel

  1. // Start a fixed number of goroutines to read and digest files.
  2. c := make(chan result)
  3. var wg sync.WaitGroup
  4. const numDigesters = 20
  5. wg.Add(numDigesters)
  6. for i := 0; i < numDigesters; i++ {
  7. go func() {
  8. digester(done, paths, c)
  9. wg.Done()
  10. }()
  11. }
  12. go func() {
  13. wg.Wait()
  14. close(c)
  15. }()

这里也可以针对每个digester开启独立的channel,不过到时候就要对channel进行扇入处理。

最终阶段从c中取得所有结果,并且检查errc中的错误。此检查不能更早发生,因为在此之前,walkFiles 可能会阻塞:

(译者注:要保证检查errc的错误,发生在filePath.Walk启动后,done不会再次发送了,协程就不会退出)

  1. m := make(map[string][md5.Size]byte)
  2. for r := range c {
  3. if r.err != nil {
  4. return nil, r.err
  5. }
  6. m[r.path] = r.sum
  7. }
  8. // Check whether the Walk failed.
  9. if err := <-errc; err != nil {
  10. return nil, err
  11. }
  12. return m, nil
  13. }

总结

本文介绍了在 Go 中构建流数据pipeline的技术。 处理此类pipeline中的故障很棘手,因为pipeline中的每个阶段可能会阻止尝试向下游发送值,并且下游阶段可能不再关心传入的数据。 我们展示了关闭通道如何向管道启动的所有 goroutine 广播“done”信号,并定义了正确构建管道的指南。

参考资料:

翻译自 https://blog.golang.org/pipelines

术语

Pipeline:流水线

Stage:阶段

fan-in:扇入

fan-out:扇出

点击关注,第一时间了解华为云新鲜技术~  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/165733
推荐阅读
相关标签
  

闽ICP备14008679号