39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from celery.task.base import Task, PeriodicTask
|
|
from celery.execute import send_task
|
|
|
|
from pymongo.objectid import ObjectId
|
|
|
|
from oyster.core import kernel
|
|
|
|
|
|
class UpdateTask(Task):
|
|
""" task that updates documents """
|
|
# results go straight to database
|
|
ignore_result = True
|
|
|
|
def run(self, doc_id):
|
|
doc = kernel.db.tracked.find_one({'_id': doc_id})
|
|
kernel.update(doc)
|
|
for task in doc.get('post_update_tasks', []):
|
|
send_task(hook, (doc_id,))
|
|
kernel.db.status.update({}, {'$inc': {'update_queue': -1}})
|
|
|
|
|
|
class UpdateTaskScheduler(PeriodicTask):
|
|
""" recurring task that populates the update queue """
|
|
|
|
# 60s tick
|
|
run_every = 60
|
|
|
|
def run(self):
|
|
# if the update queue isn't empty, wait to add more
|
|
# (currently the only way we avoid duplicates)
|
|
# alternate option would be to set a _queued flag on documents
|
|
if kernel.db.status.find_one()['update_queue']:
|
|
return
|
|
|
|
next_set = kernel.get_update_queue()
|
|
for doc in next_set:
|
|
UpdateTask.delay(doc['_id'])
|
|
kernel.db.status.update({}, {'$inc': {'update_queue': 1}})
|