dhume
05/28/2020, 7:14 PMdagster.yaml
is
scheduler:
module: dagster_cron.cron_scheduler
class: SystemCronScheduler
sashank
05/28/2020, 7:15 PMdagster schedule logs {schedule_name}
you may find the error you’re running intodhume
05/28/2020, 7:19 PMschedule
. I’m on version 0.7.12 is this new to 0.7.14?sashank
05/28/2020, 7:20 PMdhume
05/28/2020, 7:20 PMsashank
05/28/2020, 7:20 PMdhume
05/28/2020, 7:21 PMdagster schedule start test_schedule
to start up my schedule
Not seeing any logs in appear in the directoryalex
05/28/2020, 8:02 PMdhume
05/28/2020, 8:06 PMalex
05/28/2020, 8:09 PMcron
to verify its workingdhume
05/28/2020, 8:11 PMdagster.yaml
)alex
05/28/2020, 8:13 PMpostgres
run, event, and schedule storage
that or use a volume mount so that $DAGSTER_HOME
can persist between deployssashank
05/28/2020, 9:48 PMcrontab -l
- Add a test cron job to the cron tab (something like echo "test" > text_cron.txt
to make sure cron is runningdhume
06/01/2020, 7:24 PMcrontab -l
is showing the schedule set. When I look in the container and check the logs for the schedule I’m getting this error
ModuleNotFoundError: No module named 'repos'
I saw someone else had a similar issue in a previous slack thread but I didn’t see their resolutionalex
06/01/2020, 7:32 PMrepository.yaml
set up?module: repos
and repos is only a valid “module” in that current working directory (ie not installed or otherwise on the python module loading path). Switching to file: repos.py
may resolve the issuedhume
06/01/2020, 7:49 PM