sephi
11/21/2019, 11:47 AMdagit -y repository.yaml
I'm having difficulty understanding the dagster_pandas example (python_modules/libraries/dagster-pandas/dagster_pandas).
1. what file populates the pipline list in the dagit website?
2. under the execute tab what file holds the list of the solid environments [prod, test]?alex
11/21/2019, 3:56 PMwhat file populates the pipline list in the dagit website?
repository.yaml
points to a function in a file that returns a RepositoryDefinition
. This is what defines the set of pipelines.
https://dagster.readthedocs.io/en/0.6.4/sections/learn/tutorial/repos.html
under the execute tab what file holds the list of the solid environments [prod, test]?A pipeline can define
preset
which has an associated mode
and environment
/ config.
https://dagster.readthedocs.io/en/0.6.4/sections/learn/tutorial/resources.html#pipeline-config-presetssephi
11/22/2019, 6:49 AMconda
environment and not from the github files... Thx