Questions tagged [quotas]

35 questions
9
votes
3 answers

quotas on appengine search api for java

I am testing the new app engine search api for java and I have the following code that tries to add ~3000 documents on an index: List documents = new ArrayList(); for (FacebookAlbum album: user.listAllAlbums()) { …
5
votes
3 answers

Is it correct that you are allowed 3,000 files per App Engine app (not 1,000)?

According to this Wikipedia article, you are allowed 3,000 files per app but I was reading a thread on Google Groups that someone's Java app received a warning when it tried to upload more than 1,000 files - he got around it by bundling some files…
don
  • 67
  • 5
4
votes
1 answer

Appengine LogService has an undocumented quota - up to 1000000 reads per day, know a way to workaround?

Appengine LogService has an undocumented quota: You can make up to a 1,000,000 reads from it per day, and then you'll receive the following error: Traceback (most recent call last): File…
theosp
  • 7,439
  • 3
  • 23
  • 24
4
votes
1 answer

how is Billing for Channel API done?

I've chosen google-app-engine because of its scalability, and now I try to understand how much I will have to pay once I release the product. I've looked back and forth in the google app engine documentation to find an answer for question and…
Lior Frenkel
  • 806
  • 11
  • 25
4
votes
2 answers

How to raise Google App Engine's hidden "file.Open" quota

To be specific, this question is about how to get the specified quota raised or lifted, not how to be more efficient within the existing quota limit. When running a MapReduce job on GAE, I hit the quota limit listed below. The limit is 100GB of…
joweeba
  • 271
  • 3
  • 8
3
votes
1 answer

Clarifying Google Plus API Quotas

The Google API Console distinguishes between Google+ API and Google+ API (Sign-in). What's the precise distinction here, i.e., what specific calls does the latter refer to? (The sign-in quota is showing up as many per second per user, which would…
mahemoff
  • 44,526
  • 36
  • 160
  • 222
3
votes
4 answers

Is there a standard way to diff du outputs to detect where disk space usage has grown the most

I work with a small team of developers where we share a unix file system to store somewhat large datasets. This file system has a somewhat prohibitive quota on it so about once a month we have to figure out where our free space has gone and see…
Steven Noble
  • 10,204
  • 13
  • 45
  • 57
2
votes
1 answer

How to limit amount of pods with attached managed disks per node

Imagine there is a cluster with lots of different deployments running on it. Some pods uses PersistentVolumes (Azure Disks). There is a limit in Azure how much disks can be mounted to a VM and this leads to errors on scheduling like Status=409…
Geslot
  • 388
  • 2
  • 18
2
votes
0 answers

Google API Quota Usage Count

Is there any way to get Google API Quota limits and usage count for give API Key? I know I can view API Quota limits from https://console.developers.google.com, but I would like to query the usage programmatically. How do I proceed? Is there any…
Goofy
  • 210
  • 1
  • 3
  • 17
2
votes
0 answers

Firebase Cloud Functions - DNS resolutions

I have a problem with the DNS resolutions which exceeds quota faster than my functions are called. I'm using firebase cloud functions to monitor the "connected" status of our users. We update a firebase database field "isLive" on each…
2
votes
1 answer

How can I query NTFS disk quotas in C#?

I need to be able to find, for all users on a given remote machine, those users' disk quotas and actual disk usage. I need to be able to do this reporting in a C# application. (Well, technically a DLL plugin for an app I've already built; but that's…
John Rudy
  • 37,282
  • 14
  • 64
  • 100
1
vote
1 answer

Could my embedded key/value datastore eventually exceed an App Engine limit?

I have a BerkeleyDB key/value datastore embedded in my Google App Engine project, which does not use the Google Datastore. When I upload the application to Google App Engine, the database will be less than 1MB. But is it possible that, as it grows,…
1
vote
1 answer

fcm Quotas and Limits per device and message

I searched and read google documentation about this subject, but I don't see good text about FCM. This link have pricing about all module exception cloud messaging, My question : How many device can register to fire base in free plan? How many can…
mhk67
  • 13
  • 1
  • 4
1
vote
0 answers

Throttling and Quotas in WCF Config File

I could use some help writing the config file for my WCF. Everything was working till I tried to include the use of throttling and quotas. Not sure if I am using tags correctly or in the correct place. Below is my App.config file:
jasmine
  • 361
  • 1
  • 3
  • 11
1
vote
1 answer

WCF Services, what's better, one big request or a lot of little ones?

I'm reviewing some code where we've had some issues with return data from a WCF web service. Currently the service makes a list of objects, serializes them (as JSON for the record) and returns the entire serialized list down the wire. Obviously when…
One Monkey
  • 713
  • 3
  • 9
  • 24
1
2 3