Go API на Google App Engine с Postgres

Я пытаюсь подключиться к своей базе данных GAE Postgres SQL с помощью Go+Gin+PGX. У меня активирован API Postgres SQL, и эта программа работает на моем локальном компьютере, но не работает в GAE. Я думаю, что это не подключение db через pgx, но я не уверен.

main.go работает на моем локальном компьютере и экземпляре psqlно после развертывания в GAE невозможно подключиться к базе данных через общедоступный IP-адрес в экземпляре GCP SQL. Я изменил свой рабочий код, чтобы исправить ошибку MWE.

      package main

import (
    "fmt"
    "os"
    "github.com/gin-gonic/gin"
    "github.com/jackc/pgx/v4"
    "golang.org/x/net/context"
)

func main() {
    conn, err := connectDB()
    if err != nil {
        os.Exit(1)
    }
    defer conn.Close(context.Background())

    router := gin.Default()
    router.GET("/", func(c *gin.Context) {
        c.JSON(200, gin.H{
            "message": "pong",
        })
    })
    router.Run(":8080")
}

func connectDB() (c *pgx.Conn, err error) {
    postgres := "postgresql://postgres:root@35.236.60.144:5432/goapi" //35.236.60.144
    conn, err := pgx.Connect(context.Background(), postgres)
    if err != nil {
        fmt.Fprintf(os.Stderr, "Unable to connect to database:\n\t%v\n", err.Error())
        return nil, err
    }
    err = conn.Ping(context.Background())
    if err != nil {
        fmt.Fprintf(os.Stderr, "Unable to ping:\n\t%v\n", err.Error()) 
        return nil, err
    }
    return conn, err
}

Если я использую Postman для выполнения GET на веб-сайт GAE, я получаю

      <html>

<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <title>500 Server Error</title>
</head>

<body text=#000000 bgcolor=#ffffff>
    <h1>Error: Server Error</h1>
    <h2>The server encountered an error and could not complete your request.<p>Please try again in 30 seconds.</h2>
    <h2></h2>
</body>

</html>

Соответствующий образец трассировки стека ошибок GAE:

      runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0xaabec7]
     at
     github.com/jackc/pgx/v4.(*Conn).exec (conn.go:413)
     at
     github.com/jackc/pgx/v4.(*Conn).Exec (conn.go:396)
     at
     github.com/jackc/pgx/v4.(*Conn).Ping (conn.go:347)
     at
     main.connectDB (main.go:41)
     at
     main.main (main.go:15)

Когда я просматриваю журнал, я вижу ...

      Unable to connection to database: failed to connect to `host=35.236.60.144 user=postgres database=goapi`: dial error (dial tcp 35.236.60.144:5432: connect: connection timed out)

0 ответов

Другие вопросы по тегам