A quota is a limited quantity of things, such as storage, bandwidth, etc.
Questions tagged [quota]
618 questions
10
votes
1 answer
Is there any limit on number of concurrent hits or simultaneous executions on Google App Script Web App
I am writing an Apps Script(to process emails, Tasks and Calendar events) and want to deploy it as a web App.
The App will run in the context of the user who runs it.
The App will be used by more than 10k+ users and probably even more.
Before I…

prasun
- 7,073
- 9
- 41
- 59
9
votes
3 answers
Set an alert when quota API limit is reached on GCP
Is there a way to setup Stackdriver to receive an alert when ANY of my Google APIs usage have reached its limit?
I used to manually check at https://console.cloud.google.com/iam-admin/quotas but I can't figure out how to be automatically alerted.

Frantz Gauthier
- 91
- 1
- 4
9
votes
2 answers
How can I get the size and/or number of elements in a ServiceWorker cache?
ServiceWorker is a new api available in Chrome. One of the many things it lets you do is intercept network requests and respond with a cached version. I'm implementing a "take this offline" button which dynamically adds things to the cache. I'd like…

Rob
- 2,759
- 1
- 16
- 11
8
votes
2 answers
How to implement user storage quotas using Amazon S3 as storage like dropbox does
I'm implementing a system where users will be allowed to upload videos and files to my site. I'm currently providing them ftp access to their own ftp user account where they upload the files needed.
FTP on linux server supports user…

user245217
- 123
- 2
- 4
8
votes
1 answer
How to change App Engine's Over Quota page?
Is there anyway to do this? Can I customize the AppEngine's "Over Quota" page? How?
Thanks BTW.
P.S. I mostly build python webapps, never used GAE Java

Jmlevick
- 6,504
- 9
- 29
- 35
8
votes
1 answer
How to check your account's Google Apps Script quotas
Here is the link about the GAS quotas:
https://developers.google.com/apps-script/guides/services/quotas#current_quotas
How can I check if I am getting close to certain quotas. For instance, how can I check, how many UrlFetchApp calls I have left for…

Rushi
- 101
- 5
8
votes
1 answer
Detect block size for quota in Linux
The limit placed on disk quota in Linux is counted in blocks. However, I found no reliable way to determine the block size. Tutorials I found refer to block size as 512 bytes, and sometimes as 1024 bytes.
I got confused reading a post on…

Chen Levy
- 15,438
- 17
- 74
- 92
7
votes
2 answers
Set MongoDB Database quota (SIZE)
I want to allow my shared hosting sites to use MongoDB, however as they are all on the same VPS server I am able to get mongo to create databases, and asign them to users but I seem not to be able to limit the size of the database only the size of…

RussellHarrower
- 6,470
- 21
- 102
- 204
7
votes
0 answers
Bandwidth Quota for Google Apps Script
This morning we got a couple of errors from Google Apps script saying:
Exception: Bandwidth quota exceeded...
Try reducing the rate of data transfer.
Our Google Apps Script (GAS) programs mainly look at Gmail, do some processing, access Google Maps…

Chris
- 473
- 5
- 18
7
votes
3 answers
1MB quota limit for a blobstore object in Google App Engine?
I'm using App Engine (version 1.4.3) direct write the blobstore in order to save images.
when I try to store an image which is larger than 1MB I get the following Exception
com.google.apphosting.api.ApiProxy$RequestTooLargeException: The request to…

Yonatan Maman
- 2,428
- 1
- 24
- 34
7
votes
1 answer
Meaning of "Script delayed (xx min) waiting for quota" in Stackdriver when working with Google Sheet Add-on
I have developed a Google Sheet Add-On "Jira Sheet Tools" which basically for my understanding should only be affected by the followings quotas from google according to the quota dashboard:
Properties read/write
URL Fetch calls
URL Fetch data…

LJay
- 101
- 7
7
votes
2 answers
Chrome storage quota reporting lower than expected
I've got a situation where there is ~190GB of free disk space available on the system hard drive but when I query the storage quota in Chrome using navigator.webkitTemporaryStorage.queryUsageAndQuota() it only reports 186MB as being free.
I have…

joshontheweb
- 612
- 1
- 6
- 18
7
votes
3 answers
Understanding YouTube quota limits: total per day vs. per 100 seconds?
YouTube imposes the following quota cost limits (default values listed):
Queries per day = 1Million units
Queries per 100 sec per user = 300,000 units/100sec/user
Queries per 100 seconds = 3,000,000
What is the meaning of the last limit? How can…

Olga Convey
- 71
- 1
- 3
7
votes
2 answers
Gmail API - Rate Limit Exceeded [429], Backend Error [500]
We have an application that uses the Gmail API to access emails in Gmail.
Randomly we got the following error message
Google.Apis.Requests.RequestError Rate Limit Exceeded [429] Errors [
Message[Rate Limit Exceeded] Location[ - ]…

PNC
- 1,932
- 19
- 36
7
votes
3 answers
How to use Java on Google App Engine without exceeding minute quotas?
A very simple java code inside a doGet() servlet is getting more than a second of cpu time on GAE. I have read some quota related documentation and apparently I am not doing anything wrong.
//Request the user Agent info
String userAgent =…

Geo
- 8,663
- 13
- 63
- 93