Reputation: 66975
So the docs say: Messages are limited to 32K. That's actually all it says.
Upvotes: 3
Views: 800
Reputation: 596
(The numbers provided below were current as of May 20, 2011):
Google is not listing a total maximum open, just a maximum creation rate: Free: 8,640/day (6/min) & Paid: 86,400/day (60/min) - but they also make clear that if you need to exceed these maximums they can accommodate. [ see: http://code.google.com/appengine/docs/quotas.html#Channel ]
The API lists that the message payload must be smaller then 32k when UTF-8 encoded. [ see: http://code.google.com/appengine/docs/quotas.html#Channel ]
Google does not specify a per channel message limit, but does specify an outgoing bandwidth limit. Given the maximum message size is 32k, then with the daily outgoing bandwidth limit of 1GB, you can send at least 31,250 messages (1GB total / 32k max message size) without billing enabled and 450,000,000 (14,400 GB / 32K) with billing enabled.
If you aren't sending the maximum size messages, the actual number can be greater - and of course, as mentioned above Google provides a mechanism to make arrangements for larger amounts.
Upvotes: 5
Reputation: 101149
Upvotes: 3