-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
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
feat(airflow): Add grouping by namespace option to kedro-airflow #1031
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
Signed-off-by: Laura Couto <laurarccouto@gmail.com>
@@ -218,6 +226,8 @@ def create( # noqa: PLR0913, PLR0912 | |||
# topological sort order obtained from pipeline.nodes, see group_memory_nodes() | |||
# implementation | |||
nodes, dependencies = group_memory_nodes(context.catalog, pipeline) | |||
elif group_by_namespace: | |||
nodes, dependencies = group_by_namespace(pipeline) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this call the method that @ankatiyar added to the framework?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's calling Pipeline.grouped_nodes_by_namespace
, I based it on Ankita's prototype. You think it could be called there directly?
Description
Development notes
Checklist
jsonschema/kedro-catalog-X.XX.json
if necessaryRELEASE.md
file