Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Brian Quinlan
On Thu, Jan 24, 2013 at 1:41 PM, Jeff Schnitzer wrote: > > It's a resident backend. > > Jeff Are you sure that this happens on the first attempt to create a background thread? If so, then could you could try to find this block in google/appegine/tools/devappserver2/dispatcher.py: try:

[google-appengine] Orphan item in Datastore Admin -> Active Operations

2013-01-23 Thread Lawrence Mok
Hi, I had done some data store operations months ago and the tasks were finished for long. However, in the Datastore Admin -> Active Operations there are a few tasks that never goes away even though they are finished. Any Googler can help to check on this? App ID is "imaptile" Thanks, Lawrence

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Jeff Schnitzer
It's a resident backend. Jeff On Wed, Jan 23, 2013 at 3:50 PM, Brian Quinlan wrote: > That should work. > > Are you creating a background thread on a frontend or a backend instance? > > Cheers, > Brian > > On Thu, Jan 24, 2013 at 6:38 AM, Jeff Schnitzer wrote: >> >> BackgroundThreadLimitReached

[google-appengine] Migrating Existing Applications to Your Premier Account

2013-01-23 Thread Ridgh
Hi, I have read about migration of an existing app here: https://developers.google.com/appengine/docs/premier/ The first step is clear: in the Billing Settings of the Administration Console it's required to click Transfer app to a premier account. My question is about: "Once you initiate the

Re: [google-appengine] Is there a limit to the number of log entries per request?

2013-01-23 Thread payala
Hi, Did any of you figure out why this limit is in place and how to get around it? Pedro El viernes, 27 de enero de 2012 07:53:38 UTC+1, Robert Kluin escribió: > > Hey Stephan, > Mike Wesner and I were actually just discussing this earlier today. > He also mentioned there being some limit on

[google-appengine] Re: Lots of user-facing loading requests

2013-01-23 Thread Francois Masurel
Only one new instance started over the last hour. Yesterday, at the same time, it was 2 instance loading requests every 3 minutes. Google definitely fixed something on their side. Thanx guys. But please, don't touch anything now :-) François On Wednesday, January 23, 2013 9:57:00 AM UTC+1,

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Brian Quinlan
That should work. Are you creating a background thread on a frontend or a backend instance? Cheers, Brian On Thu, Jan 24, 2013 at 6:38 AM, Jeff Schnitzer wrote: > BackgroundThreadLimitReachedError > -- You received this message because you are subscribed to the Google Groups "Google App Eng

Re: [google-appengine] Re: New experimental development server for Python

2013-01-23 Thread Jeff Schnitzer
Do background threads work? Whenever I try to start one, I get BackgroundThreadLimitReachedError. Jeff On Sun, Jan 20, 2013 at 11:11 PM, Brian Quinlan wrote: > We have released a new version of the experimental Python development > server. We think that it is very usable at this point and has s

[google-appengine] Re: an html5 + bootstrap template app for a python appengine app

2013-01-23 Thread kcunha.araujo
Congrats! I'll test it. I always want to know about compatibility appengine + html5 Em quarta-feira, 23 de janeiro de 2013 02h05min34s UTC-4, Gilbert Corrales escreveu: > > Hi guys, > > I've been working on a couple of websites lately and they all have been > started with similar roots, yet eve

[google-appengine] Handling - "NetworkError: 413 Request entity too large

2013-01-23 Thread Blaine Garrett
Hi, While doing some research into a bug involving customers pasting large amounts of data into forms, today on the SDK, I hit this in my "NetworkError: 413 Request entity too large". The only thing in the console was: ERROR2013-01-23 18:26:23,079 dev_appserver.py:1273] HTTP request was

[google-appengine] Working with images : need help regarding tilling of images

2013-01-23 Thread Bhavya Sravani
Hi Could anyone please help me with my query ?? I am actually working on a project in which I have many images in a server and need to tile the images based upon the response . . I actually want to know what would be fastest method of tilling . . Any information or suggestions regarding th

[google-appengine] client error (400)

2013-01-23 Thread hammouda mohamed achraf
I am getting the client error (400) when trying to deploy my appengine application . at first I thought it was because I was trying to work with Struts2 on appengine but then I tried to deploy a simple Questbook application but it wouldn't work giving the same error when trying to deploy it. I

[google-appengine] Index is still building

2013-01-23 Thread Oleg Korshunov
Hello, I added a new index to my app and it's been building for a couple of hours now. I think it may be stuck. App-id is textasrss.appspot.com Thanks -- You received this message because you are subscribed to the Googl

[google-appengine] an html5 + bootstrap template app for a python appengine app

2013-01-23 Thread Gilbert Corrales
Hi guys, I've been working on a couple of websites lately and they all have been started with similar roots, yet every time I ended up putting the wheel together again and again, so today, before our next project starts I took some time and created a blank template from where we can start new p

[google-appengine] joining datastore and search

2013-01-23 Thread Gopal Patel
is there a simpler way to avoid creating document for search every time a new datastore record created ? can not it be possible to have database model ndb.searchModel which automatically do so ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" gro

[google-appengine] Re: Serious HRD Migration Problem: Mail Recipients Limited

2013-01-23 Thread David Hogg
Update: As per Jim's comment, tt appears that the mail limit has now been removed for my application - exactly one week after switching from Master/Slave to HRD. A charge cleared and then the limit removed (the charge that cleared last week appears was actually for zero dollars). So, the issue

Re: [google-appengine] Re: insane number of warmup requests exhaust entire daily quota

2013-01-23 Thread Saurabh Gupta
Hey guys My startup takes ~3 seconds this in the web.xml change that fixed it: Google Warmup /_ah/warmup admin If the warmup endpoint is not protected by the admin privilege then folks can start hitting it. Google's documentation doesn't say that this

[google-appengine] Re: Launcher can't connect to App Engine servers

2013-01-23 Thread Kai Skye
My problem was that I had environment variables named `http_proxy` and `https_proxy` set that Python's urllib2 uses to route all connections through a proxy. Removing those environment variables fixes the issue. On Wednesday, January 23, 2013 12:13:05 AM UTC-5, Kai Skye wrote: > > My website has

Re: [google-appengine] Re: insane number of warmup requests exhaust entire daily quota

2013-01-23 Thread Jeff Schnitzer
Look at your logs. Are your instances are dying on startup? Perhaps your warmup handler is exceeding the 60s deadline, or blowing the heap limit? That could cause lots of cycling, especially if you have lots of resident instances. Do you have any instances successfully serving user requests? D

Re: [google-appengine] Re: Still having issues with my app - no deploys for last couple of moth

2013-01-23 Thread Deepak Singh
Me too. Unable to deploy app. appid: balajiyatrafinder On Wed, Jan 23, 2013 at 7:31 AM, Tomas wrote: > I'm still facing tons of different exceptions which seems to be GAE issues > - as always, GAE status all green. Having these for last three days, I > haven't done any deploy and the app was

[google-appengine] Re: insane number of warmup requests exhaust entire daily quota

2013-01-23 Thread Francois Masurel
Hi Saurabh, There have been a few posts recently about the problem : https://groups.google.com/d/topic/google-appengine/Z6EFDyv3MRk/discussion https://groups.google.com/d/topic/google-appengine/3M164n46MkM/discussion https://groups.google.com/d/topic/google-appengine/cJcOrOE4JDc/discussion You m

[google-appengine] Re: Lots of user-facing loading requests

2013-01-23 Thread Francois Masurel
You might be right about the unicorns :-) I didn't change a thing besides a simple redeploy for an HTML fix but since then (1 hour ago) I didn't have any loading requests. Performance might be depending on the time of day : it's the morning here in Europe and everybody is sleeping in the US. W