-
Notifications
You must be signed in to change notification settings - Fork 122
[Python] Support pipelines #2574
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
Conversation
82f8d25 to
905203f
Compare
905203f to
095303d
Compare
095303d to
30d961b
Compare
30d961b to
ba9648a
Compare
| name: VariableOrOptional[str] | ||
| """ | ||
| TODO | ||
| """ |
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.
what is this TODO for? can we drop this completely?
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.
The pipeline class doesn't have any fields except name, which is only used as an example. There is a separate PR to add remaining fields.
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.
Can you link this to this PR (or the follow-up if ready)?
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.
👍 , linked
PR with generated code: #2639
experimental/python/databricks/bundles/pipelines/_models/pipeline.py
Outdated
Show resolved
Hide resolved
pietern
left a comment
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, bar the comments.
| name: VariableOrOptional[str] | ||
| """ | ||
| TODO | ||
| """ |
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.
Can you link this to this PR (or the follow-up if ready)?
ba9648a to
dfc8de5
Compare
|
@pietern addressed comments, please take a look again |
pietern
left a comment
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.
Thanks!
## Changes Add support for pipelines into `experimental/python`. Only the `name` property is supported, and the generated code will be added as a follow-up. ## Why It allows using pipelines in addition to jobs. ## Tests Unit and acceptance tests --------- Co-authored-by: Pieter Noordhuis <pieter.noordhuis@databricks.com>
## Changes Add generated code for pipelines support introduced in #2574
Changes
Add support for pipelines into
experimental/python.Only the
nameproperty is supported, and the generated code will be added as a follow-up.Why
It allows using pipelines in addition to jobs.
Tests
Unit and acceptance tests