Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Realtime Database Limit Exceed

I want to know what will happen when the limit is exceeded for Firebase Realtime Database. The thing is I know the maximum number of connections I can have is 100 only. Now, suppose my android app has active 1,000 users and I implement Realtime Database. Then the first 100 users will get connect to the database. I want to know what will happen to the user number 101, how I know the connection is unsuccessful, is there any Exception that is thrown or some function isSuccessful(). How to handle that kind of thing in my app.

I have already seen: Link Link

I want to know how to tell the app that it is not connected and when any user disconnects, do I need to run init statement again and when?

Thanks in Advance :)

like image 301
Ishaan Kumar Avatar asked May 03 '26 14:05

Ishaan Kumar


1 Answers

As found here from a Firebase developer

There is no current way to detect this programmatically. An error message will be asynchronously thrown in the developer console when the 51st connection is made.

But this post is from 2014 so maybe that changed.

like image 162
regev avraham Avatar answered May 06 '26 03:05

regev avraham