https://dagster.io/ logo
j

John Mav

04/15/2020, 4:09 PM
I’ve been following the examples here: https://dagster.readthedocs.io/en/stable/sections/deploying/local.html#dagit-in-docker to get Dagit running within a docker container. I have a simple pipeline that I am using to test the cron service that gets setup and everything seems like it’s running fine. However when I turn on the pipeline schedule from the schedules tab in the UI the pipeline never runs? The cron service is running and when I list the jobs from the crontab I do see the specific test job e.g.
Copy code
root:/opt/dagster/app# crontab -l

* * * * * /var/shared/dagster/schedules/scripts/Repo.test_run.sh # dagster-schedule: Repo.test_run
I’m wondering what I am missing here so that turning “on” the schedule actually runs the job?
s

sashank

04/15/2020, 5:55 PM
Hey @John Mav, if you try clicking on the schedule name on the schedule tab, you’ll be able to see some logs for the schedule
Turning the schedule “on” should be running the job - lmk if you see anything in the logs
j

John Mav

04/15/2020, 10:25 PM
nope logs are empty and remain empty
tried a few more approaches and still no dice, @sashank is there any other info I could provide you that may help figure this out, the only difference is that I’m using docker-compose to run the docker file so that I can leverage Postgres as log storage.
s

sashank

04/16/2020, 6:55 PM
Sorry for missing your reply here - Dm’ing you to debug more in depth
j

John Mav

04/16/2020, 6:59 PM
Hey looks like that worked 😄
2 Views