crabhi / celery-java

Java implementation of Celery client and worker
MIT License
97 stars 29 forks source link

Task id can not be retrieved by the client side #15

Open StonesGitHub opened 6 years ago

StonesGitHub commented 6 years ago

Given the client and worker of celery might be deployed on different machines, to let the client side record the task id is very useful when locating problems. Currently, the client knows the task id, but it doesn`t reveal the info to the user. I suggest that it is better to expose the task id info to the user who calls a celery client submitting Pls consider it.

roroyu commented 3 years ago

I try to kick a task1 in celery to kick task2, and task1 return task2.id, then Java can get task2.id......