Skip to content

Commit

Permalink
feat: added option to provide custom queues
Browse files Browse the repository at this point in the history
  • Loading branch information
fproldan committed Aug 30, 2021
1 parent d467cf5 commit e12f53d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions bench/config/supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def generate_supervisor_config(bench_path, user=None, yes=False, skip_redis=Fals
"background_workers": config.get('background_workers') or 1,
"bench_cmd": which('bench'),
"skip_redis": skip_redis,
"custom_queues": config.get("custom_queues", {}),
})

conf_path = os.path.join(bench_path, 'config', 'supervisor.conf')
Expand Down
16 changes: 16 additions & 0 deletions bench/config/templates/supervisor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ killasgroup=true
numprocs={{ background_workers }}
process_name=%(program_name)s-%(process_num)d

{% for queue_name, queue_details in custom_queues.items() %}
[program:{{ bench_name }}-frappe-{{ queue_name }}-worker]
command={{ bench_cmd }} worker --queue {{ queue_name }}
priority=4
autostart=true
autorestart=true
stdout_logfile={{ bench_dir }}/logs/worker.log
stderr_logfile={{ bench_dir }}/logs/worker.error.log
user={{ user }}
stopwaitsecs={{ queue_details["timeout"] }}
directory={{ bench_dir }}
killasgroup=true
numprocs={{ queue_details["workers"] or background_workers }}
process_name=%(program_name)s-%(process_num)d
{% endfor %}

{% else %}
[program:{{ bench_name }}-frappe-workerbeat]
command={{ bench_dir }}/env/bin/python -m frappe.celery_app beat -s beat.schedule
Expand Down

0 comments on commit e12f53d

Please sign in to comment.