mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
838 lines
31 KiB
Python
838 lines
31 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import (absolute_import, division, print_function,
|
|
unicode_literals)
|
|
|
|
import errno
|
|
import logging
|
|
import os
|
|
import random
|
|
import signal
|
|
import socket
|
|
import sys
|
|
import time
|
|
import traceback
|
|
import warnings
|
|
from datetime import timedelta
|
|
|
|
from rq.compat import as_text, string_types, text_type
|
|
|
|
from .compat import PY2
|
|
from .connections import get_current_connection, push_connection, pop_connection
|
|
from .defaults import DEFAULT_RESULT_TTL, DEFAULT_WORKER_TTL
|
|
from .exceptions import DequeueTimeout, ShutDownImminentException
|
|
from .job import Job, JobStatus
|
|
from .logutils import setup_loghandlers
|
|
from .queue import Queue, get_failed_queue
|
|
from .registry import FinishedJobRegistry, StartedJobRegistry, clean_registries
|
|
from .suspension import is_suspended
|
|
from .timeouts import UnixSignalDeathPenalty
|
|
from .utils import (ensure_list, enum, import_attribute, make_colorizer,
|
|
utcformat, utcnow, utcparse)
|
|
from .version import VERSION
|
|
|
|
try:
|
|
from procname import setprocname
|
|
except ImportError:
|
|
def setprocname(*args, **kwargs): # noqa
|
|
pass
|
|
|
|
green = make_colorizer('darkgreen')
|
|
yellow = make_colorizer('darkyellow')
|
|
blue = make_colorizer('darkblue')
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class StopRequested(Exception):
|
|
pass
|
|
|
|
|
|
def iterable(x):
|
|
return hasattr(x, '__iter__')
|
|
|
|
|
|
def compact(l):
|
|
return [x for x in l if x is not None]
|
|
|
|
_signames = dict((getattr(signal, signame), signame)
|
|
for signame in dir(signal)
|
|
if signame.startswith('SIG') and '_' not in signame)
|
|
|
|
|
|
def signal_name(signum):
|
|
try:
|
|
if sys.version_info[:2] >= (3, 5):
|
|
return signal.Signals(signum).name
|
|
else:
|
|
return _signames[signum]
|
|
|
|
except KeyError:
|
|
return 'SIG_UNKNOWN'
|
|
except ValueError:
|
|
return 'SIG_UNKNOWN'
|
|
|
|
|
|
WorkerStatus = enum(
|
|
'WorkerStatus',
|
|
STARTED='started',
|
|
SUSPENDED='suspended',
|
|
BUSY='busy',
|
|
IDLE='idle'
|
|
)
|
|
|
|
|
|
class Worker(object):
|
|
redis_worker_namespace_prefix = 'rq:worker:'
|
|
redis_workers_keys = 'rq:workers'
|
|
death_penalty_class = UnixSignalDeathPenalty
|
|
queue_class = Queue
|
|
job_class = Job
|
|
|
|
@classmethod
|
|
def all(cls, connection=None):
|
|
"""Returns an iterable of all Workers.
|
|
"""
|
|
if connection is None:
|
|
connection = get_current_connection()
|
|
reported_working = connection.smembers(cls.redis_workers_keys)
|
|
workers = [cls.find_by_key(as_text(key), connection)
|
|
for key in reported_working]
|
|
return compact(workers)
|
|
|
|
@classmethod
|
|
def find_by_key(cls, worker_key, connection=None):
|
|
"""Returns a Worker instance, based on the naming conventions for
|
|
naming the internal Redis keys. Can be used to reverse-lookup Workers
|
|
by their Redis keys.
|
|
"""
|
|
prefix = cls.redis_worker_namespace_prefix
|
|
if not worker_key.startswith(prefix):
|
|
raise ValueError('Not a valid RQ worker key: {0}'.format(worker_key))
|
|
|
|
if connection is None:
|
|
connection = get_current_connection()
|
|
if not connection.exists(worker_key):
|
|
connection.srem(cls.redis_workers_keys, worker_key)
|
|
return None
|
|
|
|
name = worker_key[len(prefix):]
|
|
worker = cls([], name, connection=connection)
|
|
queues = as_text(connection.hget(worker.key, 'queues'))
|
|
worker._state = as_text(connection.hget(worker.key, 'state') or '?')
|
|
worker._job_id = connection.hget(worker.key, 'current_job') or None
|
|
if queues:
|
|
worker.queues = [cls.queue_class(queue, connection=connection)
|
|
for queue in queues.split(',')]
|
|
return worker
|
|
|
|
def __init__(self, queues, name=None,
|
|
default_result_ttl=None, connection=None, exc_handler=None,
|
|
exception_handlers=None, default_worker_ttl=None,
|
|
job_class=None, queue_class=None): # noqa
|
|
if connection is None:
|
|
connection = get_current_connection()
|
|
self.connection = connection
|
|
|
|
if job_class is not None:
|
|
if isinstance(job_class, string_types):
|
|
job_class = import_attribute(job_class)
|
|
self.job_class = job_class
|
|
|
|
if queue_class is not None:
|
|
if isinstance(queue_class, string_types):
|
|
queue_class = import_attribute(queue_class)
|
|
self.queue_class = queue_class
|
|
|
|
queues = [self.queue_class(name=q, connection=connection)
|
|
if isinstance(q, string_types) else q
|
|
for q in ensure_list(queues)]
|
|
self._name = name
|
|
self.queues = queues
|
|
self.validate_queues()
|
|
self._exc_handlers = []
|
|
|
|
if default_result_ttl is None:
|
|
default_result_ttl = DEFAULT_RESULT_TTL
|
|
self.default_result_ttl = default_result_ttl
|
|
|
|
if default_worker_ttl is None:
|
|
default_worker_ttl = DEFAULT_WORKER_TTL
|
|
self.default_worker_ttl = default_worker_ttl
|
|
|
|
self._state = 'starting'
|
|
self._is_horse = False
|
|
self._horse_pid = 0
|
|
self._stop_requested = False
|
|
self.log = logger
|
|
self.failed_queue = get_failed_queue(connection=self.connection)
|
|
self.last_cleaned_at = None
|
|
|
|
# By default, push the "move-to-failed-queue" exception handler onto
|
|
# the stack
|
|
if exception_handlers is None:
|
|
self.push_exc_handler(self.move_to_failed_queue)
|
|
if exc_handler is not None:
|
|
self.push_exc_handler(exc_handler)
|
|
warnings.warn(
|
|
"use of exc_handler is deprecated, pass a list to exception_handlers instead.",
|
|
DeprecationWarning
|
|
)
|
|
elif isinstance(exception_handlers, list):
|
|
for h in exception_handlers:
|
|
self.push_exc_handler(h)
|
|
elif exception_handlers is not None:
|
|
self.push_exc_handler(exception_handlers)
|
|
|
|
def validate_queues(self):
|
|
"""Sanity check for the given queues."""
|
|
for queue in self.queues:
|
|
if not isinstance(queue, self.queue_class):
|
|
raise TypeError('{0} is not of type {1} or string types'.format(queue, self.queue_class))
|
|
|
|
def queue_names(self):
|
|
"""Returns the queue names of this worker's queues."""
|
|
return list(map(lambda q: q.name, self.queues))
|
|
|
|
def queue_keys(self):
|
|
"""Returns the Redis keys representing this worker's queues."""
|
|
return list(map(lambda q: q.key, self.queues))
|
|
|
|
@property
|
|
def name(self):
|
|
"""Returns the name of the worker, under which it is registered to the
|
|
monitoring system.
|
|
|
|
By default, the name of the worker is constructed from the current
|
|
(short) host name and the current PID.
|
|
"""
|
|
if self._name is None:
|
|
hostname = socket.gethostname()
|
|
shortname, _, _ = hostname.partition('.')
|
|
self._name = '{0}.{1}'.format(shortname, self.pid)
|
|
return self._name
|
|
|
|
@property
|
|
def key(self):
|
|
"""Returns the worker's Redis hash key."""
|
|
return self.redis_worker_namespace_prefix + self.name
|
|
|
|
@property
|
|
def pid(self):
|
|
"""The current process ID."""
|
|
return os.getpid()
|
|
|
|
@property
|
|
def horse_pid(self):
|
|
"""The horse's process ID. Only available in the worker. Will return
|
|
0 in the horse part of the fork.
|
|
"""
|
|
return self._horse_pid
|
|
|
|
@property
|
|
def is_horse(self):
|
|
"""Returns whether or not this is the worker or the work horse."""
|
|
return self._is_horse
|
|
|
|
def procline(self, message):
|
|
"""Changes the current procname for the process.
|
|
|
|
This can be used to make `ps -ef` output more readable.
|
|
"""
|
|
setprocname('rq: {0}'.format(message))
|
|
|
|
def register_birth(self):
|
|
"""Registers its own birth."""
|
|
self.log.debug('Registering birth of worker {0}'.format(self.name))
|
|
if self.connection.exists(self.key) and \
|
|
not self.connection.hexists(self.key, 'death'):
|
|
msg = 'There exists an active worker named {0!r} already'
|
|
raise ValueError(msg.format(self.name))
|
|
key = self.key
|
|
queues = ','.join(self.queue_names())
|
|
with self.connection._pipeline() as p:
|
|
p.delete(key)
|
|
p.hset(key, 'birth', utcformat(utcnow()))
|
|
p.hset(key, 'queues', queues)
|
|
p.sadd(self.redis_workers_keys, key)
|
|
p.expire(key, self.default_worker_ttl)
|
|
p.execute()
|
|
|
|
def register_death(self):
|
|
"""Registers its own death."""
|
|
self.log.debug('Registering death')
|
|
with self.connection._pipeline() as p:
|
|
# We cannot use self.state = 'dead' here, because that would
|
|
# rollback the pipeline
|
|
p.srem(self.redis_workers_keys, self.key)
|
|
p.hset(self.key, 'death', utcformat(utcnow()))
|
|
p.expire(self.key, 60)
|
|
p.execute()
|
|
|
|
def set_shutdown_requested_date(self):
|
|
"""Sets the date on which the worker received a (warm) shutdown request"""
|
|
self.connection.hset(self.key, 'shutdown_requested_date', utcformat(utcnow()))
|
|
|
|
@property
|
|
def birth_date(self):
|
|
"""Fetches birth date from Redis."""
|
|
birth_timestamp = self.connection.hget(self.key, 'birth')
|
|
if birth_timestamp is not None:
|
|
return utcparse(as_text(birth_timestamp))
|
|
|
|
@property
|
|
def shutdown_requested_date(self):
|
|
"""Fetches shutdown_requested_date from Redis."""
|
|
shutdown_requested_timestamp = self.connection.hget(self.key, 'shutdown_requested_date')
|
|
if shutdown_requested_timestamp is not None:
|
|
return utcparse(as_text(shutdown_requested_timestamp))
|
|
|
|
@property
|
|
def death_date(self):
|
|
"""Fetches death date from Redis."""
|
|
death_timestamp = self.connection.hget(self.key, 'death')
|
|
if death_timestamp is not None:
|
|
return utcparse(as_text(death_timestamp))
|
|
|
|
def set_state(self, state, pipeline=None):
|
|
self._state = state
|
|
connection = pipeline if pipeline is not None else self.connection
|
|
connection.hset(self.key, 'state', state)
|
|
|
|
def _set_state(self, state):
|
|
"""Raise a DeprecationWarning if ``worker.state = X`` is used"""
|
|
warnings.warn(
|
|
"worker.state is deprecated, use worker.set_state() instead.",
|
|
DeprecationWarning
|
|
)
|
|
self.set_state(state)
|
|
|
|
def get_state(self):
|
|
return self._state
|
|
|
|
def _get_state(self):
|
|
"""Raise a DeprecationWarning if ``worker.state == X`` is used"""
|
|
warnings.warn(
|
|
"worker.state is deprecated, use worker.get_state() instead.",
|
|
DeprecationWarning
|
|
)
|
|
return self.get_state()
|
|
|
|
state = property(_get_state, _set_state)
|
|
|
|
def set_current_job_id(self, job_id, pipeline=None):
|
|
connection = pipeline if pipeline is not None else self.connection
|
|
|
|
if job_id is None:
|
|
connection.hdel(self.key, 'current_job')
|
|
else:
|
|
connection.hset(self.key, 'current_job', job_id)
|
|
|
|
def get_current_job_id(self, pipeline=None):
|
|
connection = pipeline if pipeline is not None else self.connection
|
|
return as_text(connection.hget(self.key, 'current_job'))
|
|
|
|
def get_current_job(self):
|
|
"""Returns the job id of the currently executing job."""
|
|
job_id = self.get_current_job_id()
|
|
|
|
if job_id is None:
|
|
return None
|
|
|
|
return self.job_class.fetch(job_id, self.connection)
|
|
|
|
def _install_signal_handlers(self):
|
|
"""Installs signal handlers for handling SIGINT and SIGTERM
|
|
gracefully.
|
|
"""
|
|
|
|
signal.signal(signal.SIGINT, self.request_stop)
|
|
signal.signal(signal.SIGTERM, self.request_stop)
|
|
|
|
def request_force_stop(self, signum, frame):
|
|
"""Terminates the application (cold shutdown).
|
|
"""
|
|
self.log.warning('Cold shut down')
|
|
|
|
# Take down the horse with the worker
|
|
if self.horse_pid:
|
|
msg = 'Taking down horse {0} with me'.format(self.horse_pid)
|
|
self.log.debug(msg)
|
|
try:
|
|
os.kill(self.horse_pid, signal.SIGKILL)
|
|
except OSError as e:
|
|
# ESRCH ("No such process") is fine with us
|
|
if e.errno != errno.ESRCH:
|
|
self.log.debug('Horse already down')
|
|
raise
|
|
raise SystemExit()
|
|
|
|
def request_stop(self, signum, frame):
|
|
"""Stops the current worker loop but waits for child processes to
|
|
end gracefully (warm shutdown).
|
|
"""
|
|
self.log.debug('Got signal {0}'.format(signal_name(signum)))
|
|
|
|
signal.signal(signal.SIGINT, self.request_force_stop)
|
|
signal.signal(signal.SIGTERM, self.request_force_stop)
|
|
|
|
self.handle_warm_shutdown_request()
|
|
|
|
# If shutdown is requested in the middle of a job, wait until
|
|
# finish before shutting down and save the request in redis
|
|
if self.get_state() == 'busy':
|
|
self._stop_requested = True
|
|
self.set_shutdown_requested_date()
|
|
self.log.debug('Stopping after current horse is finished. '
|
|
'Press Ctrl+C again for a cold shutdown.')
|
|
else:
|
|
raise StopRequested()
|
|
|
|
def handle_warm_shutdown_request(self):
|
|
self.log.warning('Warm shut down requested')
|
|
|
|
def check_for_suspension(self, burst):
|
|
"""Check to see if workers have been suspended by `rq suspend`"""
|
|
|
|
before_state = None
|
|
notified = False
|
|
|
|
while not self._stop_requested and is_suspended(self.connection):
|
|
|
|
if burst:
|
|
self.log.info('Suspended in burst mode, exiting')
|
|
self.log.info('Note: There could still be unfinished jobs on the queue')
|
|
raise StopRequested
|
|
|
|
if not notified:
|
|
self.log.info('Worker suspended, run `rq resume` to resume')
|
|
before_state = self.get_state()
|
|
self.set_state(WorkerStatus.SUSPENDED)
|
|
notified = True
|
|
time.sleep(1)
|
|
|
|
if before_state:
|
|
self.set_state(before_state)
|
|
|
|
def work(self, burst=False, logging_level="INFO"):
|
|
"""Starts the work loop.
|
|
|
|
Pops and performs all jobs on the current list of queues. When all
|
|
queues are empty, block and wait for new jobs to arrive on any of the
|
|
queues, unless `burst` mode is enabled.
|
|
|
|
The return value indicates whether any jobs were processed.
|
|
"""
|
|
setup_loghandlers(logging_level)
|
|
self._install_signal_handlers()
|
|
|
|
did_perform_work = False
|
|
self.register_birth()
|
|
self.log.info("RQ worker {0!r} started, version {1}".format(self.key, VERSION))
|
|
self.set_state(WorkerStatus.STARTED)
|
|
|
|
try:
|
|
while True:
|
|
try:
|
|
self.check_for_suspension(burst)
|
|
|
|
if self.should_run_maintenance_tasks:
|
|
self.clean_registries()
|
|
|
|
if self._stop_requested:
|
|
self.log.info('Stopping on request')
|
|
break
|
|
|
|
timeout = None if burst else max(1, self.default_worker_ttl - 60)
|
|
|
|
result = self.dequeue_job_and_maintain_ttl(timeout)
|
|
if result is None:
|
|
if burst:
|
|
self.log.info("RQ worker {0!r} done, quitting".format(self.key))
|
|
break
|
|
except StopRequested:
|
|
break
|
|
|
|
job, queue = result
|
|
self.execute_job(job, queue)
|
|
self.heartbeat()
|
|
|
|
did_perform_work = True
|
|
|
|
finally:
|
|
if not self.is_horse:
|
|
self.register_death()
|
|
return did_perform_work
|
|
|
|
def dequeue_job_and_maintain_ttl(self, timeout):
|
|
result = None
|
|
qnames = self.queue_names()
|
|
|
|
self.set_state(WorkerStatus.IDLE)
|
|
self.procline('Listening on {0}'.format(','.join(qnames)))
|
|
self.log.info('')
|
|
self.log.info('*** Listening on {0}...'.format(green(', '.join(qnames))))
|
|
|
|
while True:
|
|
self.heartbeat()
|
|
|
|
try:
|
|
result = self.queue_class.dequeue_any(self.queues, timeout,
|
|
connection=self.connection)
|
|
if result is not None:
|
|
job, queue = result
|
|
self.log.info('{0}: {1} ({2})'.format(green(queue.name),
|
|
blue(job.description), job.id))
|
|
|
|
break
|
|
except DequeueTimeout:
|
|
pass
|
|
|
|
self.heartbeat()
|
|
return result
|
|
|
|
def heartbeat(self, timeout=0, pipeline=None):
|
|
"""Specifies a new worker timeout, typically by extending the
|
|
expiration time of the worker, effectively making this a "heartbeat"
|
|
to not expire the worker until the timeout passes.
|
|
|
|
The next heartbeat should come before this time, or the worker will
|
|
die (at least from the monitoring dashboards).
|
|
|
|
The effective timeout can never be shorter than default_worker_ttl,
|
|
only larger.
|
|
"""
|
|
timeout = max(timeout, self.default_worker_ttl)
|
|
connection = pipeline if pipeline is not None else self.connection
|
|
connection.expire(self.key, timeout)
|
|
self.log.debug('Sent heartbeat to prevent worker timeout. '
|
|
'Next one should arrive within {0} seconds.'.format(timeout))
|
|
|
|
def fork_work_horse(self, job, queue):
|
|
"""Spawns a work horse to perform the actual work and passes it a job.
|
|
"""
|
|
child_pid = os.fork()
|
|
os.environ['RQ_WORKER_ID'] = self.name
|
|
os.environ['RQ_JOB_ID'] = job.id
|
|
if child_pid == 0:
|
|
self.main_work_horse(job, queue)
|
|
else:
|
|
self._horse_pid = child_pid
|
|
self.procline('Forked {0} at {1}'.format(child_pid, time.time()))
|
|
|
|
def monitor_work_horse(self, job):
|
|
"""The worker will monitor the work horse and make sure that it
|
|
either executes successfully or the status of the job is set to
|
|
failed
|
|
"""
|
|
while True:
|
|
try:
|
|
_, ret_val = os.waitpid(self._horse_pid, 0)
|
|
if ret_val != os.EX_OK:
|
|
job_status = job.get_status()
|
|
if job_status is None:
|
|
# Job completed and its ttl has expired
|
|
break
|
|
if job_status not in [JobStatus.FINISHED, JobStatus.FAILED]:
|
|
with self.connection._pipeline() as pipeline:
|
|
self.handle_job_failure(
|
|
job=job,
|
|
pipeline=pipeline
|
|
)
|
|
try:
|
|
pipeline.execute()
|
|
except Exception:
|
|
pass
|
|
|
|
#Unhandled failure: move the job to the failed queue
|
|
self.log.warning(
|
|
'Moving job to {0!r} queue'.format(
|
|
self.failed_queue.name
|
|
)
|
|
)
|
|
self.failed_queue.quarantine(
|
|
job,
|
|
exc_info=(
|
|
"Work-horse proccess "
|
|
"was terminated unexpectedly"
|
|
)
|
|
)
|
|
break
|
|
except OSError as e:
|
|
# In case we encountered an OSError due to EINTR (which is
|
|
# caused by a SIGINT or SIGTERM signal during
|
|
# os.waitpid()), we simply ignore it and enter the next
|
|
# iteration of the loop, waiting for the child to end. In
|
|
# any other case, this is some other unexpected OS error,
|
|
# which we don't want to catch, so we re-raise those ones.
|
|
if e.errno != errno.EINTR:
|
|
raise
|
|
|
|
def execute_job(self, job, queue):
|
|
"""Spawns a work horse to perform the actual work and passes it a job.
|
|
The worker will wait for the work horse and make sure it executes
|
|
within the given timeout bounds, or will end the work horse with
|
|
SIGALRM.
|
|
"""
|
|
self.set_state('busy')
|
|
self.fork_work_horse(job, queue)
|
|
self.monitor_work_horse(job)
|
|
self.set_state('idle')
|
|
|
|
def main_work_horse(self, job, queue):
|
|
"""This is the entry point of the newly spawned work horse."""
|
|
# After fork()'ing, always assure we are generating random sequences
|
|
# that are different from the worker.
|
|
random.seed()
|
|
|
|
self.setup_work_horse_signals()
|
|
|
|
self._is_horse = True
|
|
self.log = logger
|
|
|
|
success = self.perform_job(job, queue)
|
|
|
|
# os._exit() is the way to exit from childs after a fork(), in
|
|
# constrast to the regular sys.exit()
|
|
os._exit(int(not success))
|
|
|
|
def setup_work_horse_signals(self):
|
|
"""Setup signal handing for the newly spawned work horse."""
|
|
# Always ignore Ctrl+C in the work horse, as it might abort the
|
|
# currently running job.
|
|
# The main worker catches the Ctrl+C and requests graceful shutdown
|
|
# after the current work is done. When cold shutdown is requested, it
|
|
# kills the current job anyway.
|
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
|
signal.signal(signal.SIGTERM, signal.SIG_DFL)
|
|
|
|
def prepare_job_execution(self, job):
|
|
"""Performs misc bookkeeping like updating states prior to
|
|
job execution.
|
|
"""
|
|
timeout = (job.timeout or 180) + 60
|
|
|
|
with self.connection._pipeline() as pipeline:
|
|
self.set_state(WorkerStatus.BUSY, pipeline=pipeline)
|
|
self.set_current_job_id(job.id, pipeline=pipeline)
|
|
self.heartbeat(timeout, pipeline=pipeline)
|
|
registry = StartedJobRegistry(job.origin, self.connection)
|
|
registry.add(job, timeout, pipeline=pipeline)
|
|
job.set_status(JobStatus.STARTED, pipeline=pipeline)
|
|
self.connection._hset(job.key, 'started_at',
|
|
utcformat(utcnow()), pipeline)
|
|
pipeline.execute()
|
|
|
|
msg = 'Processing {0} from {1} since {2}'
|
|
self.procline(msg.format(job.func_name, job.origin, time.time()))
|
|
|
|
def handle_job_failure(
|
|
self,
|
|
job,
|
|
started_job_registry=None,
|
|
pipeline=None
|
|
):
|
|
"""Handles the failure or an executing job by:
|
|
1. Setting the job status to failed
|
|
2. Removing the job from the started_job_registry
|
|
3. Setting the workers current job to None
|
|
"""
|
|
|
|
if started_job_registry is None:
|
|
started_job_registry = StartedJobRegistry(
|
|
job.origin,
|
|
self.connection
|
|
)
|
|
job.set_status(JobStatus.FAILED, pipeline=pipeline)
|
|
started_job_registry.remove(job, pipeline=pipeline)
|
|
self.set_current_job_id(None, pipeline=pipeline)
|
|
|
|
def perform_job(self, job, queue):
|
|
"""Performs the actual work of a job. Will/should only be called
|
|
inside the work horse's process.
|
|
"""
|
|
self.prepare_job_execution(job)
|
|
|
|
with self.connection._pipeline() as pipeline:
|
|
|
|
push_connection(self.connection)
|
|
|
|
started_job_registry = StartedJobRegistry(job.origin, self.connection)
|
|
|
|
try:
|
|
with self.death_penalty_class(job.timeout or self.queue_class.DEFAULT_TIMEOUT):
|
|
rv = job.perform()
|
|
|
|
# Pickle the result in the same try-except block since we need
|
|
# to use the same exc handling when pickling fails
|
|
job._result = rv
|
|
|
|
self.set_current_job_id(None, pipeline=pipeline)
|
|
|
|
result_ttl = job.get_result_ttl(self.default_result_ttl)
|
|
if result_ttl != 0:
|
|
job.ended_at = utcnow()
|
|
job.set_status(JobStatus.FINISHED, pipeline=pipeline)
|
|
job.save(pipeline=pipeline)
|
|
|
|
finished_job_registry = FinishedJobRegistry(job.origin,
|
|
self.connection)
|
|
finished_job_registry.add(job, result_ttl, pipeline)
|
|
|
|
queue.enqueue_dependents(job, pipeline=pipeline)
|
|
job.cleanup(result_ttl, pipeline=pipeline,
|
|
remove_from_queue=False)
|
|
started_job_registry.remove(job, pipeline=pipeline)
|
|
|
|
pipeline.execute()
|
|
|
|
except Exception:
|
|
self.handle_job_failure(
|
|
job=job,
|
|
started_job_registry=started_job_registry,
|
|
pipeline=pipeline
|
|
)
|
|
try:
|
|
pipeline.execute()
|
|
except Exception:
|
|
# Ensure that custom exception handlers are called
|
|
# even if Redis is down
|
|
pass
|
|
self.handle_exception(job, *sys.exc_info())
|
|
return False
|
|
|
|
finally:
|
|
pop_connection()
|
|
|
|
self.log.info('{0}: {1} ({2})'.format(green(job.origin), blue('Job OK'), job.id))
|
|
if rv is not None:
|
|
log_result = "{0!r}".format(as_text(text_type(rv)))
|
|
self.log.debug('Result: {0}'.format(yellow(log_result)))
|
|
|
|
if result_ttl == 0:
|
|
self.log.info('Result discarded immediately')
|
|
elif result_ttl > 0:
|
|
self.log.info('Result is kept for {0} seconds'.format(result_ttl))
|
|
else:
|
|
self.log.warning('Result will never expire, clean up result key manually')
|
|
|
|
return True
|
|
|
|
def handle_exception(self, job, *exc_info):
|
|
"""Walks the exception handler stack to delegate exception handling."""
|
|
exc_string = ''.join(traceback.format_exception_only(*exc_info[:2]) +
|
|
traceback.format_exception(*exc_info))
|
|
self.log.error(exc_string, exc_info=True, extra={
|
|
'func': job.func_name,
|
|
'arguments': job.args,
|
|
'kwargs': job.kwargs,
|
|
'queue': job.origin,
|
|
})
|
|
|
|
for handler in reversed(self._exc_handlers):
|
|
self.log.debug('Invoking exception handler {0}'.format(handler))
|
|
fallthrough = handler(job, *exc_info)
|
|
|
|
# Only handlers with explicit return values should disable further
|
|
# exc handling, so interpret a None return value as True.
|
|
if fallthrough is None:
|
|
fallthrough = True
|
|
|
|
if not fallthrough:
|
|
break
|
|
|
|
def move_to_failed_queue(self, job, *exc_info):
|
|
"""Default exception handler: move the job to the failed queue."""
|
|
exc_string = ''.join(traceback.format_exception(*exc_info))
|
|
self.log.warning('Moving job to {0!r} queue'.format(self.failed_queue.name))
|
|
self.failed_queue.quarantine(job, exc_info=exc_string)
|
|
|
|
def push_exc_handler(self, handler_func):
|
|
"""Pushes an exception handler onto the exc handler stack."""
|
|
self._exc_handlers.append(handler_func)
|
|
|
|
def pop_exc_handler(self):
|
|
"""Pops the latest exception handler off of the exc handler stack."""
|
|
return self._exc_handlers.pop()
|
|
|
|
def __eq__(self, other):
|
|
"""Equality does not take the database/connection into account"""
|
|
if not isinstance(other, self.__class__):
|
|
raise TypeError('Cannot compare workers to other types (of workers)')
|
|
return self.name == other.name
|
|
|
|
def __hash__(self):
|
|
"""The hash does not take the database/connection into account"""
|
|
return hash(self.name)
|
|
|
|
def clean_registries(self):
|
|
"""Runs maintenance jobs on each Queue's registries."""
|
|
for queue in self.queues:
|
|
self.log.info('Cleaning registries for queue: {0}'.format(queue.name))
|
|
clean_registries(queue)
|
|
self.last_cleaned_at = utcnow()
|
|
|
|
@property
|
|
def should_run_maintenance_tasks(self):
|
|
"""Maintenance tasks should run on first startup or every hour."""
|
|
if self.last_cleaned_at is None:
|
|
return True
|
|
if (utcnow() - self.last_cleaned_at) > timedelta(hours=1):
|
|
return True
|
|
return False
|
|
|
|
|
|
class SimpleWorker(Worker):
|
|
def main_work_horse(self, *args, **kwargs):
|
|
raise NotImplementedError("Test worker does not implement this method")
|
|
|
|
def execute_job(self, *args, **kwargs):
|
|
"""Execute job in same thread/process, do not fork()"""
|
|
return self.perform_job(*args, **kwargs)
|
|
|
|
|
|
class HerokuWorker(Worker):
|
|
"""
|
|
Modified version of rq worker which:
|
|
* stops work horses getting killed with SIGTERM
|
|
* sends SIGRTMIN to work horses on SIGTERM to the main process which in turn
|
|
causes the horse to crash `imminent_shutdown_delay` seconds later
|
|
"""
|
|
imminent_shutdown_delay = 6
|
|
|
|
frame_properties = ['f_code', 'f_lasti', 'f_lineno', 'f_locals', 'f_trace']
|
|
if PY2:
|
|
frame_properties.extend(
|
|
['f_exc_traceback', 'f_exc_type', 'f_exc_value', 'f_restricted']
|
|
)
|
|
|
|
def setup_work_horse_signals(self):
|
|
"""Modified to ignore SIGINT and SIGTERM and only handle SIGRTMIN"""
|
|
signal.signal(signal.SIGRTMIN, self.request_stop_sigrtmin)
|
|
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
|
signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
|
|
|
def handle_warm_shutdown_request(self):
|
|
"""If horse is alive send it SIGRTMIN"""
|
|
if self.horse_pid != 0:
|
|
self.log.warning('Warm shut down requested, sending horse SIGRTMIN signal')
|
|
os.kill(self.horse_pid, signal.SIGRTMIN)
|
|
else:
|
|
self.log.warning('Warm shut down requested, no horse found')
|
|
|
|
def request_stop_sigrtmin(self, signum, frame):
|
|
if self.imminent_shutdown_delay == 0:
|
|
self.log.warning('Imminent shutdown, raising ShutDownImminentException immediately')
|
|
self.request_force_stop_sigrtmin(signum, frame)
|
|
else:
|
|
self.log.warning('Imminent shutdown, raising ShutDownImminentException in %d seconds',
|
|
self.imminent_shutdown_delay)
|
|
signal.signal(signal.SIGRTMIN, self.request_force_stop_sigrtmin)
|
|
signal.signal(signal.SIGALRM, self.request_force_stop_sigrtmin)
|
|
signal.alarm(self.imminent_shutdown_delay)
|
|
|
|
def request_force_stop_sigrtmin(self, signum, frame):
|
|
info = dict((attr, getattr(frame, attr)) for attr in self.frame_properties)
|
|
self.log.warning('raising ShutDownImminentException to cancel job...')
|
|
raise ShutDownImminentException('shut down imminent (signal: %s)' % signal_name(signum), info)
|