Replies: 1 comment 2 replies
-
Hi bobojobo, I’m learning Airflow and this is interesting! |
Beta Was this translation helpful? Give feedback.
2 replies
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.
-
[airflow 3.0.3]
Hi,
I am trying use a notifier but I am running in some issues. Here is a boiled down version of my code:
When I run this the external_python task
pre
fails with this error:Using pickle also gives an error:
When I pass a string like
on_success_callback=[UpdateStatusNotifier(output="some string")]
everything runs fine.When I remove the external_python task
pre
all together but keep passing the function to myUpdateStatusNotifier
, it also runs fine and does the notification.So I am wondering why airflow wants to pickle my
UpdateStatusNotifier
inputs when I pass a function and have an external_python task in my DAG. Especially, because that task doesn't even have a notifier configured.Beta Was this translation helpful? Give feedback.
All reactions