You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we implement iter_queued and iter_processed for manually accessing tasks as raw messages via the FS kombu broker. (This is needed for when there is no worker process running, since celery.control.inspect requires talking to a worker via broadcast messages)
"""Iterate over tasks which have been taken by a worker.
Arguments:
queue: Optional name of queue.
"""
Ideally we should also have an inspect-based wrapper which can return actual active tasks via celery.inspect for use when we have an active worker process
The text was updated successfully, but these errors were encountered:
Currently we implement
iter_queued
anditer_processed
for manually accessing tasks as raw messages via the FS kombu broker. (This is needed for when there is no worker process running, sincecelery.control.inspect
requires talking to a worker via broadcast messages)dvc-task/src/dvc_task/app/filesystem.py
Lines 123 to 130 in 5a49fbe
Ideally we should also have an inspect-based wrapper which can return actual active tasks via
celery.inspect
for use when we have an active worker processThe text was updated successfully, but these errors were encountered: