[google-appengine] Re: Flood of warm up requests!

2013-07-26 Thread Hugo Visser
Same issue yesterday on the Java runtime. Now I'm seeing a lot of warm up requests too, almost one for every request I do, despite the fact I have resident instances. I've filed a billing issue to request a refund for charged resources. Hugo On Tuesday, June 25, 2013 10:49:00 PM UTC+2,

[google-appengine] Datastore Admin screen blank

2013-07-26 Thread Aswath Satrasala
Hello, I am using Firefox. I click on the Datastore Admin link in the Appengine console. The screen on the right shows empty. -Aswath -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails

[google-appengine] Re: Datastore Admin screen blank

2013-07-26 Thread Aswath Satrasala
Sorry about this. Already, some workarounds are suggested here https://groups.google.com/forum/#!searchin/google-appengine/datastore$20admin/google-appengine/ha68JGbkFQs/q72xJjNrBzgJ -Aswath On Fri, Jul 26, 2013 at 5:13 PM, Aswath Satrasala aswath.satras...@gmail.com wrote: Hello, I am

Re: [google-appengine] Time Syncronization

2013-07-26 Thread Richard
One other item. I have had DeadlineExceeded Errors when calling time.time() in Python. Everything is managed for you. That means ANYTHING that relies on the 'machine' can fail randomly (and does) -- You received this message because you are subscribed to the Google Groups Google App

Re: [google-appengine] Re: Time Syncronization

2013-07-26 Thread Barry Hunter
Basically, I'm worried about two requests coming in around the same time, hitting two different instances, then having to resolve which request was first. You could use cloud-sql :) Or even http://stackoverflow.com/questions/3985812/how-to-implement-autoincrement-on-google-appengine --

Re: [google-appengine] Time Syncronization

2013-07-26 Thread Barry Hunter
Everything is managed for you. That means ANYTHING that relies on the 'machine' can fail randomly (and does) http://www.zdnet.com/google-at-scale-everything-breaks-3040093061/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

Re: [google-appengine] Time Syncronization

2013-07-26 Thread alex
Everything is managed for you. That means ANYTHING that relies on the 'machine' can fail randomly (and does) this implication is totally wrong. On Fri, Jul 26, 2013 at 3:27 PM, Richard steven...@gmail.com wrote: One other item. I have had DeadlineExceeded Errors when calling

[google-appengine] Endpoints stopped loading from mobile device

2013-07-26 Thread Thomas Tiercelin
Hi Google Team, Since 20 hours, our phonegap/html/js apps stopped loading API from endpoints. I filled an issue here (please star it if your encouter this problem) : http://code.google.com/p/googleappengine/issues/detail?id=9747thanks=9747ts=1374846096 routes and discovery url are working

[google-appengine] Modules with the same code?

2013-07-26 Thread Jeff Schnitzer
I just wanted to check how this is intended to be solved (using Java): I want to configure F1 for most of the URLs in my app, but F2 or F4 for a couple URLs that require large amounts of memory (batch processes run from cron). I really don't want separate codebases - it's pretty much all the same

[google-appengine] Re: Keep forwarding to admin/configure.jsp

2013-07-26 Thread Vinny P
On Thursday, July 25, 2013 11:11:40 PM UTC-5, Cin Ling wrote: Dear Vinny.. may i ask something again?? I'm really new with gae.. I have just deployed this http://testictactoe.appspot.com/;. When i click to the Tictactoe, it shows Server Error. The Server Error page is not the complete

[google-appengine] Re: SendGrid Integration

2013-07-26 Thread Bryce Cutt
Mandrill works great as well. On Wednesday, July 24, 2013 1:22:13 PM UTC-7, Joshua Smith wrote: Dunno how I missed this, but given the train wreck of GAE's email delivery, this is very promising: https://developers.google.com/appengine/articles/sendgrid -Joshua -- You received

[google-appengine] uploading static files.

2013-07-26 Thread Stefan Szakal
I've deployed a new app on app engine. But it seems that the static files didn;t got uploaded. http://stefan-szakal.appspot.com/ Can someone tell me why I can't access my static files? (on local computer using the app engine development environment it works fine) yaml: application:

[google-appengine] Re: deviceinfoendpoint.Deviceinfoendpoint imports.... where are they???

2013-07-26 Thread Jagadishwara Reddy
Request to please share the solution if you got any ? On Friday, 22 February 2013 11:07:53 UTC+5:30, Jarom wrote: Hi, I have been following these instructions here: https://developers.google.com/eclipse/docs/endpoints-addentities but I can't work out these imports: import

[google-appengine] CloudEndpoints generator (Eclipse plugin or command line) both don't generate the actual source anymore of the endpoint

2013-07-26 Thread Johan Compagner
Hi, This was working fine a few days ago as far as i know, i think i even generated just fine with 1.8.2 which i updated to But now it doesn't generate the actual source anymore, how ever i generate it, it generates many things, like all the support libs are there. But it doesn't generate the

[google-appengine] Re: Generate cloud endpoint client library not working

2013-07-26 Thread Johan Compagner
Currently today i have kind of the same problem It did work fine before, it still seems to work fine, it does pretty much do it all, except that it generates the actual endpoint sources (or at least in the generated zip or folder there is nothing to be found) But i don't get any error like that

[google-appengine] Adding Custom Domain fails with Invalid Request

2013-07-26 Thread Ryan Swart
I've been trying to add a custom domain to my app for the last couple of hours; the domain is an alias of my main Google Apps for Business account. It fails with an invalid request error if I sign in with my personal Gmail account, or infinitely redirects to the account selection page if I use

[google-appengine] como hacer formularios en app engine y python, ademas usar una base de datos para almacenarlos

2013-07-26 Thread jose martinez
-- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this group, send email to

Re: [google-appengine] Modules and runtimes

2013-07-26 Thread Brian Quinlan
Hi Ronoaldo, Yes! Cheers, Brian On 25 July 2013 20:15, Ronoaldo Pereira ronoa...@gmail.com wrote: Can I have an application module (or backend) using the Go runtime and keep my front-ends using Java runtime? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Modules with the same code?

2013-07-26 Thread Jason Collins
Hi Jeff, FWIW, the is precisely what we do, but on the Python side. We just multiply upload copies of our app to the different modules (and then manually flip all the versions forward - ugh), and then use dispatch to route the traffic around. In Python-land, the appcfg.py update command,

[google-appengine] error 404 for a route that never is called

2013-07-26 Thread coto
I am logging 404 errors in my application (Python 2.7, SDK 1.8.2, HR), the question is... Why do I receive a bunch of these errors (more than 3 times a day): *Application ID:* sandengine *Application Version:* dev.368471226492213275 *User Agent:* AppEngine-Google;

[google-appengine] Re: error 404 for a route that never is called

2013-07-26 Thread Vinny P
Are you only getting these requests from the IP address 0.1.0.1? If so, that IP address is reserved by GAE for sending cron queries ( https://developers.google.com/appengine/docs/python/config/cron scroll down to Securing URLs for Cron). Someone configured a cron request for that URL in the

Re: [google-appengine] Re: error 404 for a route that never is called

2013-07-26 Thread Rodrigo Augosto
Are you only getting these requests from the IP address 0.1.0.1? Yes, always with the same IP and the same error If so, that IP address is reserved by GAE for sending cron queries ( https://developers.google.com/appengine/docs/python/config/cron scroll down to Securing URLs for Cron).

[google-appengine] Re: Modules with the same code?

2013-07-26 Thread Vinny P
On Friday, July 26, 2013 10:12:19 AM UTC-5, Jeff Schnitzer wrote: I just wanted to check how this is intended to be solved (using Java): I want to configure F1 for most of the URLs in my app, but F2 or F4 for a couple URLs that require large amounts of memory (batch processes run from

[google-appengine] Re: como hacer formularios en app engine y python, ademas usar una base de datos para almacenarlos

2013-07-26 Thread Vinny P
On Friday, July 26, 2013 11:39:10 AM UTC-5, jose martinez wrote: como hacer formularios en app engine y python, ademas usar una base de datos para almacenarlos I don't speak Spanish, but Google Translate comes up with the translation: *how to make forms app engine and python, also using a

Re: [google-appengine] Re: error 404 for a route that never is called

2013-07-26 Thread Vinny P
On Friday, July 26, 2013 2:58:47 PM UTC-5, coto wrote: There is no any cron configured, furthermore, cron.yaml file doesn't exists Try putting a blank cron.yaml file to reset cron. If that fails, you may need to file an issue and have someone from Google look into your application.

Re: [google-appengine] Re: error 404 for a route that never is called

2013-07-26 Thread Rodrigo Augosto
I'll try, thanks!!! On Jul 26, 2013, at 4:11 PM, Vinny P vinny...@gmail.com wrote: On Friday, July 26, 2013 2:58:47 PM UTC-5, coto wrote: There is no any cron configured, furthermore, cron.yaml file doesn't exists Try putting a blank cron.yaml file to reset cron. If that fails, you may

[google-appengine] Re: saving google user details to datastore... but will they be kept to update?

2013-07-26 Thread Matthew Blain
Unfortunately no. I recommend never storing a UserProperty in the datastore. Instead, record the user_id and also you may wish to save the last email address/nickname/etc information you have seen for the user. You may be interested in https://developers.google.com/+/features/sign-in although

[google-appengine] Re: Add missing content- and cache-control headers/metadata to cloudstorage/common (issue 11802047)

2013-07-26 Thread tkaitchuck
Looks good to me. https://codereview.appspot.com/11802047/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To

[google-appengine] Re: Add missing content- and cache-control headers/metadata to cloudstorage/common (issue 11802047)

2013-07-26 Thread tkaitchuck
Looks good to me. https://codereview.appspot.com/11802047/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To

Re: [google-appengine] Re: deviceinfoendpoint.Deviceinfoendpoint imports.... where are they???

2013-07-26 Thread Jarom Leneham
Hi, I can't remember what I did with that. I ended up going with Stackmob. On 27 Jul 2013 02:54, Jagadishwara Reddy tojvre...@gmail.com wrote: Request to please share the solution if you got any ? On Friday, 22 February 2013 11:07:53 UTC+5:30, Jarom wrote: Hi, I have been following these

[google-appengine] RequestTooLargeError

2013-07-26 Thread Denis Costa
I'm trying to handle blob files in a task. Some files are too large and a exception is raised. RequestTooLargeError: The request to API call datastore_v3.Put() was too large. I have to read the files, and I'm doing something like BlobReader(blob_key). There is a way to work with large files in

[google-appengine] Re: Flood of warm up requests!

2013-07-26 Thread Dustin Doan
I'm seeing the same thing, starting yesterday. Has anyone heard from Google on this issue? I don't have the support privileges necessary to submit a ticket of my own. I'll definitely try to redeploy, but it would be nice to know what's causing this/how to prevent it in the future. On Friday,

[google-appengine] Re: Add missing content- and cache-control headers/metadata to cloudstorage/common (issue 11802047)

2013-07-26 Thread yey
On 2013/07/26 21:58:14, tkaitchuck wrote: Looks good to me. https://code.google.com/p/appengine-gcs-client/issues/detail?id=14can=1 https://codereview.appspot.com/11802047/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe

[google-appengine] Blank screen for GWT application on one application id and works well for another application id

2013-07-26 Thread Jayant Kumar
Hello All, I deployed a GWT application version to appengine with one applicaiton-id and has been working well i.e renders the home page. appengine web.xml applicationgoogle.com:x-uat/application versionx-1-date/version Then, tried amny times to deploy the same application with a different

Re: [google-appengine] RequestTooLargeError

2013-07-26 Thread Vinny P
On Fri, Jul 26, 2013 at 3:47 PM, Denis Costa deniscosta...@gmail.comwrote: I'm trying to handle blob files in a task. Some files are too large and a exception is raised. RequestTooLargeError: The request to API call datastore_v3.Put() was too large. Are you writing to the datastore in any

[google-appengine] Re: Flood of warm up requests!

2013-07-26 Thread husayt
I have the same - flood of warmup issues. My app has been over quota whole day because of this. (appid: aforizmler, runtime:java) This is really becoming a critical issue. We are loosing users/visitors because appengine is so unreliable so often so lately. We get this warmup issues almost every

[google-appengine] Re: Lots of 500's served tonight

2013-07-26 Thread husayt
i had the same issue few days ago. Nobody from Google even did bother to reply/acknowledge. What kind of customer support is this? On Wednesday, 24 July 2013 04:30:45 UTC+1, GAEfan wrote: My app started serving 500s tonight, with no changes to the code for many days. It is telling me

Re: [google-appengine] Re: API to get a list of deployed applications to GAE

2013-07-26 Thread Vinny P
On Thu, Jul 25, 2013 at 5:07 AM, e.hos...@fci-cu.edu.eg wrote: Sorry, I forget to tell u that I need a java API for the below purpose On Thursday, July 25, 2013 12:05:51 PM UTC+2, e.ho...@fci-cu.edu.eg wrote: Hello All, I'm wondering if there is API that can be used by developers to

[google-appengine] Re: Lots of 500's served tonight

2013-07-26 Thread husayt
My java app is having massive amount of warmup requests for last three days (see pic). What is going on? https://lh4.googleusercontent.com/-Mz3B5eJDUjg/UfNar8QJ_aI/Bes/qnm-m85u9Ec/s1600/chart.png On Saturday, 27 July 2013 05:54:04 UTC+1, husayt wrote: i had the same issue few days