Distributed runs with Celery
... or how you can 10x your scanning speed and massively parallelize your workflows.
Last updated
Was this helpful?
... or how you can 10x your scanning speed and massively parallelize your workflows.
Last updated
Was this helpful?
By default, secator
runs all tasks synchronously. This guide shows how to enable distributed runs using Celery workers, which unlocks .
To use distributed runs, make sure the worker
addon is installed:
You can set up a task queue using Celery with the broker and a results backend of your choice, and run Celery workers to execute tasks from the broker queue.
The following is an example using redis
, but you can use any .
Install redis
addon:
Install redis
:
Start redis
and enable at boot:
Configure secator
to use Redis:
Make sure you replace <REDIS_IP>
in the variables above with the IP of your Redis server.