-
Notifications
You must be signed in to change notification settings - Fork 294
SNOW-2367850: task integration example update #250
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
Open
sfc-gh-ajiang
wants to merge
17
commits into
main
Choose a base branch
from
ajiang_task_example_update
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
0291c04
update the task SDK
sfc-gh-ajiang 375d3ab
revert changes
sfc-gh-ajiang 703488f
resolve the comments
sfc-gh-ajiang f96fd9b
revert unnecessary changes
sfc-gh-ajiang ad5d13b
revert unnecessary changes
sfc-gh-ajiang fd6a7dc
resolve the comments
sfc-gh-ajiang 5524f9a
resolve the comments
sfc-gh-ajiang 3015500
resolve the comments
sfc-gh-ajiang 94e941a
resolve the comments
sfc-gh-ajiang 74a1edb
resolve the comments
sfc-gh-ajiang 7f992c4
reformat the script
sfc-gh-ajiang 01c160f
update the sample
sfc-gh-ajiang 9fb7478
update the sample
sfc-gh-ajiang 071eb1c
update the sample
sfc-gh-ajiang f6ab75c
update the sample
sfc-gh-ajiang 16b0b42
update the samples
sfc-gh-ajiang 9fe2b7a
update the samples
sfc-gh-ajiang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
One of the main points of this sample is to demonstrate how easy it is to convert a local pipeline to pushing certain steps down into ML Jobs. Needing to write a separate script file which we
submit_file()just for this conversion severely weakens this story. Why can't we just keep using a@remote()decorated function?@remote(...)should convert the function into anMLJobDefinitionwhich we can directly use inpipeline_dagwithout needing an explicitMLJobDefinition.register()callThere 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.
That is currently
@remotedoes not create job definition and it creates a job directly. Currently, we only merged the PR for phase one and phase 2 is in review.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.
Let's hold off on merging this until
@remoteis ready then