I have a High Availability setup where data flows as such:
... <-> Objection.js <-> Knex.js (pool) <-> Pgpool-II (pool) <-> PostgreSQL Cluster
As you see, the connection pool is being managed in two places right now - Knex.js and Pgpool-II. I am wondering if I really need both or can I just disable Knex.js pooling altogether with pool: {min: 0, max: 0}
and let Pgpool-II do all the work? Thank you.