hello, i am trying to use the `dagster_type` para...
# ask-community
j
hello, i am trying to use the
dagster_type
parameter of an `@asset`to control materialization in a custom IOManager. however, even if i set
Copy code
@asset(dagster_type=pa.Table)
the
context.dagster_type
is always
dagster._core.types.dagster_type._Any
in the IOManager
handle_input(self, context)
method
s
Hi Jeremy, Can you provide a little more code that illustrates your asset graph and definitions?
control materialization in a custom IOManager
This should happen in the
handle_output
method.
load_input
is for the upstream dependencies.