2018-11-27 15:23:29 +00:00
|
|
|
"""passbook core celery"""
|
|
|
|
import os
|
2019-10-01 08:24:10 +00:00
|
|
|
from logging.config import dictConfig
|
2018-11-27 15:23:29 +00:00
|
|
|
|
2019-10-11 12:24:58 +00:00
|
|
|
from celery import Celery
|
|
|
|
from celery.signals import (after_task_publish, setup_logging, task_postrun,
|
|
|
|
task_prerun)
|
2018-11-27 15:23:29 +00:00
|
|
|
from django.conf import settings
|
2019-10-01 08:24:10 +00:00
|
|
|
from structlog import get_logger
|
2019-04-04 19:48:50 +00:00
|
|
|
|
2018-11-27 15:23:29 +00:00
|
|
|
# set the default Django settings module for the 'celery' program.
|
2019-06-25 16:00:54 +00:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "passbook.root.settings")
|
2018-11-27 15:23:29 +00:00
|
|
|
|
2019-10-04 08:08:53 +00:00
|
|
|
LOGGER = get_logger()
|
2019-04-04 19:48:50 +00:00
|
|
|
CELERY_APP = Celery('passbook')
|
2018-11-27 15:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2019-10-11 12:24:58 +00:00
|
|
|
@setup_logging.connect
|
2018-11-27 15:23:29 +00:00
|
|
|
def config_loggers(*args, **kwags):
|
|
|
|
"""Apply logging settings from settings.py to celery"""
|
2019-10-01 08:24:10 +00:00
|
|
|
dictConfig(settings.LOGGING)
|
2018-11-27 15:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2019-10-11 12:24:58 +00:00
|
|
|
@after_task_publish.connect
|
2018-11-27 15:23:29 +00:00
|
|
|
def after_task_publish(sender=None, headers=None, body=None, **kwargs):
|
|
|
|
"""Log task_id after it was published"""
|
|
|
|
info = headers if 'task' in headers else body
|
2019-10-11 12:24:58 +00:00
|
|
|
LOGGER.debug('Task published', task_id=info.get('id', ''), task_name=info.get('task', ''))
|
2018-11-27 15:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2019-10-11 12:24:58 +00:00
|
|
|
@task_prerun.connect
|
2018-11-27 15:23:29 +00:00
|
|
|
def task_prerun(task_id, task, *args, **kwargs):
|
|
|
|
"""Log task_id on worker"""
|
2019-10-11 12:24:58 +00:00
|
|
|
LOGGER.debug('Task started', task_id=task_id, task_name=task.__name__)
|
2018-11-27 15:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
2019-10-11 12:24:58 +00:00
|
|
|
@task_postrun.connect
|
2018-11-27 15:23:29 +00:00
|
|
|
def task_postrun(task_id, task, *args, retval=None, state=None, **kwargs):
|
|
|
|
"""Log task_id on worker"""
|
2019-10-11 12:24:58 +00:00
|
|
|
LOGGER.debug('Task finished',
|
|
|
|
task_id=task_id,
|
|
|
|
task_name=task.__name__,
|
|
|
|
state=state)
|
2018-11-27 15:23:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Using a string here means the worker doesn't have to serialize
|
|
|
|
# the configuration object to child processes.
|
|
|
|
# - namespace='CELERY' means all celery-related configuration keys
|
|
|
|
# should have a `CELERY_` prefix.
|
|
|
|
CELERY_APP.config_from_object(settings, namespace='CELERY')
|
|
|
|
|
|
|
|
# Load task modules from all registered Django app configs.
|
|
|
|
CELERY_APP.autodiscover_tasks()
|