https://dagster.io/ logo
Title
a

Andy H

10/11/2021, 3:22 PM
Hi all, I'm playing around with sensors and using the docker-ecs example. I have daemon, pipelines, and dagit containers running. I do not know why, but my dagit instance always says that the sensor daemon is not running. Any idea how to solve this?
dagster.yaml
scheduler:
  module: dagster.core.scheduler
  class: DagsterDaemonScheduler

run_coordinator:
  module: dagster.core.run_coordinator
  class: DefaultRunCoordinator

run_launcher:
  module: dagster.core.launcher
  class: DefaultRunLauncher
daemon output
daemon        | 2021-10-11 15:20:19 - BackfillDaemon - INFO - No backfill jobs requested.
daemon        | 2021-10-11 15:20:19 - SchedulerDaemon - INFO - Not checking for any runs since no schedules have been started.
daemon        | 2021-10-11 15:20:49 - SensorDaemon - INFO - Not checking for any runs since no sensors have been started.
Note, I have started my sensor using dagit. It's as though it just cannot speak to the daemon.
Running containers
d

daniel

10/11/2021, 3:26 PM
Hi Andy - it looks like your dagster.yaml doesn't reference your postgres database? You'll want run_storage/event_log_storage/schedule_storage entries like in the example dagster.yaml: https://github.com/dagster-io/dagster/blob/master/examples/deploy_ecs/dagster.yaml
a

Andy H

10/11/2021, 3:44 PM
@daniel Thanks for catching that-- can't believe I missed that!! Things are working just fine now.
:condagster: 1