Adam Bloom
08/09/2022, 12:12 AMprha
08/09/2022, 5:51 PM1.0
this is no longer true. We used to show runs of identically named jobs, independent of repository, but as of 1.0
we only show runs that were created by jobs for that specific repository. Ideally we’d have some run migration CLI tools, but I can walk you through how to do those run migrations by running a data migration against your DB if you’re interested.Adam Bloom
08/09/2022, 5:52 PMprha
08/09/2022, 5:58 PMrun_tags
table with key .dagster/repository
and value of the form <repository_name>@<location_name>
… We use this value to filter by the job’s current repository. If you move the job to a differently named repository, it won’t be able to find the historic runs unless you run an update to the new repository name. If you’re splitting the mega-repo into smaller repos, you may have to join the run_tags
against the runs
table to filter by job name to get the appropriate new repository name.Dagster Bot
08/09/2022, 5:58 PMAdam Bloom
08/09/2022, 7:03 PM