How to run a custom rqworker automatically everytime the netbox container being started #18293
Replies: 1 comment
-
If you are running netbox locally using systemd, this is controlled by netbox-rq.service. It runs a single rqworker listening on those three queues:
But you say "container". Are you running via docker-compose? In that case, the arguments to rqworker are configured in docker-compose.yml Again, this only runs a single rqworker. The supplied docker-compose file doesn't provide any queue names, so the DEFAULT_QUEUES setting is used (which is also "high", "default", "low"). But you should be able to add the extra arguments yourself:
If you wanted to run more than one rqworker process then you'd configure additional containers in docker-compose.yml. |
Beta Was this translation helpful? Give feedback.
-
Netbox only runs three default rqworkers named "default" "high" "low".
How to run a custom rqworker automatically everytime the netbox container being started?
Beta Was this translation helpful? Give feedback.
All reactions