如何让golang mysql驱动程序在2秒内超时ping?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让golang mysql驱动程序在2秒内超时ping?相关的知识,希望对你有一定的参考价值。

我在查找如何在Go中正确进行数据库连接尝试超时时遇到一些麻烦。我在this excellent resource使用一些例子作为基础。我相信我正确地设置了一切,但是我的ping只是拒绝在2秒后超时。我已将有问题的代码提取到示例程序中,如下所示。请注意,172.1.2.3没有运行数据库。

package main

import (
    "context"
    "database/sql"
    _ "github.com/go-sql-driver/mysql" //MySQL driver
    "log"
    "time"
)

func main() {
    log.Print("Trying to ping database!")

    //Prepare a "context" to execute queries in, this will allow us to use timeouts
    var bgCtx = context.Background()
    var ctx2SecondTimeout, cancelFunc2SecondTimeout = context.WithTimeout(bgCtx, time.Second*2)
    defer cancelFunc2SecondTimeout()

    //Open  database connection
    db, err := sql.Open("mysql", "root:@tcp(172.1.2.3)/testdb?parseTime=true")
    if err != nil {
        log.Printf("Unable to open db, %s", err.Error())
        return
    }
    log.Print("Successfully called open()")

    //Ping database connection with 2 second timeout
    err = db.PingContext(ctx2SecondTimeout)
    if err != nil {
        log.Printf("Can't ping database server in order to use storage, %s", err.Error())
        return
    }
    log.Print("Successfully pinged database!")
}

运行该程序最多需要2秒钟,但需要2分钟以上:

$ go run lambdatry.go
2018/09/03 16:33:33 Trying to ping database!
2018/09/03 16:33:33 Successfully called open()
2018/09/03 16:35:43 Can't ping database server in order to use storage, dial tcp 172.1.2.3:3306: connect: connection timed out

如果我更改了“数据库”的IP(我刚刚选择了一个随机IP,因此该地址没有数据库),数据库有时会立即超时,有时需要很长时间才能超时。

我在ubuntu 18.04上运行1.10.1。

答案

可能是这个问题:https://github.com/golang/go/issues/27476

我的问题略有不同,它超过一个1s而不是2s或3s! https://media.dev.unee-t.com/2018-09-05/pingcontext.mp4

我的来源是:https://media.dev.unee-t.com/2018-09-05/main.go

以上是关于如何让golang mysql驱动程序在2秒内超时ping?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 grails 中实现请求超时?

golang中mysql建立连接超时时间timeout 测试

Heroku Node.js 错误 R10(启动超时)-> Web 进程在启动后 60 秒内无法绑定到 $PORT

R Shiny App 在 60 秒内超时,即使在 conf 文件中传递了 app_init_timeout 设置后也是如此

在 python 上获取“错误 R10(启动超时)-> Web 进程未能在启动后 60 秒内绑定到 $PORT”

如何在每 10 秒内添加一个敌人并让这个敌人跟踪您的位置并跟随它