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

6mw9ycah  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(584)

我在弄清楚如何在go中正确地使数据库连接尝试超时时遇到了一些问题。我正在使用这个优秀资源中的一些示例作为基础。我相信我设置的一切都正确,但我的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,所以这个地址没有数据库),数据库有时会立即超时,有时会花很长时间超时。
我在ubuntu18.04上运行go 1.10.1。

9cbw7uwe

9cbw7uwe1#

可能是这个问题:https://github.com/golang/go/issues/27476 ?
我的问题稍有不同,它超时1秒,但不是2秒或3秒!https://media.dev.unee-t.com/2018-09-05/pingcontext.mp4
我的消息来源是:https://media.dev.unee-t.com/2018-09-05/main.go

相关问题