straight-businessperson-54649
02/17/2023, 2:06 PMtask
to succeed β
but never run/schedule a pod β? Or know where to start troubleshooting? π΅οΈββοΈ
-- More details --
The task in question has caching disabled, and is a map
task.
Have searched all flyte component logs for the executions and the only errors I see are these warning β οΈ messages
Failed to fetch override values when assigning task resource default values
Failed to fetch override values when assigning execution queue
Trying to disable the overrides didn't help either. And the task repeatedly succeeds without ever running the task.
cc: @big-easter-12386freezing-airport-6809
straight-businessperson-54649
02/17/2023, 3:16 PMCaching was disabled for this execution.
in the console for the task in question
That being said, we did not disable in the task decorator, but via the new Overwrite cached outputs
flag. Perhaps that may not be working properly...hallowed-mouse-14616
02/17/2023, 3:25 PM@task(cache=True, cache_version="1.0")
def a_mappable_task
@workflow
def my_map_workflow(a: List[int]):
mapped_out = map_task(a_mappable_task)(a=a)
And then when you execute from the UI (or elsewhere) you're selecting to overwrite the cache values?straight-businessperson-54649
02/17/2023, 3:25 PMhallowed-mouse-14616
02/17/2023, 3:27 PMuser
02/17/2023, 3:27 PMhallowed-mouse-14616
02/17/2023, 3:27 PMfreezing-airport-6809
straight-businessperson-54649
02/17/2023, 3:31 PM