[google-appengine] Re: Task queues failed to load on console

2016-08-18 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Thanks for your report, Smash IO! Some UI views in the Console use API calls to source their data, which do have a quota. It's possible your project was at it's quota for those calls in the given time period. Feel free to file a Public Issue Tracker

[google-appengine] Re: Task queues failed to load on console

2016-08-18 Thread Smash IO
It seems after the quota was reset an hour ago the problem disappeared. The queues and cron jobs seem to be working and the logs don't report any unusual problems. The evidence points to a script problem on the console. And I can view tasks! If it happens again I'll report this problem. On T

[google-appengine] Re: Task Queues console showing errors

2013-06-25 Thread Aswath Satrasala
My app-id: accountingguru-india.appspot.com -Aswath On Tue, Jun 25, 2013 at 5:07 PM, Aswath Satrasala < aswath.satras...@gmail.com> wrote: > Hello Appengine Team, > > In the Console, I click on the Task Queues. It shows the following error > > Server Error > > A server error has occurred. > >

[google-appengine] Re: Task Queues not running

2013-06-04 Thread Diego
Mines either. On Tuesday, June 4, 2013 3:35:41 PM UTC-3, Scott wrote: > > My application isn't running tasks in the task queue right now. It hasn't > been for four hours. I get errors on the dashboard when I try to view > specific queues (sometimes) or when I try to manually run a task (all the

[google-appengine] Re: Task queues not running

2012-06-21 Thread Kenneth
And they're back. On Thursday, June 21, 2012 10:49:50 AM UTC+1, Kenneth wrote: > > All of my task queues have stopped processing about 20 minutes ago, > general problem or just me? > > No changes to our settings. > > > -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Task queues sometimes stop for hours, then restart

2012-04-17 Thread vlad
I have always seen individual tasks to be delayed by many minutes on rare occasions. If the whole queue is dead for 30 minutes is something different. File a ticket and provide logs. On Monday, April 16, 2012 4:46:54 PM UTC-7, Luca de Alfaro wrote: > > I am having a problem where task queues st

[google-appengine] Re: Task queues and user facing requests

2011-09-08 Thread stevep
Thanks Joshua. I did read that thread, but it is more speculative in nature by the participants all of whom are not GAE engineers. My thinking is that task queues can provide an excellent means for GAE to improve overall instance efficiencies, but am still thinking about that. Some initial thought

[google-appengine] Re: Task queues and user facing requests

2011-09-08 Thread stevep
Additional Question: 1) How does the burst rate affect The Scheduler and instance counts? Overall a detailed description of how TQs are handled now would be terrific. thnx, stevep -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post t

[google-appengine] Re: Task Queues

2009-08-17 Thread Philippe
I don't think you can flush a queue today (I hope we will be able to do it from the dashboard in the future). What you can do, is to empty your tasks. just put "pass" in it, instead of there content, and upload to appengine. of course, if you have more than 10 000 taks trying to run, you will hav

[google-appengine] Re: Task Queues

2009-08-17 Thread Sebastian Aviña
I need to flush my "default" queue, but I don't know how. Any suggestions? On Aug 16, 5:21 pm, Sebastian Aviña wrote: > Hi, I'm running some task queues on my app hola-dgo, right now I  have > exceded the Total Daily Quota, and I still have around 2000+ tasks in > queue... I don't know which ta

[google-appengine] Re: Task Queues

2009-08-17 Thread Jason Smith
I've found three tricks to be helpful: 1. Do not use the default queue unless you have totally debugged your code. The default queue is set so that a runaway task process will max out the quota very quickly. 2. Stick to about one queue per task to have a better idea of what's going on. 3. If p

[google-appengine] Re: Task Queues

2009-08-16 Thread Philippe
http://code.google.com/p/googleappengine/issues/list you can star some issues on taskQueue. it's still in the lab of appengine team. On Aug 17, 12:21 am, Sebastian Aviña wrote: > Hi, I'm running some task queues on my app hola-dgo, right now I  have > exceded the Total Daily Quota, and I still

[google-appengine] Re: Task Queues and Asynchronous Processing TODAY

2008-12-11 Thread Mahmoud
Yup. We do exactly what Ben describes. On Dec 10, 9:26 am, Ben Nevile <[EMAIL PROTECTED]> wrote: > Hi Dennis - > > I am using an architecture similar to what you describe.  Rather than > use a separate server to do the pinging, I use client-side JS to do > this dirty work.  You need to have a fai

[google-appengine] Re: Task Queues and Asynchronous Processing TODAY

2008-12-10 Thread bowman.jos...@gmail.com
gaeutilies has a cron functionality (also dependent on user interaction) also. http://code.google.com/p/gaeutilities/wiki/Cron On Dec 10, 9:26 am, Ben Nevile <[EMAIL PROTECTED]> wrote: > Hi Dennis - > > I am using an architecture similar to what you describe.  Rather than > use a separate server

[google-appengine] Re: Task Queues and Asynchronous Processing TODAY

2008-12-10 Thread Ben Nevile
Hi Dennis - I am using an architecture similar to what you describe. Rather than use a separate server to do the pinging, I use client-side JS to do this dirty work. You need to have a fairly steady stream of users for this technique to be reliable. :) Ben On Dec 9, 9:27 pm, Dennis <[EMAIL

[google-appengine] Re: Task Queues and Asynchronous Processing TODAY

2008-12-10 Thread kaspars...@gmail.com
You might achieve this kind of functionality (and more) using AppRocket http://code.google.com/p/approcket Although it currently doesn't have a generic queuing service built in, it's very easy to simulate. Just setup an entity in AE for asynchronous tasks, for example QueueTask and have it replic