You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a copy of a troubleshooting article on Supabase's docs site. It may be missing some details from the original. View the original article.
If your project has been suspended due to Realtime usage, it means your project exceeded the quotas for your plan and was flagged for unusually high consumption of Realtime resources.
How to know if your project was suspended
When Realtime is disabled for your project, you will see the error code RealtimeDisabledForTenant in your Realtime logs. On the client side, connections will fail to establish and existing subscriptions will stop receiving events.
If you encounter this error, it means Realtime has been explicitly disabled for your project and you should contact support to understand why and resolve the issue.
Why projects get suspended
Supabase monitors Realtime usage across all projects to ensure platform stability for everyone. When a project consistently exceeds its plan limits by a significant margin, it may be manually suspended. This can happen when:
Usage patterns suggest unintended or runaway behavior, such as a client reconnection loop or uncontrolled channel creation
Suspension is not automatic and is applied after review. The goal is to protect shared infrastructure while giving you the opportunity to explain and resolve the situation.
Common causes of excessive usage
In most cases, quota overages are accidental rather than intentional:
Reconnection loops: A client that fails to authenticate or subscribe may retry rapidly, creating thousands of short-lived connections
Uncontrolled channels: Creating channels without cleaning them up leads to resource exhaustion (see Fixing the TooManyChannels Error)
Missing cleanup on component tear down: Single-page applications that don't unsubscribe when components are removed can accumulate connections over time
Unexpected traffic spikes: A viral event or bot traffic can push usage well beyond normal levels
Development or testing misconfiguration: Load tests or staging environments accidentally pointed at a production project
A description of your Realtime use case (what features use Broadcast, Presence, or Postgres Changes)
An estimate of your expected concurrent connections and message throughput
Any recent changes to your application that may have caused the spike
Review your usage: While waiting for a response, check the Realtime reports in your project dashboard to understand what drove the elevated usage.
Identify and fix the root cause: Common fixes include:
Adding proper channel cleanup in your client code
Implementing exponential backoff for reconnection logic
Upgrading your plan to match your actual usage needs
Separating development and production environments
The Supabase team will review your case to understand whether the usage was accidental or expected. If the usage is legitimate, the team can work with you to find the right plan or adjust limits for your project. If it was accidental, once you've resolved the underlying issue, the suspension can be lifted.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This is a copy of a troubleshooting article on Supabase's docs site. It may be missing some details from the original. View the original article.
If your project has been suspended due to Realtime usage, it means your project exceeded the quotas for your plan and was flagged for unusually high consumption of Realtime resources.
How to know if your project was suspended
When Realtime is disabled for your project, you will see the error code
RealtimeDisabledForTenantin your Realtime logs. On the client side, connections will fail to establish and existing subscriptions will stop receiving events.If you encounter this error, it means Realtime has been explicitly disabled for your project and you should contact support to understand why and resolve the issue.
Why projects get suspended
Supabase monitors Realtime usage across all projects to ensure platform stability for everyone. When a project consistently exceeds its plan limits by a significant margin, it may be manually suspended. This can happen when:
Suspension is not automatic and is applied after review. The goal is to protect shared infrastructure while giving you the opportunity to explain and resolve the situation.
Common causes of excessive usage
In most cases, quota overages are accidental rather than intentional:
What to do if your project is suspended
Open a support ticket: Contact support and include:
Review your usage: While waiting for a response, check the Realtime reports in your project dashboard to understand what drove the elevated usage.
Identify and fix the root cause: Common fixes include:
The Supabase team will review your case to understand whether the usage was accidental or expected. If the usage is legitimate, the team can work with you to find the right plan or adjust limits for your project. If it was accidental, once you've resolved the underlying issue, the suspension can be lifted.
How to avoid suspension
Related troubleshooting guides
Beta Was this translation helpful? Give feedback.
All reactions