https://dagster.io/ logo
#dagster-support
Title
# dagster-support
c

Chris Hansen

08/08/2022, 5:27 PM
how does Dagster express asset/job/graph/op versions?
o

owen

08/08/2022, 5:53 PM
hi @Chris Hansen can you say a bit more about what you mean by versions? For ops/job outputs, there's this: https://docs.dagster.io/guides/dagster/memoization#versioning-and-memoization-
c

Chris Hansen

08/08/2022, 5:54 PM
DAG versioning. if i look back on a past run, how do i know what version of code that corresponded to?
o

owen

08/08/2022, 6:03 PM
got it -- snapshot id shows up in the UI and if that changes, it's a pretty good indicator that "something changed about this job" (caveats discussed in the link). I could also imagine setting up a tag-based solution, where job runs are given a "git commit hash" tag of some sort (populated via an environment variable or something like that) for something that you could actually link back to your source code.
👍 1