Create a public data lineage viewer using read only Dagster UI #2752
bendnorman
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently learned we can run the dagster UI in read-only mode. This made me think we could host a public data lineage viewer on Cloud Run. Users would be able to
This might not be worth the time to expose all of the intermediate assets and complexities of the data processing, given we want to move toward exposing just a handful of tables to users. I could imagine receiving a lot of questions:
If we did want to do this we'd need to:
@asset(description=...)
parameter to table descriptions in metadata. Dagster automatically makes the doc string the description of the asset. The description of the table in the data dictionary does not always match the doc string of the asset that produces it.Some pros for creating this:
Beta Was this translation helpful? Give feedback.
All reactions