Custom task names in dashboard #50059
Labels
dashboard
Issues specific to the Ray Dashboard
enhancement
Request for new feature and/or capability
triage
Needs triage (eg: priority, bug/not-bug, and owning component)
by default, the task name shown in the dashboard for a task is the name of the
@ray.remote
decorated function, saydef my_task
. if you invokemy_task
10k times with different arguments, it would be much nicer, if some stringified version of the function args was appended to the function name (ideally returned by a user-definable stringify function). e.g. in my case, running a function over many crystal structures might require a stringifier likei'm currently trying to apply this function in a decorator that wraps
@ray.remote
:but this has no effect. i'm logging the task name to make sure it's what i expect but the new task name does not make it's way into the web dashboard. all invocations continue to be grouped and listed only the function name
am i misunderstanding the docs here that led me to believe this should work? even setting the name directly on a remote function without the wrapper decorator bells and whistles has no effect.
@vaibhavbafna5 for awareness
The text was updated successfully, but these errors were encountered: