mirror of
https://github.com/finmars-platform/finmars-core.git
synced 2026-04-27 07:06:02 +03:00
[GH-ISSUE #71] Celery Configuration Update for Workers #25
Labels
No labels
BackEnd
FrontEnd
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/finmars-core#25
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @falendary on GitHub (Jul 23, 2025).
Original GitHub issue: https://github.com/finmars-platform/finmars-core/issues/71
Originally assigned to: @paktusov on GitHub.
Finmars-core workers:
====
Add rabbitmq-admin panel
====
ELERY_WORKER_CONCURRENCY = ENV_INT("CELERY_WORKER_CONCURRENCY", 2)
Change to
ELERY_WORKER_CONCURRENCY = ENV_INT("CELERY_WORKER_CONCURRENCY", 1)
=====
f"--soft-time-limit=3000 -n {celery_worker} -Q {celery_queue} --max-tasks-per-child=1"
Remove soft-time-limit from command line argument and make it settings.py argument and set default value to 86400
@sergeiosipov commented on GitHub (Sep 3, 2025):
Done