Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum limit of users for single topic subscription in Firebase?

I am using Firebase topics to send notification.While doing so i came across the Firebase notification console which shows (topic-name)<1000 estimated user on selecting sending notification through topics

enter image description here

I have read this POST.It says Firebase can create unlimited topics.But my question is that how many maximum number of user can subscribe to a single topic because in console it showing (topic-name)<1000 estimated user and Firebase has not describe anything in doc about max limit users subscription to an individual topic.

If it has the limit of 1000 user to a single a topic subscription than what will happen when app excited this user limit.will it sent notification to first 1000 users of it will not send notification at all?

like image 447
Burhanuddin Rashid Avatar asked Dec 29 '16 07:12

Burhanuddin Rashid


People also ask

Is firebase cloud messaging free?

Firebase Cloud Messaging (FCM) provides a reliable and battery-efficient connection between your server and devices that allows you to deliver and receive messages and notifications on iOS, Android, and the web at no cost.

What is push notification topic?

Topic-Based Push Notification is basically a publish/subscribe model in FCM (Firebase Cloud Messaging) that allows you to send a message to multiple devices that are subscribed to a particular topic.

How do I handle the Firebase notification when an app is in foreground?

Firebase notifications behave differently depending on the foreground/background state of the receiving app. If you want foregrounded apps to receive notification messages or data messages, you'll need to write code to handle the onMessageReceived callback.


1 Answers

I can't found the answer link for you.But at 2015 GCM limit 1 million user to single topic subscription but which they already remove this limitation. FCM is using GCM as it core so which mean it is unlimited for user subscription to any topic.

You might get some point form this link

We’re now happy to announce that we’re allowing unlimited free topics for your app. This means app developers can place an unlimited number of devices within each topic and create an unlimited number of topics.

By your second question that obviously told you that fcm estimated lesser than 1000 user subscribe to that topic. It's doesn't mean you cannot send to over 1000 device. You have misunderstading the meaning of < 1000 estimated users.

like image 141
teck wei Avatar answered Sep 25 '22 13:09

teck wei