-
Notifications
You must be signed in to change notification settings - Fork 915
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
Update docs with plural kedro run
flags (load_versions
, tags
, nodes
)
#2315
Conversation
Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>
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.
LGTM -- thanks for the update 🌟
| `kedro run --async` | Load and save node inputs and outputs asynchronously with threads | | ||
| `kedro run --env=<env_name>` | Run the pipeline in the env_name environment. Defaults to local if not provided | | ||
| [DEPRECATED] `kedro run --tag=<tag_name1>,<tag_name2>` | Run only nodes which have any of these tags attached. <br /> Multiple instances allowed. | | ||
| `kedro run --tags=<tag_name1>,<tag_name2>` | Run only nodes which have any of these tags attached. <br /> NOTE: This flag will be deprecated in `Kedro 0.19.0`. Use the following flag `--tags` instead. | |
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.
I think the note is on the wrong line here. It should be in the for above.
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.
Yes, I put it in the wrong place. Made the change in dd12b68
node_names: | ||
- node1 | ||
- node2 | ||
nodes_names: node1, node2 |
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.
Just a note: This will end up being changed back to node_names
but better to have the change here as is, as the format of the command changes too.
Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>
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.
👍
…nodes`) (#2315) * Update docs with plural flags Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> * Move deprecation note to the right place Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> --------- Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com> Signed-off-by: Jo Stichbury <jo_stichbury@mckinsey.com>
Signed-off-by: Ankita Katiyar ankitakatiyar2401@gmail.com
Description
Resolves #2246
Documentation for changes introduced in #2301 and #2303
Development notes
Docs changed in the following places -
kedro run
options table indocs/source/development/commands_reference.md
config.yml
example updated to use comma separated values instead of list format with the new flags indocs/source/kedro_project_setup/configuration.md
kedro run
command that usednode
flag in the spaceflights tutorialdocs/source/tutorial/create_a_pipeline.md
Checklist
RELEASE.md
file