Yichen
01/15/2021, 10:10 PMNikolas Rieble
01/16/2021, 11:13 AMLuke S
01/17/2021, 3:51 AMKlaus Stadler
01/17/2021, 4:43 PMpaul.q
01/17/2021, 10:03 PMDaniel Kim
01/19/2021, 4:15 AMSlackbot
01/19/2021, 5:49 AMRichard Whitefoot
01/19/2021, 4:17 PMschrockn
01/19/2021, 6:59 PMschrockn
01/19/2021, 6:59 PMschrockn
01/19/2021, 6:59 PMschrockn
01/19/2021, 7:00 PMCesar Benitez
01/20/2021, 9:50 AMNo module named 'redd_motodb'
while importing module repo from file /opt/dagster/pipelines/repo.py. Local modules were resolved using the working directory /opt/dagster/pipelines
. If another working directory should be used, please explicitly specify the appropriate path using the -d
or --working-directory
for CLI based targets or the working_directory
configuration option for python_file
-based workspace.yaml targets.Cesar Benitez
01/20/2021, 9:52 AMCesar Benitez
01/20/2021, 3:12 PMCesar Benitez
01/20/2021, 3:17 PMNick
01/21/2021, 3:43 PM2021-01-21 15:41:31 - SchedulerDaemon - ERROR - Failed to fetch execution plan for success_email_schedule: dagster.core.errors.DagsterInvalidConfigError: Error in config for pipeline success_email_pipeline
Error 1: Missing required config entry "solids" at the root.
Stack Trace:
File "c:\python\dagster\venv\lib\site-packages\dagster\grpc\impl.py", line 328, in get_external_execution_plan_snapshot
create_execution_plan(
File "c:\python\dagster\venv\lib\site-packages\dagster\core\execution\api.py", line 668, in create_execution_plan
environment_config = EnvironmentConfig.build(pipeline_def, run_config, mode=mode)
File "c:\python\dagster\venv\lib\site-packages\dagster\core\system_config\objects.py", line 128, in build
raise DagsterInvalidConfigError(
My code for the daily_schedule (which works) is:
@daily_schedule(
pipeline_name="summary_email_pipeline",
start_date=datetime.datetime(2021, 1, 21),
execution_timezone="Europe/London",
mode="prod",
execution_time=datetime.time(21, 00),
)
def summary_email_schedule(date):
return
However the one which doesn't is...
@schedule(
cron_schedule="*/1 * * * *", pipeline_name="success_email_pipeline", execution_timezone="Europe/London",
mode="prod",
)
def success_email_schedule(context):
return
Any ideas? Have been trying different things, can't seem to crack it.mrdavidlaing
01/21/2021, 9:53 PMuser
01/22/2021, 12:30 AMDaniel Kim
01/24/2021, 3:16 PMKlaus Stadler
01/24/2021, 9:00 PMKlaus Stadler
01/24/2021, 9:04 PMNoah K
01/24/2021, 9:06 PMNoah K
01/24/2021, 9:06 PMNoah K
01/24/2021, 9:07 PMKlaus Stadler
01/25/2021, 8:43 AMNoah K
01/25/2021, 8:45 AMNoah K
01/25/2021, 8:45 AMBongani
01/25/2021, 1:56 PMCameron Gallivan
01/26/2021, 5:22 PM