We’re looking at rolling out a test platform with a couple of hundred users. The one concern we have is the database connections. We’re going direct at the moment and instead need to connect via a Postgres connection pool.
I’ve scoured this forum for hours looking for guidance but can find nothing.
Can anyone provide guidance on how to explicilty set up our DB manager to use a pool.
With NodeJS we use the knex module for the database connection, it has build-in pooling support. For more information see http://knexjs.org/#Installation-pooling.
To anyone using Knexjs with NodeJS and PostrgeSQL, is it as simple as editing the connection file and adding the pooling constraints within, or is it a drains-up client-side development exercise ?
As Wappler uses KnexJS anyway, this seemed to suggest it could be a connection edit rather than some scary alternative …
I’d just like some guidance before we go down the heavy-lifting route…
Though it also suggests that it’s a configuration issue only - can someone guide me on doing this manually ? Nearing release and need to have a DB connection pool in place to get by the DevOps fiends.
Operations team necessitate it. And the ability to configure as required. That’s how it works out!
As it stands don’t even know what the pool settings are (or they exist) by default. That’s what I’m looking for. What do I config and where? Once I know that, I can get it out there and get some adoption internally.