SpecificPartitionMapping between static-partitioned asset and multi-partitioned asset #17757
Unanswered
Replies: 1 comment 1 reply
-
@clairelin135 do you know if this exists yet? E.g. something like |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all, confused about out how to deal with a partition-mapping scenario. I have an upstream asset: say
asset_multi
that is multi-dimensioned (one dim is dynamic and one is static). I have another asset with another static single dimension (asset_single
). I want to create a downstream asset with a multi dimension where one dimension is identically mapped toasset_single
and the other dimension is just the multi-dimensioned collapsed to one the way the multi-part key does it (with|
delimiter).asset_multi
keys: <a, 0>, <a, 1>asset_single
keys: <x>, <y>desired downstream asset keys:
a|0
,x
a|1
,x
a|0
,y
a|1
,y
What is the expected way to solve this given we cant have 3-dim multi-parts?
The question was originally asked in Dagster Slack.
Beta Was this translation helpful? Give feedback.
All reactions