Re: [google-appengine] How to find the CAUSE of an error reported in the dashboard

2012-07-30 Thread Takashi Matsuo
Have you checked the logs in the admin console? https://appengine.google.com/logs?&app_id=APP_ID On Mon, Jul 30, 2012 at 11:33 PM, Kate wrote: > My site appears to load OK but I am getting thousands of errors reported in > the dashboard for /_ which I assume is the root directory. How can I find

Re: [google-appengine] Re: Observed: put()'s completion time is dependent on time of day

2012-07-30 Thread Takashi Matsuo
Hi Richard, I'm still not 100% sure, but my first guess is that it might be because of datastore tablets splitting/merging behavior. When you create or delete lots of entities, the datastore tablets might be splited/merged into larger/fewer number of tablets. If that happens, you may experience su

[google-appengine] Re: Indexes not updating

2012-07-30 Thread GregF
This is fixed now, all new entities are indexed. Looks like eventual consistency took a very long time, but came through. Many thanks to whoever fixed it. On Tuesday, 31 July 2012 12:57:06 UTC+12, GregF wrote: > > One of my apps has stopped updating indexes when entities are added or > updated

[google-appengine] Re: Indexes not updating

2012-07-30 Thread GregF
Also affecting another app - two out of five - so may be more general. On Tuesday, 31 July 2012 12:57:06 UTC+12, GregF wrote: > > One of my apps has stopped updating indexes when entities are added or > updated. This affects all indexes, including implicit indexes not > explicitly set up. > > Ot

[google-appengine] Indexes not updating

2012-07-30 Thread GregF
One of my apps has stopped updating indexes when entities are added or updated. This affects all indexes, including implicit indexes not explicitly set up. Other apps are fine so it appears to be application specific, just posting here in case others have the same issue. -- You received this

[google-appengine] Re: Correction: Google Compute Engine G+ hangout, Tue., 31st July, at 4pm

2012-07-30 Thread Amy Unruh
Reminder: there will be a Google Compute Engine hangout tomorrow, Tuesday the 31st July, at 4pm Pacific time (23:00 UTC). On 26 July 2012 12:36, Amy Unruh wrote: > A correction to my earlier message (which I am going to delete in an > attempt to avoid confusion): the Compute Engine hangout is ac

Re: [google-appengine] Re: amazon ses on gae

2012-07-30 Thread Vik
would be great thanks in advance Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Jul 30, 2012 at 1:23 PM, radomir wrote: > Sure, I'll email it to you. > > > > On Monday, July 30, 2012 8:31:16 PM UTC+2, Vivek Kumar wrote: >> >> Thanks a lot! >> >> do you

Re: [google-appengine] Re: amazon ses on gae

2012-07-30 Thread radomir
Sure, I'll email it to you. On Monday, July 30, 2012 8:31:16 PM UTC+2, Vivek Kumar wrote: > > Thanks a lot! > > do you have the compiled jars to use directly? > > Thankx and Regards > > Vik > Founder > http://www.sakshum.org > http://blog.sakshum.org > > > On Mon, Jul 30, 2012 at 1:29 AM, radomi

Re: [google-appengine] Another application stuck "Activating Billing", need urgent support assistance

2012-07-30 Thread Amy Unruh
Mustafa, It looks like your billing has been activated, so I think you should be set now (follow up here if that's not the case). On 30 July 2012 11:34, Mustafa Paksoy wrote: > Hi, > > Our application sortmybox-hrd (www.sortmybox.com) is stuck in "Activating > Billing" mode. We migrated to HRD

[google-appengine] Re: Observed: put()'s completion time is dependent on time of day

2012-07-30 Thread Richard
And, of course including an image from Google docs does not actually work. Grrr! https://docs.google.com/drawings/pub?id=1nbrpRb7bSYIvS7329fY2jmynKCJOtUtlCMImo0wXnpE&w=1440&h=1080 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To v

[google-appengine] Observed: put()'s completion time is dependent on time of day

2012-07-30 Thread Richard
I don't care it may not be dependent of time of day from an architecture point of view. picture is observed behavior. Y axis is number of players per 3 minute game.

[google-appengine] Re: Error message CURL ???

2012-07-30 Thread Kate
The weird thing is, that this large number of errors 22119 in the dashboard summary is not at all reflected in the number of requests. And if I go to logs and do a search on errors I only get 20 errors! Why is the dashboard number so huge. Even the total number of requests is only round 200

[google-appengine] Re: How to move data reliably from front to backends ?

2012-07-30 Thread Richard
Well, I need performance of at least 1k /second throughput including non-batch add from many F1's and batch dequeue/reaping. On Monday, July 30, 2012 10:40:23 AM UTC-4, David Hardwick wrote: > > We do pull queues on backends, and use the pipeline library to insure > reliability. > > > > On Jul

Re: [google-appengine] Re: amazon ses on gae

2012-07-30 Thread Vik
Thanks a lot! do you have the compiled jars to use directly? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Jul 30, 2012 at 1:29 AM, radomir wrote: > Hi Vivek, > > Due to email delivery issues on GAE I switched my projects to Amazon SES > few months ago

[google-appengine] Re: Clearing mapreduce generated records.

2012-07-30 Thread Michael Hermus
If you are sure all the jobs are complete, you can simply delete all the MapReduceState entity objects from the datastore. You can do this programatically, or use the admin UI. On Monday, July 30, 2012 9:49:33 AM UTC-4, D X wrote: > > I've run a lot of small mapreduce jobs and I realized I have

Re: [google-appengine] Instances/Java go crazy

2012-07-30 Thread Mos
> Which runtime you are using? GAE/Java 2.7 On Mon, Jul 30, 2012 at 5:50 PM, Rerngvit Yanggratoke wrote: > Just try with my app in Java runtime and do not find the problem. Which > runtime you are using? > > On Mon, Jul 30, 2012 at 5:47 PM, Mos wrote: >> >> Anyone else seeing issue with GAE ins

Re: [google-appengine] Error message CURL ???

2012-07-30 Thread Barry Hunter
405 is "Method Not Allowed" That request is using a HEAD method. Your application must not be able to handle them. Its likely only setup to handle GET's (which is what a browser mostly uses) and maybe POST's if you have any forms. So could modify the app so that it supports HEAD requests. Some o

Re: [google-appengine] Instances/Java go crazy

2012-07-30 Thread Rerngvit Yanggratoke
Just try with my app in Java runtime and do not find the problem. Which runtime you are using? On Mon, Jul 30, 2012 at 5:47 PM, Mos wrote: > Anyone else seeing issue with GAE instance management? > In one minute - 10 requests - around 5 instances are started. Old ones > do not response. New inst

[google-appengine] Instances/Java go crazy

2012-07-30 Thread Mos
Anyone else seeing issue with GAE instance management? In one minute - 10 requests - around 5 instances are started. Old ones do not response. New instances are created again and again... http://code.google.com/p/googleappengine/issues/detail?id=7910 -- You received this message because you are

Re: [google-appengine] Re: Boat Load of Questions (which might turn in to feature requests)

2012-07-30 Thread Marcel Manz
It would be good to get an explanation from Google on how the system status is probed (please excuse me if this is explained somewhere, I haven't yet come across detailed info on this topic). Eg. is this one and the same instance in just one data center probing such times or are these aggregated

Re: [google-appengine] Re: Boat Load of Questions (which might turn in to feature requests)

2012-07-30 Thread Barry Hunter
On Mon, Jul 30, 2012 at 11:15 AM, Marcel Manz wrote: > > Certainly I could measure those latencies myself and store the information > in memcache for subsequent requests, I would think you would have to. AppEngine is massively distributed, operating out of multiple data-centres. So the latencies

[google-appengine] Error message CURL ???

2012-07-30 Thread Kate
I am getting errors every few seconds being reported on my dashboard. However my pages load OK without error. When I delve from the error which is reported at /_ I get the following type of log entry. What can this mean? 012-07-30 07:49:22.860 / 405 68ms 0kb curl/7.18.2 (i386-redhat-linux-gnu)

[google-appengine] User API questions

2012-07-30 Thread D X
I'd like to do some load/performance/cost testing on real App Engine servers (not dev_appserver) and I have a few questions about the User API. 1. Is it possible for me to log in using a non-browser user agent, ie a python app using the Requests python library or using Apache JMeter? 2. I'd

[google-appengine] Re: Another application stuck "Activating Billing", need urgent support assistance

2012-07-30 Thread mc
I've had this happen to me several times in the past. It generally takes 2 to 4 weeks to get this resolved. There's no way to get App Engine support in a crises. This is one of my biggest complaints against App Engine. You may get lucky and someone in support will stumble on your issue soon

[google-appengine] Re: How to move data reliably from front to backends ?

2012-07-30 Thread David Hardwick
We do pull queues on backends, and use the pipeline library to insure reliability. On Jul 29, 7:42 pm, Jeff Schnitzer wrote: > On Sun, Jul 29, 2012 at 7:19 AM, Richard wrote: > > > How can I do this reliably in a 10 second window ?   I have had using a PULL > > queue suggested, but I don't wan

[google-appengine] How to find the CAUSE of an error reported in the dashboard

2012-07-30 Thread Kate
My site appears to load OK but I am getting thousands of errors reported in the dashboard for /_ which I assume is the root directory. How can I find what is causing the error? Thanks in advance! -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Clearing mapreduce generated records.

2012-07-30 Thread D X
I've run a lot of small mapreduce jobs and I realized I have a lot of old records on my /mapreduce/status page. Is there a clean programatic way of clearing them out easily? This is cross-posted from StackOverflow http://stackoverflow.com/questions/11572151/how-do-i-clear-records-from-google-app

Re: [google-appengine] Is the search API ready for python2.7?

2012-07-30 Thread Amy Unruh
hi, On 30 July 2012 18:11, working wrote: > When it was in testing, it only supports python 2.5 on HRD. > How about now? Thanks~~ > Yes, python27 is supported. HRD is still required. > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" grou

[google-appengine] Re: Boat Load of Questions (which might turn in to feature requests)

2012-07-30 Thread Marcel Manz
Same question for task queue health status, or any kind of programmatic access to the last measured value (+ maybe 5 min average) by the system status for any service / type from: http://code.google.com/status/appengine In my use case I would be highly interested in reading the current add to t

[google-appengine] Re: amazon ses on gae

2012-07-30 Thread radomir
Hi Vivek, Due to email delivery issues on GAE I switched my projects to Amazon SES few months ago and I'm very happy with it. You need to make few changes to Amazon SDK's HTTP layer to make it work on GAE. Here's my patched copy of the AWS sources: https://github.com/radomirml/aws-sdk-for-gaej

[google-appengine] Is the search API ready for python2.7?

2012-07-30 Thread working
When it was in testing, it only supports python 2.5 on HRD. How about now? Thanks~~ -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/SmapHZJhkGIJ. T

[google-appengine] Incoming Bandwidth over quota / python

2012-07-30 Thread working
I have a low traffic site at https://paperlink2.appspot.com I enabled the billing over the weekend to tweak the datastore. When it was done, I disabled the billing. Now, I notice my "Incoming Bandwidth" is over quota. How could that happen? If anyone in the GAE team could have a quick look, I re