[google-appengine] Where do I find the HRD Migration Tool?

2013-01-17 Thread Jim Morgan
First of all, I'm sorry for having to ask this question...I've searched this forum and find a lot of people asking this same question over the past year, but none of the answers I've found so far have helped me. I'm following steps in Google documentation

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

2013-01-17 Thread Francois Masurel
Hi Tom, Thanx for your suggestion, that's just the settings I'm testing at the moment. Seems to reduce significantly user-facing requests but will quite increase my bill (x4) :-( May be it will be worth it. I'll tell you how it goes. François On Thursday, January 17, 2013 11:11:56 PM UTC+

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

2013-01-17 Thread Tom Phillips
Make sure on your instances graph that the blue "Total" line is not often, ideally only under unforeseen bursts, going higher than the green "Billed" line. Total(blue) > Billed(green): you aren't charged for the delta between Total and Billed, but lower QOS for users (assuming your startup time i

Re: [google-appengine] Re: Problems loading libraries

2013-01-17 Thread Jesús Espejo
Aha...! That is, for sure. I will check all my imports. Thank you a lots! El jueves, 17 de enero de 2013 21:48:41 UTC+1, Guido van Rossum escribió: > > Either that, or A imports B imports C imports A. > > I recommend that you try to understand how sys.path and imports work > in a smaller examp

Re: [google-appengine] Re: Problems loading libraries

2013-01-17 Thread Guido van Rossum
Either that, or A imports B imports C imports A. I recommend that you try to understand how sys.path and imports work in a smaller example first, before creating something as complex as what you apparently have. :-) On Thu, Jan 17, 2013 at 12:47 PM, Jesús Espejo wrote: > Hello, > > Recursive imp

Re: [google-appengine] Re: Problems loading libraries

2013-01-17 Thread Jesús Espejo
Hello, Recursive imports means "libraries inside libraries"? I have lib as library, and inside it i have another library called "userLib". That's a problem...? I will try to move to different folders... El jueves, 17 de enero de 2013 21:43:07 UTC+1, Guido van Rossum escribió: > > Recursive impo

Re: [google-appengine] Re: Problems loading libraries

2013-01-17 Thread Guido van Rossum
Recursive imports? Missing __init__.py? On Thu, Jan 17, 2013 at 12:31 PM, Jesús Espejo wrote: > Even when i add to my path, it fails :-/. > > I'm showing the path and the libs are included: > > ['/base/data/home/apps/s~37c2b5db880b7a17476582a0fb597b/1.364657294245293293', > '/python27_runtime/pyt

[google-appengine] Re: Problems loading libraries

2013-01-17 Thread Jesús Espejo
Even when i add to my path, it fails :-/. I'm showing the path and the libs are included: ['/base/data/home/apps/s~37c2b5db880b7a17476582a0fb597b/1.364657294245293293', '/python27_runtime/python27_dist/lib/python27.zip', '/python27_runtime/python27_dist/lib/python2.7', '/python27_runtime/pyth

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

2013-01-17 Thread Francois MASUREL
Hi Takashi, Thanx for helping. In fact my only cron job is there to ping my app and takes usually less than 20ms. But for sure I will use a backend or another version if it is needed. I have a few task running from time to time but they don't seem to start new instances. François On Thu, Jan

Re: [google-appengine] Can't add a domain using my google apps account (paid subscription in the trial period)

2013-01-17 Thread Takashi Matsuo
Hi Gabriel, Is the domain a primary domain? At this point, you can not map your non-primary domain to your App Engine application. http://support.google.com/a/bin/answer.py?hl=en&answer=182081 On Thu, Jan 17, 2013 at 7:11 AM, wrote: > Hello > > I can't add domains to an application I already d

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

2013-01-17 Thread Takashi Matsuo
Hi Francois, If the cron handler usually takes a long time, or uses high amount of resources(CPU, memory), you may want to isolate those cron requests to another version or backends. It will help avoiding a situation where such cron requests occupy your precious frontend instances and thus the use

Re: [google-appengine] Problems loading libraries

2013-01-17 Thread Jesús Espejo
Ok, i have found all information here: https://developers.google.com/appengine/articles/deferred?hl=en Thanks for the details! El jueves, 17 de enero de 2013 20:27:49 UTC+1, Guido van Rossum escribió: > > Usually this is because you are setting sys.path to point to the > libraries, but you have

Re: [google-appengine] Problems loading libraries

2013-01-17 Thread Jesús Espejo
But... How i can do it? There is some documents which explain that in the official app engine's documentation? Thanks again! El jueves, 17 de enero de 2013 20:27:49 UTC+1, Guido van Rossum escribió: > > Usually this is because you are setting sys.path to point to the > libraries, but you have a

Re: [google-appengine] Problems loading libraries

2013-01-17 Thread Guido van Rossum
Usually this is because you are setting sys.path to point to the libraries, but you have an entry point in your app.yaml that doesn't invoke the code that sets sys.path. One solution is to put the sys.path-setting code in appengine_config.py. On Thu, Jan 17, 2013 at 11:25 AM, Jesús Espejo wrote:

[google-appengine] Problems loading libraries

2013-01-17 Thread Jesús Espejo
Hello, Since 2 days i'm experimenting issues when i load my own libraries (libraries created by myself and used in mi app): Traceback (most recent call last): File "/python27_runtime/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 196, in Handle handler = _config_handle.a

Re: [google-appengine] Appengine outage for our app

2013-01-17 Thread Chris Ramsdale
Hey Richard, There were no system-wide issues around this time. If you'll send me your app ID(s) offline, I'll have someone take a look on our side. Thanks... -- Chris Product Manager, Google App Engine On Wed, Jan 16, 2013 at 8:01 PM, Richard Druce wrote: > We had an outage of about 40 min

[google-appengine] Test delete using JPA

2013-01-17 Thread Werney Ayala
I created a test that checks whether an object has been deleted from the database, but always returns the following error: "Candidate class could not be found: DELETE" Find, save and list work perfectly. Has anyone had this error? How to solve? -- You received this message because you are subs

[google-appengine] Unable to upload app

2013-01-17 Thread carlsoncwt
Hi, I am getting the following error when I try to deply a java app in Google app engine -- --- Unable to upload: ja

[google-appengine] Can't add a domain using my google apps account (paid subscription in the trial period)

2013-01-17 Thread citas
Hello I can't add domains to an application I already deployed to appspot. When i try to add domains, i'm redirected to the google apps panel, and there i get an unspecified error (no error code or meaningful description,just prompt me to try again later). This is happening sice the morning.

[google-appengine] GAE development server lost settings

2013-01-17 Thread Justin P
Hi I'm just starting out with Eclipse GAE Java but thought I'd try adding GWT to my test project then decided it was a step too far at the moment and decided to remove it. However, when I try to 'Run As' > 'Web Application' on my test project it now gives the following in the Eclipse console p

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

2013-01-17 Thread Francois Masurel
For my low traffic website I have found that 50 new instances were started during the last 2 hours and 22 minutes (taken from logs searching for "new process"). Seems quite a lot for me as I already have a resident instance. But what annoys me the most is that, among those 50 loading requests,

Re: [google-appengine] Re: need urgent help

2013-01-17 Thread Vik
Thanks for the knowledge on this. Problem seems to be fixed but I am waiting and monitoring the logs for next couple of days to be sure On Jan 17, 2013 7:05 AM, "Thiago Catoto" wrote: > Hi Vik, > > Nice to hear that you fixed your problem. > > I guess with persistence.xml you have more control of

Re: [google-appengine] Re: need urgent help

2013-01-17 Thread Thiago Catoto
Hi Vik, Nice to hear that you fixed your problem. I guess with persistence.xml you have more control of you transactions and operations. Even if you don't need it now, you may need it on the feature. For read consistency or setting custom timeouts for some global queries (with setHint all over th

Re: [google-appengine] Re: Channel API Javascript error Uncaught TypeError: Cannot call method 'ab' of null

2013-01-17 Thread Paulo Taylor de Carvalho
@Lahiru Great tip, it seems to have worked for me too. I'm also struggling with this error: Channel API - 400 Unknown SID Error, http://code.google.com/p/googleappengine/issues/detail?id=4940 Hopefully it will solve it too :-) Cheers! On Thu, Jan 17, 2013 at 7:09 AM, Lahiru Abeydeera wrote: >