Open CalRobert opened 2 years ago
@CalRobert I got it working by adding the files to the app
directory which I believe is what Dagster expects as default (at least from the docker image env vars). Same applies for new pipelines added to the yaml. The file needs to be available in app
but the home dir where workspace.yml is ingested is a sibling dir, you need to mount the volume one directory up /opt/dagster/
and deal with the two sibling subdirs separately (if that makes sense).
My workspace.yaml
:
load_from:
- python_file:
relative_path: /opt/dagster/app/syncing_pipeline.py
location_name: /opt/dagster/app/
- python_file: ....
I will soon push my working fork up so follow in case it doesn't get merged here.
This repo seems dead but I thought I'd share this anyway - I was never able to get this to work in ECS. Oddly, running in Docker locally with the same folder setup, workspace.yaml, etc was fine, but on ECS I always get this:
Anyone else have this problem?