Caleb Overman
05/24/2023, 1:47 PM#033[32m2023-05-23 19:47:00 +0000#033[0m - dagster.daemon.SchedulerDaemon - #033[34mWARNING#033[0m - Schedule my_schedule was started from a location dagster_jobs that can no longer be found in the workspace. You can turn off this schedule in the Dagit UI from the Status tab.
owen
05/24/2023, 2:39 PMCaleb Overman
05/24/2023, 3:24 PMTimothy Elder
05/24/2023, 3:36 PMowen
05/24/2023, 4:37 PM<command> -w path/to/workspace.yaml
.Caleb Overman
05/24/2023, 4:40 PMworkspace.yaml
is in the dagit working directoryowen
05/24/2023, 4:41 PM/home/ubuntu/.local/bin/dagster-daemon run -w /opt/dagster/FTS_Data_Science/dagster-jobs/workspace.yaml
should do the trick for youTimothy Elder
05/24/2023, 5:58 PMowen
05/24/2023, 7:54 PM[Service]
Type=simple
User=ubuntu
Restart=always
WorkingDirectory=/opt/dagster
ExecStart=/home/ubuntu/.local/bin/dagster-daemon run
Environment="PATH=/home/ubuntu/.local/bin"
Environment="DAGSTER_HOME=/opt/dagster"
Environment="PATH=/usr/bin
to
[Service]
Type=simple
User=ubuntu
Restart=always
WorkingDirectory=/opt/dagster
ExecStart=/home/ubuntu/.local/bin/dagster-daemon run -w /opt/dagster/FTS_Data_Science/dagster-jobs/workspace.yaml
Environment="PATH=/home/ubuntu/.local/bin"
Environment="DAGSTER_HOME=/opt/dagster"
Environment="PATH=/usr/bin
Caleb Overman
05/25/2023, 1:37 PM