Tommy Nam
05/19/2023, 4:45 AMValueError: Error encountered while executing 'run_map_task_workflow':
Map tasks can only compose of Python Functon Tasks currently
Is flytekitplugins.papermill.NotebookTask
currently incompatible with map_tasks?Ketan (kumare3)
functools.partial
Kevin Su
05/19/2023, 5:02 AMKetan (kumare3)
Tommy Nam
05/19/2023, 5:50 AM*from* flytekitplugins.papermill *import* NotebookTask
And then we are passing in this NotebookTask into something like this:
# Example
@workflow
def map_workflow():
map_output = map_task(notebook_task_here)(inputs=input_list)
return map_output
Ketan (kumare3)
Tommy Nam
05/19/2023, 6:09 AMKevin Su
05/19/2023, 6:28 AM