Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
461 views

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 ...
3
votes
1answer
337 views

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 ...
2
votes
0answers
37 views

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 ...
1
vote
1answer
104 views

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 ...
1
vote
1answer
497 views

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 ...
1
vote
1answer
659 views

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 ...
0
votes
1answer
35 views

how to manage my API usage?

my company develops a web application that makes heavy use of web APIs (google adwords, recurly billing, facebook etc.) can you recommend a product / service that could help us monitor the usage of ...
0
votes
1answer
11 views

BITS Download Quota

I have an application which downloads files from a server and after a certain amount of downloads in a single machine it fails, unless I run the executable as administrator (or of course debug from VS ...
0
votes
1answer
45 views

How to make cpanel send an e-mail when disk usage goes over quota?

I am hosting a few websites on a hosting account with 6 GB of space. The websites occupy only about 700 MB. But I have some plugins with various troubles generating error_log files that can get pretty ...
0
votes
1answer
28 views

Limiting the file size of users folders

I am developing a file hosting site, where users can upload files to thier own folder. This folder can only have a quota of 100mb. I would like to implement a sytem whereby if a user tries tp upload a ...
0
votes
1answer
116 views

CUPS will print ignoring the quotas set

I set the quotas both ways(though lpadmin and by editing printers.conf) and neither seem to work(i did restart the daemon) but print requests are still granted with no error. What is wrong?(i am ...
0
votes
3answers
101 views

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 ...
0
votes
1answer
913 views

How do I break up high-cpu requests on Google App Engine?

To give an example of the kind of request that I can't figure out what else to do for: The application is a bowling score/stat tracker. When someone enters their scores in advanced mode, a number of ...