Replies: 7 comments
-
Thanks for opening your first issue here! Be sure to follow the issue template! |
Beta Was this translation helpful? Give feedback.
-
i modify the description and follow the template. wish your replay |
Beta Was this translation helpful? Give feedback.
-
I got similar error when I upgraded to 2.0.0
|
Beta Was this translation helpful? Give feedback.
-
use 2.0.0, after changed the code as @lafrinte proposed, got below error.
|
Beta Was this translation helpful? Give feedback.
-
Same issue |
Beta Was this translation helpful? Give feedback.
-
I had the same issue and this fixed it for me: uqfoundation/dill#383 (comment)
|
Beta Was this translation helpful? Give feedback.
-
Could also just pass check_call directly to submit without needing to define the extra function. This works in a plugin I have defined.
|
Beta Was this translation helpful? Give feedback.
-
Apache Airflow version: 1.10.12
Kubernetes version (if you are using kubernetes) (use
kubectl version
):Environment:
What happened:
DaskExecutor will raise
ValueError: Cell is empty
error when scheduling task. no dag can be scheduled. debug list below:How to reproduce it:
keep argument
executor
equal toDaskExecutor
. startup servicesdask-scheduler/dask-worker/airflow webserver/airflow scheduler
and trigger any example dag in website.Anything else we need to know:
it seems that the exception raised when picker serialize the
airflow_run
method defined inairflow.executor.dask_executor.DaskExecutor.execute_async
picker seem not enable dumps a function defined in function. so, i change the code and scheduler work well:
Beta Was this translation helpful? Give feedback.
All reactions