[google-appengine] 30 minutes of DeadlineExceededError waiting for datastore, is the appengine status online?

2011-11-23 Thread Mariano Benitez
My application (regalatufoto-v6) has suffered of 30 minutes of DeadlineExceededError, new instances of my application take 30s to load now (thanks to python 2.7 and threadsafe). Anyone suffered this problem? Appengine status says everything's fine, but definitively the datastore was taking too

[google-appengine] Re: AppStats in Python 2.7 apps

2011-11-14 Thread Mariano Benitez
I am using appstats just by editing the appengine_config.py and adding the builtins appstats: on, I am using webpp and django without problems. seems to be working fine. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-09 Thread Mariano Benitez
Thanks Nick, This is an exceptional case, where I am seeding my dev environment. I don't regularly leave my dev server public. :) Anyway, I though it was a simple way to seed, since it does not involve any command line. If you think it will never work, it's ok, but it would be good if you

[google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-08 Thread Mariano Benitez
Hello, I am trying to copy data from my appengine to my dev server, instead of doing the normal bulk download/upload, I tried the datastore admin copy function. I've setup the dev server public ip so it can be seen from outside. When I try to run it from appengine, it fails with status 401,

Re: [google-appengine] Re: TemplateSyntaxError: Caught ImportError while rendering: No module named http (while migrating py2.5 to py2.7 application)

2011-11-01 Thread Mariano Benitez
Thanks Brian, Further question: is there a way to create a similar tag and register it? so I do not need to rewrite all my templates.. :) Something like this might work? from google.appengine.ext import webapp register = webapp.template.create_template_register() def url(blah???): pass #

[google-appengine] TemplateSyntaxError: Caught ImportError while rendering: No module named http (while migrating py2.5 to py2.7 application)

2011-10-31 Thread Mariano Benitez
I am porting my app to python 2.7 and I got it running until I try to render my templates. I cannot easily trace which tag or filter is causing trouble... I get the following stack trace: Caught ImportError while rendering: No module named http Traceback (most recent call last): File

[google-appengine] Re: TemplateSyntaxError: Caught ImportError while rendering: No module named http (while migrating py2.5 to py2.7 application)

2011-10-31 Thread Mariano Benitez
looking at the sources herehttp://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/_internal/django/core/urlresolvers.py I found this line: from google.appengine._internal.django.http import Http404 package http is not there in the sources, but I found that class

[google-appengine] Can I change the login option of my app if I delete it?

2010-03-22 Thread Mariano Benitez
I understand I cannot change the option while the application is enabled. Also that the application Id is reserved if I delete the application. But... can I re-create the application with a different login option, or the app id is reserved to never be used again? Thanks! -- You received this

[google-appengine] Re: All Read Please: Geographical Request Latency

2009-08-14 Thread Mariano Benitez
Buenos Aires, ~210ms no peaks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, send

[google-appengine] Re: api method to obtain version deploy time

2009-06-29 Thread Mariano Benitez
wrote: star this :http://code.google.com/p/googleappengine/issues/detail?id=952 On 29 juin, 03:58, Mariano Benitez mari...@benitez.nu wrote: Hello, I want to use the version deploy time as my sitemap last modified date. The fact is that I don't find a way to do it. I know

[google-appengine] api method to obtain version deploy time

2009-06-28 Thread Mariano Benitez
Hello, I want to use the version deploy time as my sitemap last modified date. The fact is that I don't find a way to do it. I know that the CURRENT_VERSION_ID variable holds something related... Is there a way to obtain the deploy time from CURRENT_VERSION_ID? Thanks,

[google-appengine] Re: Does cron jobs take more time to init than normal handlers

2009-06-25 Thread Mariano Benitez
: It could be that the cron jobs are run on a different farm of computers. If you call cron every 5 min it means the server has to start cold for every cron request. If you use the regular URL from a browser or such you likely have a warm server running. 2009/6/24 Mariano Benitez mari

[google-appengine] Re: Does static files count for outbound traffic?

2009-06-25 Thread Mariano Benitez
on thestaticserver.http://code.google.com/p/googleappengine/issues/detail?id=575 -Nick Johnson On Tue, Jun 23, 2009 at 11:15 PM, Mariano Benitez mari...@benitez.nu wrote: I do have some largestaticfiles, and given that appengine do not use eTags or another form of check it is always

[google-appengine] Does static files count for outbound traffic?

2009-06-23 Thread Mariano Benitez
I do have some large static files, and given that appengine do not use eTags or another form of check it is always returning the entire files. If the static files count as part of the outgoing traffic quota (which I think it is reasonable), then either you implement eTag or another method of not

[google-appengine] Does cron jobs take more time to init than normal handlers

2009-06-23 Thread Mariano Benitez
Hello, Now that I got cron, I moved something I used to do in a normal handler to use a cache and refresh every 5 minutes. What I discovered now is that what used to take 400ms in the normal handler is now taking 800+ms in the cron handler. (I do the exact same thing, really) I don't know if

[google-appengine] How can I know the version I am running in Production?

2008-10-22 Thread Mariano Benitez
I would like to do some stuff (reset caches, for example) when I deploy a new version, and I would also like to know which version of the files I am using (you know... proxies...). AFAIK there is no $VERSION variable that I can use, I will use my SVN build number, but it would be nice to know

[google-appengine] Re: How can I know the version I am running in Production?

2008-10-22 Thread Mariano Benitez
that ? On Wed, Oct 22, 2008 at 6:49 PM, Mariano Benitez [EMAIL PROTECTED] wrote: I would like to do some stuff (reset caches, for example) when I deploy a new version, and I would also like to know which version of the files I am using (you know... proxies...). AFAIK there is no $VERSION variable

[google-appengine] is there a way to tell the deployer to ignore some directories and/or files?

2008-10-22 Thread Mariano Benitez
I've moved my data directory inside the app gae/trunk/data. I've marked it ignored for subversion, but I assume the appengine is still uploading everything. I think I read somewhere that there's no way to ignore some files, but I am just asking again... (maybe there's a new answer now). MAriano

[google-appengine] Re: is there a way to tell the deployer to ignore some directories and/or files?

2008-10-22 Thread Mariano Benitez
Thanks a lot! On Oct 23, 12:57 am, Dan Sanderson [EMAIL PROTECTED] wrote: Check out the skip_files configuration directive:http://code.google.com/appengine/docs/configuringanapp.html#Skipping_... -- Dan On Wed, Oct 22, 2008 at 7:54 PM, Mariano Benitez [EMAIL PROTECTED] wrote: I've

[google-appengine] Re: is there a way to tell the deployer to ignore some directories and/or files?

2008-10-22 Thread Mariano Benitez
ok that worked, now.. I use PIL, should I skip PIL too? Mariano On Oct 23, 1:53 am, Mariano Benitez [EMAIL PROTECTED] wrote: Thanks a lot! On Oct 23, 12:57 am, Dan Sanderson [EMAIL PROTECTED] wrote: Check out the skip_files configuration directive:http://code.google.com/appengine/docs

[google-appengine] 24 hours with 403 Over Quota and I cannot know the reason

2008-09-02 Thread Mariano Benitez
As many, I started uploading things in the data store and I started receiving the 403 Over Quota response. the app is http://regalatufoto.appspot.com/ I realized I should be using memcache instead of querying the datastore directly, and I fixed it. But now it's been a day (20 hours) and I

[google-appengine] Re: 24 hours with 403 Over Quota and I cannot know the reason

2008-09-02 Thread Mariano Benitez
exactly 24 hours later, I got my service back, but I still don't know which quouta was exceeded. MAriano On Sep 1, 8:45 pm, Mariano Benitez [EMAIL PROTECTED] wrote: As many, I started uploading things in the data store and I started receiving the 403 Over Quota response. the app ishttp