-
I'm trying out the Normally I would create and asset and add my IO_Manager so the storage would get handled by default, but I could store it directly into a table using and I was under the impression that I @op
def my_op():
return 1
@op
def my_second_op(something):
return something + 1
@graph_asset(io_manager_key="my_io_manager")
def my_graph_asset():
return my_second_op(my_op()) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Found it, the Graph asset is store with the |
Beta Was this translation helpful? Give feedback.
-
@marcilj can you please explain how you did this? I can't seem to be able to define an io manager on an op. |
Beta Was this translation helpful? Give feedback.
Found it, the Graph asset is store with the
io_manager
configured in the last Op of the Graph.