I have a Remix app with Postgres and everything works great, but when things are idle for a bit loading the app will error out with a “Server has closed the connection.”.
I am not sure what I need to do to prevent this error from happening. Is it a matter of scaling things up or is there an easier fix?
Hi,
Which Postgres Server/Service are you using for your app?
How do you configure your Database for your app?
How does you fly.toml file(s) look like?
and where do you see this error pop-up? in the fly app running the remix app or in the logs of the postgres cluster you created?
Could you share the cli command you used to create the postgres db?
You could try to out to set autostop of your postgres db cluster to falsefly machines update --autostop=false --autostart --app <postgres-db-cluster-name> on all machines to prevent them to stop or suspend.
In your remix app, how are you connectcing to the postgres db? Make sure the client has some kind of reconnection / pooling logic built-in as well
2025-03-26 10:46:04.459
Server has closed the connection.
2025-03-26 10:46:04.459
Invalid `prisma.application.count()` invocation:
2025-03-26 10:46:04.459
PrismaClientKnownRequestError:
2025-03-26 10:45:49.723
GET /admin/vendor 200 - - 2339.573 ms
So it looks like the DB needs to be booted back up.
I used the command npx fly postgres create --name <db-name> to create the database.
The app uses prisma to connect with the following:
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
I will try these commands and see if that fixes it!
If you want something to Just Work then paying for a managed database may be a whole bunch easier. Myself, I am trying Supabase, and I reckon I can get by on the free tier initially. It then bumps up to 25USD/month for the next tier, which should be fine for most commercial enterprises.
Interesting, since its using a .flycast tld, the fly-proxy should start up your database machine when there is a new connection made to it.
Have you disabled autostop for all machines of the postgres db (fly machines update --autostop=false ...)?
Maybe its work trying to create a new postgres cluster with the same command but dont create a “development” cluster?