-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Periodic task name is missing in TaskResult #376
Comments
I am seeing the same behavior after updating to 2.4.0 from 2.2.0, task names are missing from admin and database. Thanks for pointing me to the undocumented (?) breaking change regarding result_extended, for me it was the solution. I am setting the celery config directly, not using the app = Celery("myproj")
app.conf.update(
[...]
result_extended=True,
) Double-check your CELERY_RESULT_EXTENDED is working and that the config does get sent all the way to celery. |
Would you mind what is missing on maintainers side which will help to get rid of this undocumented breaking change? any suggestion or help would be highly appreciated |
Thanks for asking and putting time to maintain this library. The change was technically a fix, but I would argue that since it changes a core behavior of the library, it is also a breaking change. Maybe add a note with a bold BREAKING prefix to the 2.4.0 changelog. I did not intend to hijack @Mapiarz issue. He does mention he did set CELERY_RESULT_EXTENDED to true. If the setting is indeed set properly and you are sure it gets passed down to the celery conf object, this could be a duplicate of #289 |
Are you using RabibitMQ or Redis as broker? |
Using |
@cveilleux It probably has to do with eager mode, yes. Please stop suggesting I switch the broker. I'm already on RabbitMQ because I switched from Redis to work around other issues, e.g. celery/celery#2481. |
Use this combination then, it might help
These are the versions am using in my project. They work well with me |
i use this version below and have same problem. indeed when change the broker into redis i'm following until PRODUCER / BEFORE SENT: {
"priority":"None",
"content_type":"application/json",
"content_encoding":"utf-8",
"application_headers":{
"lang":"py",
"task":"echo_debug",
"id":"225d853e-ddc4-4e74-b750-c0909389639f",
"shadow":"None",
"eta":"None",
"expires":"None",
"group":"None",
"group_index":"None",
"retries":0,
"timelimit":[
"None",
"None"
],
"root_id":"225d853e-ddc4-4e74-b750-c0909389639f",
"parent_id":"None",
"argsrepr":"()",
"kwargsrepr":"{}",
"origin":"gen428598@soberdev",
"ignore_result":false
},
"correlation_id":"225d853e-ddc4-4e74-b750-c0909389639f",
"reply_to":"35404841-dbc5-3e90-80aa-98307e5e99e7",
"periodic_task_name":"something",
"delivery_mode":2
} CONSUMER: {
"content_type":"application/json",
"content_encoding":"utf-8",
"application_headers":{
"lang":"py",
"task":"echo_debug",
"id":"225d853e-ddc4-4e74-b750-c0909389639f",
"shadow":"None",
"eta":"None",
"expires":"None",
"group":"None",
"group_index":"None",
"retries":0,
"timelimit":[
"None",
"None"
],
"root_id":"225d853e-ddc4-4e74-b750-c0909389639f",
"parent_id":"None",
"argsrepr":"()",
"kwargsrepr":"{}",
"origin":"gen451061@soberdev",
"ignore_result":false
},
"delivery_mode":2,
"correlation_id":"225d853e-ddc4-4e74-b750-c0909389639f",
"reply_to":"35404841-dbc5-3e90-80aa-98307e5e99e7"
} version:
|
Is there something new to this issue? |
I have the same problem, anyone solved this problem? |
Setting Django==4.2.6 |
I'm seeing this with rabbitmq as broker. |
I have the same issue: RabbitMQ messages do not contain the The underlying reason is that A quick solution I found was storing it in a header instead, here a monkey-patched approach: from django_celery_beat.apps import BeatConfig
from django_celery_results.apps import CeleryResultConfig
...
def monkey_patch_beat(original_ready: Callable) -> Callable:
def patch(original_init: Callable) -> Callable:
from django_celery_beat.schedulers import ModelEntry, PeriodicTask
def init(self: ModelEntry, model: PeriodicTask, app: Optional[Celery] = None) -> None:
original_init(self, model, app)
self.options['headers']['periodic_task_name'] = model.name
return init
def ready(self: BeatConfig) -> None:
from django_celery_beat.schedulers import ModelEntry
original_ready(self)
ModelEntry.__init__ = patch(ModelEntry.__init__)
return ready
BeatConfig.ready = monkey_patch_beat(BeatConfig.ready)
def monkey_patch_results(original_ready: Callable) -> Callable:
def patch(original_get_extended_properties: Callable) -> Callable:
from django_celery_results.backends import DatabaseBackend
def get_extended_properties(self: DatabaseBackend, request: Optional[Context], traceback: Optional) -> dict:
extended_props = original_get_extended_properties(self, request, traceback)
if not extended_props.get('periodic_task_name'):
extended_props['periodic_task_name'] = getattr(request, 'periodic_task_name', None)
return extended_props
return get_extended_properties
def ready(self: CeleryResultConfig) -> None:
from django_celery_results.backends import DatabaseBackend
original_ready(self)
DatabaseBackend._get_extended_properties = patch(DatabaseBackend._get_extended_properties)
return ready
CeleryResultConfig.ready = monkey_patch_results(CeleryResultConfig.ready) |
Notice there is a fix in the making in celery/django-celery-beat#812 and #445 |
Packages: celery 5.2.7, django-celery-beat 2.5.0, django-celery-results 2.5.0, django 3.2.18. Backed by postgres and rabbitmq.
Yes, I have set
CELERY_RESULT_EXTENDED
toTrue
and other metadata is there, but not periodic task name. Not a duplicate of #342 - the periodic task name is missing in both list and detail view, in fact, it's not stored in the DB in the first place.Any ideas?
The text was updated successfully, but these errors were encountered: