Realtime Concurrent Peak Connections Limit
I'm building an application which will visualize all connections on a Mapbox map. I imagine we'll get thousands of users... somewhere between 5,000-10,000 users. I will only be passing coordinates via the initial
track
method and no other messages will be sent between connections. Am I right to assume I'll be able to run this successfully with realtime? And the cost is $25/month for 500 users and then $10 for each 1000 users over that? Is there a hard limit on the amount of concurrent users I can have at one moment? Any help is greatly appreciated!4 Replies
The peak number of connections during the month is what you are billed for. So if have 2500 users with a connection (websocket) live at the same time then $20 for that aspect of realtime.
Gotcha, thanks Gary. I think I understand the billing, what about any hard limits? Is there a cap I should know about for the overall connections - what if 10,000 users show up? 😵
https://supabase.com/docs/guides/realtime/quotas#quotas-by-plan
This link has details on various limits.
10000 is the "hard limit" for Pro. I think you can request higher but not sure if only for Team/Enterprise.
That is exactly what I needed. Thank you Gary!