Tobias Krause
03/03/2023, 11:52 AMTobias Pankrath
03/03/2023, 12:03 PM@graph_asset
lacks the argument and the implementation is:
def __call__(self, fn: Callable) -> AssetsDefinition:
asset_name = self.name or fn.__name__
asset_ins = build_asset_ins(fn, self.ins or {}, set())
out_asset_key = AssetKey(list(filter(None, [*(self.key_prefix or []), asset_name])))
build_asset_ins
, _GraphBackedAsset
does not.Tobias Krause
03/03/2023, 4:18 PMbuild_asset_ins
in _GraphBackendAsset
?sandy
03/03/2023, 4:25 PMNothing
input on the inner op: https://github.com/dagster-io/dagster/issues/8712#issuecomment-1302250431Tobias Krause
03/03/2023, 5:01 PM@graph
and AssetsDefintion.from_graph
to set keys_by_input_name
manually. So far, without success.sandy
03/03/2023, 5:30 PM