Re: [google-appengine] Contention happens using Task Queue

2015-12-03 Thread Jeff Schnitzer
You'll need to post some more code details - including the structure of the object you are trying to change. Also you don't mention whether this is an exception or just a log message. It's easy to accidentally create contention with the task queue, especially if you're in a transaction and

[google-appengine] Backup running wild

2015-12-03 Thread Rüdiger Jungbeck
We have an AppEngine based Python application which has 212 MB of data store data (according to the console). I tried to do a backup every 10 days. - description: My Backup url:

[google-appengine] Google App Engine - Spring, MySQL & AngularJS

2015-12-03 Thread Mvs Prasad
If we use Google App Engine to deploy on Google cloud with the following technology stack – Is Google App Engine will support all these. •*Core Java* •*Spring Framework 4.X* •*Spring Boot* •*Spring REST and HATEOAS* •*Spring Data (JPA)* •

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread Rene Marty
Dear Google Team, I send this issue three weeks ago to one of your developers advocates. I'm very experienced in GAE (three years developing mission critical apps) and if you need my support or testing, it will be a pleasure. I think there are two issues with the taskqueue: 1) The start of

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread Jim
We have been seeing latency of 5 hours or more at times, although it seems to be functioning normally today. On Thursday, December 3, 2015 at 11:07:22 AM UTC-6, Rene Marty wrote: > > Dear Google Team, > > I send this issue three weeks ago to one of your developers advocates. > I'm very

[google-appengine] Google App Engine "login URL" behaves strangely on mobile

2015-12-03 Thread Douglas Manley
I'm developing a web app that (through the magic of "manifest.json" and some Safari-equivalent "meta" tags) can be added to a user's "home screen" on his mobile phone. If you're not familiar with it, basically the browser (Chrome and Safari right now) will allow you to make a website more

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread Jim
David, thanks I think you're right that looks like the issue. Google, it sure would be nice if the status page was more granular and showed the status of the task queue separately like it does the datastore and cloud storage. Task Queues are a critically important part of our application

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread David Fischer
We are also seeing fairly normal operation today. On Thursday, December 3, 2015 at 9:21:08 AM UTC-8, Jim wrote: > > We have been seeing latency of 5 hours or more at times, although it seems > to be functioning normally today. > > > > On Thursday, December 3, 2015 at 11:07:22 AM UTC-6, Rene

[google-appengine] Re: Task Queue Latency

2015-12-03 Thread John Wheeler
Yes back to normal here too On Tuesday, December 1, 2015 at 8:03:25 AM UTC-8, Jim wrote: > > Hello, > > Has anyone else noticed a lot of latency in Task Queues within the past > few days? We've noticed that our push queues are backing up with > thousands, sometimes tens of thousands of tasks.

[google-appengine] Contention happens using Task Queue

2015-12-03 Thread Yun Li
I am using Objectify. This error happens when updating a single datastore entity. There is NO TRANSACTION. My working flow as follows: 1 Entity entity1 = Objectify.read(id1) 2 Modify entity1's property and put "update(entity1)" in a taskqueue 3 When task executes: Objectify.save(entity1) Then I