Here is a medium article with more detail: <https:...
# announcements
s
k
Great post! Note: The Show Me The Demo heading and first few lines are repeated twice.
s
Fixed. Thanks @King Chung Huang!
b
Thank you for your post. I have a question. I've followed your post to try the scheduler. But the schedule didn't start as expected. I also tried the example in https://dagster.readthedocs.io/en/0.6.1/sections/learn/tutorial/scheduler.html and it still didn't work. I'm not sure what I missed. May I ask you an advice about scheduler?
s
Hey @ballweera, happy to help debug any issues with the scheduler. Can also take this to DM if you'd like. You can view the scheduler debug logs to check for any errors with scheduled run invocations. The path to the logs for a schedule can be copied from the "Schedule" tab in dagit under the sub menu
b
@sashank Thank you for your advice. I’ve checked debug log. I found this
Copy code
{
  "data": {
    "startScheduledExecution": {
      "message": "Schedule hello_world_every_min is not present in the currently loaded repository.",
      "scheduleName": "hello_world_every_min"
    }
  }
}
But I think this schedule is in the repository. Not sure what is the root cause.
s
Try running
dagster schedule up && dagster schedule list
in your repository to see which schedules are on the repository
b
Thank you @sashank for consulting me in private chat. It works now.
🎉 2