https://dagster.io/ logo
Title
s

Scott Chamberlain

12/01/2022, 6:50 PM
I’m still trying to grok repositories and workspaces wrt my use case. We have a single git repo with many folders, each of which is concerned with a different isolated pipeline. In Dagster land, would these folders be workspaces or repositories? If workspaces, can you have many workspaces in the same repo? Or is it best to have only one workspace per repo?
c

chris

12/01/2022, 7:27 PM
The workspace/repository abstractions are definitely something that we’re aware is confusing to folks, and are working actively on simplifying. The ontology is that you have a single workspace per dagit installation, but you can have multiple repositories contained within a single workspace. Each of those folders can probably exist as their own repository.
s

Scott Chamberlain

12/01/2022, 7:29 PM
Okay, thanks! I’ll try that
c

chris

12/01/2022, 7:36 PM
One thing to be clear on, they don't need to be separate repos. If you don't need code isolation between your pipelines, you can place them all within the same repo
s

Scott Chamberlain

12/01/2022, 7:58 PM
Got it, thanks