dongyou26216708 2018-12-26 12:33
浏览 54
已采纳

所有goroutine都处于睡眠状态-死锁(无限循环+选择)

I have an app which creates, every few seconds, a routine fetching the current price from an API. It then sends the response to Monitor routine for analysis. If the Monitor finds that the price has changed significantly, it sends a notification.

It works fine if the delay between each go routine is large. It doesn't, if it is small: "fatal error: all goroutines are asleep - deadlock!" gets triggered and the program crashes.

I'm guessing (?) that the deadlock is caused by either (1) the Monitor being flooded with new price information (and not managing to analyse them timely); or (2) the Main function being flooded by messages from the Monitor.

There is probably also some weakness in the fact that the Main function appends the new price to a slice, while the Monitor is iterating through it.

How can this be resolved? Reading other posts here I thought that the "select" statement would be the magic cure, but it doesn't seem to be...

func main() {
    ec := make(chan entry, 10)
    mce := make (chan entry, 10)
    mcn := make(chan string, 10)

    go monitor(mce, mcn)

    for {
        go fetchData(ec)
    select {
        // get entries
        case newEntry := <- ec:
            log = append(log, newEntry)
            mce <- newEntry
        default:
            {}
        }

        //check if any notifications received
        select {
        case newMsg := <- mcn:
            fmt.Println(newMsg)
        default:
            {}
        }

        delay()
    }
}

func monitor(mce <-chan entry, mcn chan<- string) {


    for {
        newEntry = <- mce

        for _, item := range log {
            // here - do some analysis comparing the newEntry against previous entries
            // (essentially to see if notification should be triggered)
        }

        if should_send_notification {
            mcn <- msg
        }

    }
}

func fetchData(ec chan<- entry) {

    // here some code fetching newEntry from APIs

    // send the newEntry back to the main function
    ec <- newEntry

}
  • 写回答

1条回答 默认 最新

  • douxiyi2418 2018-12-26 13:37
    关注

    You only need merge the select on one and remove the default statement on main function. Removing the default statement you don't need a delay() function because the select-case works blocking and waiting some message from channels:

    func main() {
        ec := make(chan entry, 10)
        mce := make (chan entry, 10)
        mcn := make(chan string, 10)
    
        go monitor(mce, mcn)
        go fetchData(ec)
        for {
            select {
                // get entries
                case newEntry := <- ec:
                    log = append(log, newEntry)
                    mce <- newEntry
                //check if any notifications received
                case newMsg := <- mcn:
                    fmt.Println(newMsg)
            }
        }
    }
    

    The fetchData(ec) is convenient to implement like blocking and do not call it continuously:

    func fetchData(ec chan<- entry) {
    
        for {
            // here some code fetching newEntry from APIs
            // waiting data
    
            // send the newEntry if I get data
            ec <- newEntry
        }
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵