(no title)
Grollicus | 3 months ago
Does the api support progress reporting? ("30 % done")
Of course one could build this manually when you're building the worker implementation but I'd love to have it reflected in the api somewhere. Celery also seems to be missing api for that.
Anyone sees a reason why that's missing? I don't think it complicates the api much and seems such an obvious thing for longer-running background tasks.
ducdetronquito|3 months ago
Though, I imagine you could have strategies to give an approximation of it, for example like keeping track of the past execution time of a given type of task in order to infer the progress of a currently running task of the same type.
pbalau|3 months ago
No. You just need to know the total number of steps and what step are you currently on.
amanzi|3 months ago
Grollicus|3 months ago