Previously GCM has a limit of 1 million topics subscriptions per app, which I see they have now done away with :
Based on the publish/subscribe model, topic messaging supports unlimited subscriptions per app.
https://developers.google.com/cloud-messaging/topic-messaging
However, it appears that if a single instance of an app subscribes to too many topics, it will give you this TOO_MANY_TOPICS error.
returns when single app instance subscribes to an excessive number of topics.
I'm trying to implement a forum on android where I plan to use GCM Topics to subscribe people to post / comment on the post on GCM Topics and when there are further updates on posts occur, my server will send notifications to subscribers through GCM.
As you can imagine, people on forums can be quite active, commenting or posting everyday.
Has anyone encountered this GCM error and can give an indication of what an excessive number of subscriptions to topics is?
I wish Google could give us an indication on what they define as an excessive number of subscriptions to topics. I also don't see anyway of me or anyone else testing this out until we generate this error ourselves so we can measure what the excessive number is.