Hi guys, I am trying to get "re-execution for sol...
# announcements
k
Hi guys, I am trying to get "re-execution for solid" feature running on Dagit intro-tutorial, I am using the codes in: <dagster-official-repo>/examples/dagster_examples/intro_tutorial/ (latest master branch on github) I run:
dagit -f hello_cereal.py -n hello_cereal_pipeline
The dagit UI does not allow me to use re-execution, recommending me to use the "filesystem" storage mode. Where am I doing wrong ? I want the button "re-execution" to work. Dagit Page and intermediates.yaml file posted in thread of this post
intermediates.yaml ( unchanged from master branch )
Copy code
solids:
  read_csv:
    inputs:
      csv_path:
        value: "cereal.csv"
storage:
  filesystem:
Solid-Re-execution in top-right not working.
m
@yuhan
k
I have learned that we need to put the
Copy code
storage:
  filesystem:
Into the configuration tab in the Dagit UI. I assumed that dagit would auto read the *.yaml, and set up the filesystem configuration. So that I could just spin up dagit and run. I was wrong!
👍 1