dongzhun1857 2015-09-20 23:42
浏览 23
已采纳

当非阻塞读取行挂起时,goroutine泄漏

Assuming you have a structure like this:

ch := make(chan string)
errCh := make(chan error)
go func() {
    line, _, err := bufio.NewReader(r).ReadLine()
    if err != nil {
        errCh <- err
    } else {
        ch <- string(line)
    }
}()
select {
case err := <-errCh:
    return "", err
case line := <-ch:
    return line, nil
case <-time.After(5 * time.Second):
    return "", TimeoutError
}

In the case of the 5 second timeout, the goroutine hangs until ReadLine returns, which may never happen. My project is a long-running server, so I don't want a buildup of stuck goroutines.

  • 写回答

1条回答 默认 最新

  • duanmu5641 2015-09-21 01:33
    关注

    ReadLine will not return until either the process exits or the method reads a line. There's no deadline or timeout mechanism for pipes.

    The goroutine will block if the call to ReadLine returns after the timeout. This can be fixed by using buffered channels:

    ch := make(chan string, 1)
    errCh := make(chan error, 1)
    

    The application should call Wait to cleanup resources associated with the command. The goroutine is a good place to call it:

    go func() {
      line, _, err := bufio.NewReader(r).ReadLine()
      if err != nil {
        errCh <- err
      } else {
        ch <- string(line)
      }
      cmd.Wait() // <-- add this line
    }()
    

    This will cause the goroutine to block, the very thing you are trying to avoid. The alternative is that the application leaks resources for each command.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突