Hi Nick, I ran a little test, and it seems to me that the URL Fetch Quota is counting the expanded text size.
I put a file on my server <http://atsushi-takayama.com/siteinfo/ foo.gz>, which is a text file of exactly 1MB gzipped down to 180KB, which is served with the header; Content-Length: 185931 Content-Type: text/plain Content-Encoding: x-gzip Then I run uploaded this, ============================================== class Test(webapp.RequestHandler): def get(self): for i in range(1): raw_data = urlfetch.fetch('http://atsushi-takayama.com/ siteinfo/foo.gz').content logging.debug('number :' + str(i) + ', text length : ' + str(len(raw_data))) ============================================== and open the test URL. Now from what I observe at my dashboard, every time I hit the test URL, the "Incoming Bandwidth" increases by 0.01 (of 1.00 GBytes) which is around 10MB. http://img.f.hatena.ne.jp/images/fotolife/e/edvakf/20090814/20090814002414.png So I think it's counting 1MB*10 times (not 180KB*10 times). If you could tell me where I can file this as a bug, it'd be appreciated. edvakf --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
