Postgres Deno Connection Pool Idle timeout
I am using NeonPostgres and connecting to the database in Deno using the following below and executing this way. This connection is running in a Discord bot using Discordeno. I am entirely ruling out local network setup however the discord bot itself never disconnects. So that brings me here. After a certain time frame that I haven't determined quite yet. Maybe 20 minutes or so?
1 Reply
I wasn't able to find the answer to your question in the official Deno documentation. However, based on the code snippet you provided, I noticed a potential issue that you might want to look into.
In the
Pool
configuration, you have a connection
property with an attempts
field. However, according to the standard usage of the Pool
class from the postgres
module, there is no connection
property used in the configuration object. Instead, you might want to specify the maxRetryCount
property directly in the configuration object if you're trying to set the number of retry attempts for the pool.
Here's a revised version of the pool configuration without the connection
property:
Please note that this advice is not based on the Deno documentation, and I would advise you to double-check the accuracy of the advice given. If the issue persists, you may want to consider looking into the idle_timeout
setting of the pool or the configuration of your PostgreSQL server to ensure that it's not closing idle connections prematurely.