https://dagster.io/ logo
s

schrockn

10/10/2019, 8:51 PM
k

King Chung Huang

10/11/2019, 2:45 AM
Great post! Note: The Show Me The Demo heading and first few lines are repeated twice.
s

schrockn

10/11/2019, 5:24 PM
Fixed. Thanks @King Chung Huang!
b

ballweera

10/16/2019, 3:35 AM
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

sashank

10/16/2019, 3:05 PM
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

ballweera

10/17/2019, 5:16 AM
@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

sashank

10/17/2019, 5:52 AM
Try running
dagster schedule up && dagster schedule list
in your repository to see which schedules are on the repository
b

ballweera

10/17/2019, 7:55 AM
Thank you @sashank for consulting me in private chat. It works now.
🎉 2