Replies: 1 comment 1 reply
-
What happens when you update your final entry to
I believe the error you are getting is from |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to do the same thing as
dagster job execute --package-name tutorial -j images_job
by python script.This is because I would like to implement config file not as yaml file but as python class.
I would not like to use
materialize()
ormaterialize_in_memory()
because like to run DAG in multiprocess.dagster job execute
works well but inputting config file via yaml is not convenient for me.My context is this discussion (#17675)
I tried the following codes but all gets errors.
How should I solve this problem?
implementation of
tutorials/__init__.py
errors I encounterred
This implementation of
./run_job.py
ended up with errors like
and
This implementation of
./run_job.py
ended up with errors like
and
This implementation of
./run_job.py
ended up with errors like (in this case, I can run job, but runtime error occurred.)
Beta Was this translation helpful? Give feedback.
All reactions