Hi, I was using Decks to visualize some data in a ...
# flyte-support
s
Hi, I was using Decks to visualize some data in a Python task successfully, but now that I've parallelized such task using map_task() function, the
Decks
button no longer appears in the Flyte Dashboard. I noticed that by using
map_task()
, the task isno longer a
Python Task
but instead an Array Node and was wondering if rendering Decks from Array Node tasks is different than whe using default
Python Task
?
l
The ArrayNode "task" isn't really a task, just a placeholder for the tasks being parallelized. If you click into the details of an individual task within that array, does the Decks button appear? A screenshot may help if you're able to share!
s
When I click into the details I just get the following screen
This map_task is being called from a dynamic workflow (which is a sub-workflow) and I have the enable_deck=True parameter set in both the task being mapped and the dynamic workflow. I also passed
_metadata_=TaskMetadata(_generates_deck_=True)
to the map_task() function
After all this, I only get a
Decks
button on the dynamic workflow but not on the mapped task