##// END OF EJS Templates
feat(celery): set msgpack as default serializer and drop json_ext as it's actually slower
feat(celery): set msgpack as default serializer and drop json_ext as it's actually slower

File last commit:

r5137:f3cd5ebe default
r5296:121552d9 default
Show More
__init__.py
93 lines | 3.2 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2010-2023 RhodeCode GmbH
project: added all source files and assets
r1 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
import socket
import logging
import rhodecode
celery: celery 4.X support. Fixes #4169...
r2359 from zope.cachedescriptors.property import Lazy as LazyProperty
from rhodecode.lib.celerylib.loader import (
celery_app, RequestContextTask, get_logger)
metrics: added new statsd client and enabled new metrics on app
r4792 from rhodecode.lib.statsd_client import StatsdClient
project: added all source files and assets
r1
celery: celery 4.X support. Fixes #4169...
r2359 async_task = celery_app.task
project: added all source files and assets
r1
log = logging.getLogger(__name__)
class ResultWrapper(object):
def __init__(self, task):
self.task = task
@LazyProperty
def result(self):
return self.task
def run_task(task, *args, **kwargs):
celery: don't allow subtasks within tasks
r4875 import celery
metrics: added new statsd client and enabled new metrics on app
r4792 log.debug('Got task `%s` for execution, celery mode enabled:%s', task, rhodecode.CELERY_ENABLED)
celerylib: fixed broken tasks for auto-update
r4735 if task is None:
core: revamp of automation/scheduler/artifacts EE functionality
r5137 raise ValueError(f'Got non-existing task: {task} for execution')
celerylib: fixed broken tasks for auto-update
r4735
metrics: added new statsd client and enabled new metrics on app
r4792 exec_mode = 'sync'
celery: don't allow subtasks within tasks
r4875 allow_async = True
# if we're already in a celery task, don't allow async execution again
# e.g task within task
in_task = celery.current_task
if in_task:
log.debug('This task in in context of another task: %s, not allowing another async execution', in_task)
allow_async = False
if kwargs.pop('allow_subtask', False):
log.debug('Forced async by allow_async=True flag')
allow_async = True
metrics: added new statsd client and enabled new metrics on app
r4792
celery: fixed error when celery was disabled
r4817 t = None
celery: don't allow subtasks within tasks
r4875 if rhodecode.CELERY_ENABLED and allow_async:
celery: always count tasks even if they fail
r4891
project: added all source files and assets
r1 try:
t = task.apply_async(args=args, kwargs=kwargs)
celery: celery 4.X support. Fixes #4169...
r2359 log.debug('executing task %s:%s in async mode', t.task_id, task)
project: added all source files and assets
r1 except socket.error as e:
if isinstance(e, IOError) and e.errno == 111:
celery: improve logging of failed async execution.
r2412 log.error('Unable to connect to celeryd `%s`. Sync execution', e)
project: added all source files and assets
r1 else:
dan
celery: log exception in the event of unknown IOError
r266 log.exception("Exception while connecting to celeryd.")
project: added all source files and assets
r1 except KeyError as e:
celery: improve logging of failed async execution.
r2412 log.error('Unable to connect to celeryd `%s`. Sync execution', e)
project: added all source files and assets
r1 except Exception as e:
log.exception(
"Exception while trying to run task asynchronous. "
"Fallback to sync execution.")
dan
celery: set global CELERY_ENABLED on any connection error
r315
dan
celery: fixed bug where celery was not running
r265 else:
celery: celery 4.X support. Fixes #4169...
r2359 log.debug('executing task %s:%s in sync mode', 'TASK', task)
statsd: better task execution reporting on celery
r4892 statsd = StatsdClient.statsd
if statsd:
task_repr = getattr(task, 'name', task)
statsd.incr('rhodecode_celery_task_total', tags=[
modernize: updates for python3
r5095 f'task:{task_repr}',
statsd: better task execution reporting on celery
r4892 'mode:sync'
])
project: added all source files and assets
r1
metrics: fixed celery task names, fixed hiistogram type metrics, client small fixes
r4807 # we got async task, return it after statsd call
if t:
return t
celery: celery 4.X support. Fixes #4169...
r2359 return ResultWrapper(task(*args, **kwargs))