We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for defining user-defined functions and a call field in the YAML format to enable more modular and reusable code within the DAGs.
call
Introduce a new top-level functions field for defining user-defined functions, and a new call field within the steps section to call those functions.
functions
steps
Example of defining a function and calling a function:
functions: - name: my_function params: param1 param2 command: python main.py $param1 $param2 steps: - name: step 1 call: function: my_function args: param1: 1 param2: 2
The text was updated successfully, but these errors were encountered:
@yohamta May I work on it?
Sorry, something went wrong.
Hi @garunitule 👋 That would be a huge help. Thank you so much!
If there's anything you're not sure about, feel free to ask any questions. Here's the link to our Discord Community. https://discord.gg/gpahPUjGRk
No branches or pull requests
Add support for defining user-defined functions and a
call
field in the YAML format to enable more modular and reusable code within the DAGs.Introduce a new top-level
functions
field for defining user-defined functions, and a newcall
field within thesteps
section to call those functions.Example of defining a function and calling a function:
The text was updated successfully, but these errors were encountered: