mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
dynamically set worker autoscale max_concurrency based on system memory
This commit is contained in:
parent
8056ac5393
commit
6a96e6a268
27
awx/main/utils/autoscale.py
Normal file
27
awx/main/utils/autoscale.py
Normal file
@ -0,0 +1,27 @@
|
||||
from celery.utils.log import get_logger
|
||||
from celery.worker.autoscale import Autoscaler, AUTOSCALE_KEEPALIVE
|
||||
from django.conf import settings
|
||||
import psutil
|
||||
|
||||
logger = get_logger('awx.main.tasks')
|
||||
|
||||
|
||||
class DynamicAutoScaler(Autoscaler):
|
||||
|
||||
def __init__(self, pool, max_concurrency, min_concurrency=0, worker=None,
|
||||
keepalive=AUTOSCALE_KEEPALIVE, mutex=None):
|
||||
super(DynamicAutoScaler, self).__init__(pool, max_concurrency,
|
||||
min_concurrency, worker,
|
||||
keepalive, mutex)
|
||||
settings_absmem = getattr(settings, 'SYSTEM_TASK_ABS_MEM', None)
|
||||
if settings_absmem is not None:
|
||||
total_memory_gb = int(settings_absmem)
|
||||
else:
|
||||
total_memory_gb = (psutil.virtual_memory().total >> 30) + 1 # noqa: round up
|
||||
|
||||
# 5 workers per GB of total memory
|
||||
self.max_concurrency = min(max_concurrency, (total_memory_gb * 5))
|
||||
logger.warn('celery worker dynamic --autoscale={},{}'.format(
|
||||
self.max_concurrency,
|
||||
self.min_concurrency
|
||||
))
|
@ -458,6 +458,7 @@ CELERY_TRACK_STARTED = True
|
||||
CELERYD_TASK_TIME_LIMIT = None
|
||||
CELERYD_TASK_SOFT_TIME_LIMIT = None
|
||||
CELERYD_POOL_RESTARTS = True
|
||||
CELERYD_AUTOSCALER = 'awx.main.utils.autoscale:DynamicAutoScaler'
|
||||
CELERY_RESULT_BACKEND = 'djcelery.backends.database:DatabaseBackend'
|
||||
CELERY_IMPORTS = ('awx.main.scheduler.tasks',)
|
||||
CELERY_QUEUES = (
|
||||
|
Loading…
Reference in New Issue
Block a user