Now I wanted to create 300 connection pools in database connection and now I’m able to create only 22 connections. So my load speed is very low it’s taking a long time. If I need to expand this connection pool is there any extra payment I have to do? if so what I have to do? what is a price for the same?. Kindly provide me solution for the same. kindly look into this.
The operating system is Ubuntu.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
Each PostgreSQL cluster allows 25 backend connections per 1 GB of RAM minus 3 connections per node that are reserved for maintenance.
We support connection pooling, backed by PgBouncer, to increase the number of available concurrent client connections. Clusters provide 25 connections per 1 GB of RAM. 3 connections per cluster are reserved for maintenance, and all remaining connections can be allocated to connection pools.
For more connections, Scale up your instance size see link below with plan size and Available Backend Connection
https://docs.digitalocean.com/products/databases/postgresql/#postgresql-limits
However, these PgBouncer pool connections are currently limited to 20 per database. If you require more PgBouncer pool connections than this, contact support.
Hope that this helps. Regards, Priyanka