I am trying to host an API implemented as a Node.js app on Google Cloud App Engine. The database that the API utilizes is a PostgreSQL 9.6 database which is hosted with a Cloud SQL instance. The database is connected to the Node.js API through Knex
.
When hosted on App Engine, the API endpoints that do not require any contact with the database work fine. However, when the database needs to be contacted to complete the API call, the following error appears in the logs:
Unhandled rejection TimeoutError: Knex: Timeout acquiring a connection. The pool is probably full. Are you missing a .transacting(trx) call?
However, if I use Knex
to connect to the Cloud SQL instance locally and address the API through localhost:3000, an API call requiring the database completes perfectly fine. This verifies that the PostgreSQL database instance on Cloud SQL is working fine and that something about hte Node.js app being hosted on App Engine is making a connection to the Cloud SQL instance fail.
I connect to the database like so:
module.exports = require('knex')({
client: 'pg',
debug: true,
connection: {
host : '35.194.32.254',
user : 'postgres',
password : 'mypassword',
database : 'mydatabase'
},
});
Again, local connections succeed, App Engine connections fail.
My app.yaml
file is as follows:
runtime: nodejs
env: flex
beta_settings:
cloud_sql_instances: my-project-12345:us-central1:mydatabase
To ensure this is not a permission issue, I granted the App Engine service account [email protected]
the Cloud SQL Client permission. I've also verified that the Cloud SQL instance is deployed in the same region as the Node.js app on App Engine.
My question is this: Why can't Node.js on the App Engine connect to the Cloud SQL instance if it can connect to it locally?
config.socketPath = /cloudsql/...
and removing the IP yields the errorUnhandled rejection Error: connect ECONNREFUSED 127.0.0.1:5432
and an eventual nginx 502. Why is this? – jshapy8config.socketPath
is only used forMySQL
. Since I am using PostgreSQL, I need to useconfig.host
– jshapy8