Files
django-q2/django_q/main.py
T
Ilan Steemers 5adf92eb27 hooks now work
refactored task as dict instead of list for readability.
2015-06-18 15:23:21 +02:00

221 lines
7.3 KiB
Python

import importlib
import logging
import signal
from multiprocessing import Queue, Event, Process, current_process
import sys
from time import sleep
import jsonpickle
import coloredlogs
from django.core.signing import BadSignature
from django.utils import timezone
import redis
from django.core import signing
from .conf import LOG_LEVEL, SECRET_KEY, SAVE_LIMIT, WORKERS, COMPRESSED, VERSION
from .humanhash import uuid
from .models import Task, Success
SIGNAL_NAMES = dict((getattr(signal, n), n) for n in dir(signal) if n.startswith('SIG') and '_' not in n)
prefix = 'django_q'
q_list = '{}:q'.format(prefix)
logger = logging.getLogger('django-q')
coloredlogs.install(level=getattr(logging, LOG_LEVEL))
r = redis.StrictRedis()
class Cluster(object):
def __init__(self):
try:
r.ping()
except ():
logger.error('Can not connect to Redis server')
return
self.pool_size = WORKERS
self.pool = []
self.task_queue = Queue()
self.done_queue = Queue()
self.event_stop = Event()
self.monitor_pid = None
self.pusher_pid = None
self.sentinel_pid = None
def spawn_process(self, target, *args):
# This is just for PyCharm to not crash. Ignore it.
if not hasattr(sys.stdin, 'close'):
def dummy_close():
pass
sys.stdin.close = dummy_close
p = Process(target=target, args=args)
self.pool.append(p)
p.start()
return p.pid
def spawn_pusher(self):
return self.spawn_process(pusher, self.task_queue, self.event_stop)
def spawn_worker(self):
self.spawn_process(worker, self.task_queue, self.done_queue)
def spawn_monitor(self):
return self.spawn_process(monitor, self.done_queue)
def spawn_sentinel(self):
return self.spawn_process(self.sentinel, self.event_stop)
def reincarnate(self, pid):
if pid == self.monitor_pid:
self.spawn_monitor()
logger.warn("reincarnated monitor after death of {}".format(pid))
elif pid == self.pusher_pid:
self.spawn_pusher()
logger.warn("reincarnated pusher after death of {}".format(pid))
else:
self.spawn_worker()
logger.warn("reincarnated work worker after death of {}".format(pid))
def sentinel(self, e):
for i in range(self.pool_size):
self.spawn_worker()
self.monitor_pid = self.spawn_monitor()
self.pusher_pid = self.spawn_pusher()
logger.info('{} checking worker health at {}'.format(current_process().name, current_process().pid))
while not e.is_set():
for p in list(self.pool):
if not p.is_alive():
# Be humane
p.terminate()
self.pool.remove(p)
# Replace it with a fresh one
self.reincarnate(p.pid)
sleep(1)
self.stop()
def start(self):
signal.signal(signal.SIGTERM, self.sig_handler)
signal.signal(signal.SIGINT, self.sig_handler)
self.sentinel_pid = self.spawn_sentinel()
logger.info('Starting Q cluster version {} at {}'.format(VERSION, current_process().pid))
def stop(self):
# Send the STOP signal to the pool
name = current_process().name
logger.info('{} stopping pool processes'.format(name))
# Stopping pusher
self.event_stop.set()
# Stopping monitor
self.done_queue.put('STOP')
# Stopping workers
for _ in self.pool:
self.task_queue.put('STOP')
def sig_handler(self, signum, frame):
logger.debug('{} got signal {}'.format(current_process().name, SIGNAL_NAMES.get(signum, 'UNKNOWN')))
self.event_stop.set()
def pusher(task_queue, e):
logger.info('{} pushing tasks at {}'.format(current_process().name, current_process().pid))
while not e.is_set():
task = r.blpop(q_list, 1)
if task:
task = task[1]
task_queue.put(task)
logger.debug('queueing {}'.format(task))
logger.info("{} stopped pushing tasks".format(current_process().name))
def monitor(done_queue):
name = current_process().name
logger.info("{} monitoring results at {}".format(name, current_process().pid))
for task in iter(done_queue.get, 'STOP'):
if task['success']:
logger.info("Finished [{}:{}]".format(task['func'], task['name']))
else:
logger.error("Failed [{}:{}] - {}".format(task['func'], task['name'], task['result']))
save_task(task)
logger.info("{} stopped monitoring results".format(name))
def worker(task_queue, done_queue):
name = current_process().name
logger.info('{} ready for work at {}'.format(name, current_process().pid))
for pack in iter(task_queue.get, 'STOP'):
# unpickle the task
try:
task = signing.loads(pack, key=SECRET_KEY, salt='django_q.q', serializer=JSONPickleSerializer)
except TypeError as e:
logger.error(e)
continue
except BadSignature as e:
task['name'] = task['name'].rsplit(":", 1)[0]
task['stopped'] = timezone.now()
task['result'] = e
task['success'] = False
done_queue.put(task)
continue
module, func = task['func'].rsplit('.', 1)
logger.info('{} processing [{}:{}]'.format(name, task['func'], task['name']))
try:
m = importlib.import_module(module)
f = getattr(m, func)
task['result'] = f(*task['args'], **task['kwargs'])
task['stopped'] = timezone.now()
task['success'] = True
done_queue.put(task)
except Exception as e:
task['result'] = e
task['stopped'] = timezone.now()
task['success'] = False
done_queue.put(task)
logger.info('{} stopped doing work'.format(name))
def save_task(task):
if task['success'] and 0 < SAVE_LIMIT < Success.objects.count():
Success.objects.first().delete()
Task.objects.create(name=task['name'],
func=task['func'],
hook=task['hook'],
args=task['args'],
kwargs=task['kwargs'],
started=task['started'],
stopped=task['stopped'],
result=task['result'],
success=task['success'])
def async(func, *args, hook=None, **kwargs):
"""
Schedules a task
"""
task = {'name': uuid()[0], 'func': func, 'hook': hook, 'args': args, 'kwargs': kwargs, 'started': timezone.now()}
pack = signing.dumps(task,
key=SECRET_KEY,
salt='django_q.q',
compress=COMPRESSED,
serializer=JSONPickleSerializer)
r.rpush(q_list, pack)
logger.debug('Pushed {}'.format(pack))
return task['name']
class JSONPickleSerializer(object):
"""
Simple wrapper around jsonpickle to be used in signing.dumps and
signing.loads.
"""
@staticmethod
def dumps(obj):
return jsonpickle.dumps(obj).encode('latin-1')
@staticmethod
def loads(data):
return jsonpickle.loads(data.decode('latin-1'))