-
Notifications
You must be signed in to change notification settings - Fork 300
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
Concise dynamic node ids and names #705
Conversation
PART 1: - Dynamic node ids currently have additional context, namely a shortened name of the dynamic task function - This causes a tremendous bloat and is completely dependent on the name of the task - This PR standardizes the name and affixes a simple `d` in the begining PART 2: Reduce node names, which are purely for decorative purposes Signed-off-by: Ketan Umare <[email protected]>
Signed-off-by: Ketan Umare <[email protected]>
Signed-off-by: Ketan Umare <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #705 +/- ##
==========================================
+ Coverage 85.70% 85.72% +0.01%
==========================================
Files 355 356 +1
Lines 29703 29717 +14
Branches 2426 2428 +2
==========================================
+ Hits 25457 25474 +17
+ Misses 3605 3603 -2
+ Partials 641 640 -1
Continue to review full report at Codecov.
|
Signed-off-by: Ketan Umare <[email protected]>
This won't work in certain dynamic cases if users are on the old version of Admin right? before the proper node to node relationship was done. Should we call that out? |
This changed with flyteorg/flyteadmin#111 ? |
@wild-endeavor we have defaulted to node to node versions now. so it is the default |
if name is None: | ||
return "" |
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.
nit: we shouldn't need this, right?
* Concise: dynamic node ids and names PART 1: - Dynamic node ids currently have additional context, namely a shortened name of the dynamic task function - This causes a tremendous bloat and is completely dependent on the name of the task - This PR standardizes the name and affixes a simple `d` in the begining PART 2: Reduce node names, which are purely for decorative purposes Signed-off-by: Ketan Umare <[email protected]> * unit tests Signed-off-by: Ketan Umare <[email protected]> * fix test Signed-off-by: Ketan Umare <[email protected]> * unit tests Signed-off-by: Ketan Umare <[email protected]> Signed-off-by: Lisa <[email protected]>
TL;DR
PART 1:
a shortened name of the dynamic task function
name of the task
d
in thebegining
PART 2:
Reduce node names, which are purely for decorative purposes
Type
Are all requirements met?
Tracking Issue
fixes flyteorg/flyte#1660
Follow-up issue
NA