On Thu, 2 Aug 2018 01:46:26 -0700 (PDT), Sachin Singh
<
[email protected]> wrote:
In order to benchmark the API execution per second for
our cloud product we want to test performance for 1200+
client connections and doing some operations. We are
using postgres db in system of 32GB RAM. During the
test execution after sometime we are seeing db crash
because of out of memory issue.
We tried to use pgbouncer to resolve the issue but no luck.
Do we have any solution to support the above requirement
for 1 DB node. Or any configuration setting in pgbouncer
which will help us.
It probably would be better to ask on one of mailing lists:
[email protected]
[email protected]
You definitely are making too many simultaneous connections - you need
to limit the number to something reasonable: say a few hundred,
maximum. How many connections you can support depends heavily on your
server's configuration [and whether pgbouncer is co-resident. I'm not
a real expert at this, which is why you should ask on the lists.]
Remember that Postgresql creates a new process for every connection:
although the program code and DBMS cache (shared_buffers) are shared,
each connection has its own private state, and extra allocations like work_buffers and temp_buffers, etc. are query dependent.
Unfortunately, server configuration is a black art: it's easy to make configuration choices that run well under certain loads and fail
miserably under others.
George
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)