Go API on Google App Engine with Postgres

570 Views Asked by At

I am trying to connect to my GAE Postgres SQL db using Go+Gin+PGX. I have the Postgres SQL api activated and this program runs on my local machine but does not run on GAE. I think it is not connecting the db via pgx but I am not sure.

main.go works on my local machine and instance of psql but after deploying to GAE cannot connect to db via the Public IP in GCP SQL instance. I have modified my working code to fix the 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:[email protected]: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
}

If I use Postman to perform a GET to GAE website then it I get

<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>

The corresponding GAE error stack trace sample is

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)

When I view the log I see...

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

There are 0 best solutions below