Replies: 5 comments 3 replies
-
Up! It
Hey, thanks for the example, but it doesn't seem to work in the sense that in the UI partitions are not visible :/. At least when I use HourlyPartitionsDefinition. |
Beta Was this translation helpful? Give feedback.
-
@astronautas |
Beta Was this translation helpful? Give feedback.
-
Up! Is this still an issue? We're planning to use external assets. |
Beta Was this translation helpful? Give feedback.
-
We really need this. The workaround is broken in dagster 1.7.14 it seems, and in general such workarounds seem really flakey and temporary. |
Beta Was this translation helpful? Give feedback.
-
Partitioned external assets can now be declared directly with from dagster import AssetSpec
external_asset = AssetSpec(key=..., partitions_def=...) |
Beta Was this translation helpful? Give feedback.
-
Dagster lacks official support for partitioned external assets. However, this seems to be possible to implement since there is a workaround available in a previous discussion: #18211.
This would make it possible to include external assets that are not managed by Dagster while keeping the same partitioning externally.
Workaround:
I have tested the above workaround and it seems to work fine but I can't say for sure if this the right way to do it.
It would be nice to have an official support for such feature.
Beta Was this translation helpful? Give feedback.
All reactions