Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Accepted Answer
Hi,
What I would do… Turn on logging connections and disconnections in postgresql.conf file. There are two parameters for that which are set off by default.
log_connections = on
log_disconnections = on
Here is an official doc on it: https://www.postgresql.org/docs/13/runtime-config-logging.html
Then, check logs and try to find any pattern which could lead you to the root cause.
If you connect your database through secure links (VPN, VPC etc.) you could turn off SSL to check if the error is related to this layer.