Hi, Noticed that the example for dagster-pandas i...
# announcements
s
Hi, Noticed that the example for dagster-pandas is dependent on dagstermill - you may want to consider to split the examples
additionally we are using conda - suggesting to add the documentation to explicit define python=3.7
I'm running
dagit -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]?
a
what 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-presets
s
Thx, will check it out next week
Found my problem - I was running from within the
conda
environment and not from the github files... Thx