posted May 23, 2019, 7:28 PM by Sanjeev Jain
Google Apps Script services impose daily quotas and hard limitations on some features. If you exceed a quota or limitation, your script throws an exception and execution terminates. Current quotasQuotas are set at different levels for users of consumer accounts (such as gmail.com) and G Suite free edition (discontinued), or different G Suite editions. Daily quotas are refreshed at the end of a 24-hour window; the exact time of this refresh, however, varies between users. The table below lists the daily quotas as of August 2018. You can confirm the current on the Quota Limits tab of theApps Script Dashboard. The quotas shown below are provided solely to assist you in testing scripts. All quotas are subject to elimination, reduction, or change at any time, without notice. Feature | Consumer (e.g., gmail.com) | G Suite free edition (legacy) | G Suite Basic / Gov | G Suite Business / Enterprise / Education | Early Access |
---|
Calendar events created | 5,000 / day | 10,000 / day | 10,000 / day | 10,000 / day | Flexible | Contacts created | 1,000 / day | 2,000 / day | 2,000 / day | 2,000 / day | Flexible | Documents created | 250 / day | 500 / day | 1,500 / day | 1,500 / day | Flexible | Email recipients per day | 100* / day | 100* / day | 1,500* / day | 1,500* / day | 1,500* / day | Email read/write (excluding send) | 20,000 / day | 40,000 / day | 50,000 / day | 50,000 / day | Flexible | Groups read | 2,000 / day | 5,000 / day | 10,000 / day | 10,000 / day | Flexible | JDBC connection | 10,000 / day | 10,000 / day | 50,000 / day | 50,000 / day | Flexible | JDBC failed connection | 100 / day | 100 / day | 500 / day | 500 / day | 500 / day | Presentations created | 250 / day | 500 / day | 1,500 / day | 1,500 / day | Flexible | Properties read/write | 50,000 / day | 100,000 / day | 500,000 / day | 500,000 / day | Flexible | Spreadsheets created | 250 / day | 500 / day | 3,200 / day | 3,200 / day | Flexible | Triggers total runtime | 90 min / day | 3 hr / day | 6 hr / day | 6 hr / day | 6 hr / day | URL Fetch calls | 20,000 / day | 50,000 / day | 100,000 / day | 100,000 / day | Flexible |
Note: Newly created G Suite domains are subject to the consumer limit for the first billing cycle if they have six or more users, or several billing cycles if they have fewer users. For more information, see the Help Center page on sending limits.Current limitationsThe table below lists hard limitations as of August 2018. The limits shown below are provided solely to assist you in testing scripts. All limits are subject to elimination, reduction, or change at any time, without notice. Feature | Consumer (e.g., gmail.com) | G Suite free edition (legacy) | G Suite Basic / Gov | G Suite Business / Enterprise / Education | Early Access |
---|
Script runtime | 6 min / execution | 6 min / execution | 6 min / execution | 30 min / execution | 30 min / execution | Custom function runtime | 30 sec / execution | 30 sec / execution | 30 sec / execution | 30 sec / execution | 30 sec / execution | Simultaneous executions | 30 | 30 | 30 | 30 | 60 | Email attachments | 250 / msg | 250 / msg | 250 / msg | 250 / msg | 250 / msg | Email body size | 200kB / msg | 200kB / msg | 400kB / msg | 400kB / msg | 400kB / msg | Email recipients per message | 50 / msg | 50 / msg | 50 / msg | 50 / msg | 50 / msg | Email total attachments size | 25MB / msg | 25MB / msg | 25MB / msg | 25MB / msg | 25MB / msg | Properties value size | 9kB / val | 9kB / val | 9kB / val | 9kB / val | 9kB / val | Properties total storage | 500kB / property store | 500kB / property store | 500kB / property store | 500kB / property store | 500kB / property store | Triggers | 20 / user / script | 20 / user / script | 20 / user / script | 20 / user / script | 20 / user / script | URL Fetch response size | 50MB / call | 50MB / call | 50MB / call | 50MB / call | 50MB / call | URL Fetch headers | 100 / call | 100 / call | 100 / call | 100 / call | 100 / call | URL Fetch header size | 8kB / call | 8kB / call | 8kB / call | 8kB / call | 8kB / call | URL Fetch POST size | 50MB / call | 50MB / call | 50MB / call | 50MB / call | 50MB / call | URL Fetch URL length | 2kB / call | 2kB / call | 2kB / call | 2kB / call | 2kB / call |
For more details See: https://developers.google.com/apps-script/guides/services/quotas |
|