Matt Clarke
08/17/2022, 12:54 PMsandy
08/17/2022, 5:43 PMbase_assets = [...]
model1_assets = []
for base_asset in base_assets:
@asset(name=base_asset.key.path[-1] + "_model1", ins={"arg1": AssetIn(key=base_asset.key)})
def model1_asset(arg1):
...
model1_assets.append(model1_asset)
Matt Clarke
08/18/2022, 8:29 AMasset.from_graph()
type workflow to keep things tidy, but not sure if I'm missing the mark with this. We'd expect more devices to be added/removed at different times which is part of my reasoning for wanting a get_device_asset(device_id, start_date)
type workflow to be possible.
Also, my first instinct was to look for something like nested partitions (partition by category, then datetime) but I don't see an easy way to do this...not sure if it's something I've missed or something that would be hacky to the point of irresponsibility!sandy
08/26/2022, 11:06 PMAlso, my first instinct was to look for something like nested partitionsthis is the issue where we're tracking this: https://github.com/dagster-io/dagster/issues/4591 I've been experimenting on this recently and posted an initial implementation here: https://github.com/dagster-io/dagster/pull/9511 there are still some issues we need to sort out
Matt Clarke
08/30/2022, 8:01 AM