CelioxF
CelioxF

Reputation: 63

Dagster Daemon sends heartbeats but starts no runs

I created a simplified project with dagster and started the dagster-daemon, however it starts no runs even though it sends heartbeats to the default sqlite daemon_heartbeats table.

I put all the files I needed in the same folder (at this point, they're just like hello world files), created a workspace.yaml and a dagster.yaml manually. Here is how the files look like:enter image description here enter image description here

I also configured my repository like the following: enter image description here

I believe, I did everything right, because I can load the repository from dagit without problems and I even see the option to turn the schedule on and off. enter image description here

After doing all this, I started the dagster-daemon with dagster-daemon run. The logs are alright (in the sense that I don't get any errors): enter image description here

And the daemon_heartbeats table does get updated regularly: enter image description here

Nevertheless, when I check the daemon on dagit, I get the message that the daemon is not running. enter image description here

Does anyone have an idea of what could be the issue here? Am I overlooking somethin basic?

Thanks in advance

Upvotes: 0

Views: 1461

Answers (1)

Costero
Costero

Reputation: 1

A little bit late but for anybody that can get in the same situation. Make sure you setup your DAGSTER_HOME variable to point to the dagster directory. For both dagit and dagster-daemon.

For example for Linux:

export DAGSTER_HOME=~/dagster

Windows:

set DAGSTER_HOME=c:\dagster

Upvotes: 0

Related Questions