© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•3mo ago•
6 replies
Lara

Sudden, consistent timeouts with Supabase python package

Starting around 8:38am ET this morning, my team and I started seeing an enormous surge of
ReadError
ReadError
,
ConnectTimeout
ConnectTimeout
, and
RemoteProtocolError
RemoteProtocolError
when attempting to fetch from our Supabase project (regardless of table). We are using supabase-py.

We then noticed consistent
PoolTimeout
PoolTimeout
errors, so we adjusted our http config to remove the max connection limit. Now the
PoolTimeout
PoolTimeout
is gone, but the other errors remain.

This is our http configuration:
            transport = AsyncHTTPTransport(
                retries=3,
                http2=False,
                limits=Limits(
                    max_connections=None,
                    max_keepalive_connections=None,
                    keepalive_expiry=60,
                ),
            )
            transport = AsyncHTTPTransport(
                retries=3,
                http2=False,
                limits=Limits(
                    max_connections=None,
                    max_keepalive_connections=None,
                    keepalive_expiry=60,
                ),
            )


Our app is deployed on Railway. The last deployment before today was four days ago, a completely unrelated and tiny bugfix.

We checked our Supabase usage in the dashboard, and don't appear to be hitting any limits. We also don't see any failed API requests in the logs at all, which leads me to believe this might be an issue with the Python package.

There have been no significant changes to our app. No sudden increase in traffic or users, no code changes, no dependency changes.

Can anyone help us resolve this, or point us in the right direction?

Thanks!
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Supabase Timeouts
SupabaseSSupabase / help-and-questions
4y ago
supabase with python
SupabaseSSupabase / help-and-questions
4y ago
.rpc() with python supabase-client
SupabaseSSupabase / help-and-questions
4y ago
NestJS with Supabase Auth SSR package
SupabaseSSupabase / help-and-questions
3y ago