[web2py] scheduler question

2018-02-06 Thread Andrea Fae'
Hello, days ago I started to use scheduler and all was working very well. I could see db.scheduler_run.task_id lines in the db with all the results and console. Now the scheduler works very well but I don't see nothing in the table db.scheduler_run.task_id. Why? Talk completed without problems.

[web2py] Scheduler Question

2015-06-12 Thread 'Michael Gheith' via web2py-users
I have an application that uses the scheduler. It runs really good, however I noticed odd behavior which I don't think is normal. When I launch a worker thread (just one) with the following everything works great: python web2py.py -K myapp A few days later I will come back to the node that th

[web2py] scheduler question

2014-01-15 Thread Jayadevan M
A couple of questions about web2py scheduler - 1) I have configured web2py using nginx znd uwsgi on CentOS. These services will automatically restart if the server reboots. How can I ensure that web2py scheduler also restarts? 2) Is this the right way of starting the scheduler from command line?

[web2py] Scheduler question

2013-10-02 Thread Marin Pranjić
Hi, I have a task queue that runs in the background. I want to switch to scheduler because I need more workers. Queued tasks are long running (video transcoding, 10-20 minutes each). 1. If I terminate (Ctrl+C) scheduler process, scheduler_run record is STOPPED and scheduler_task record is back

[web2py] scheduler question, how to use queue_task?

2013-03-07 Thread Tim Richardson
I have an app using the scheduler the old-fashioned way. I have a model which sets up the scheduler. myscheduler = Scheduler(db,dict(import_task_add=import_task_add)) The model also defines the task which the scheduler runs. However, the scheduling of a job is done by a controller, after the use