Celery
Integration with Celery.
Setup
Set up Celery project.
Configure pyot models and pipelines.
Tasks
Celery does not support async functions, a util wrapper is provided async_to_sync
in pyot.utils.sync
to convert async functions into blocking functions.
Celery runs tasks in threads or processes, make sure to use resource managers for graceful handling of resources, refer to Cores -> Resources.
Last updated