-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Replace Parallelize with function ParallelizeUntil and formally depre… #68403
Replace Parallelize with function ParallelizeUntil and formally depre… #68403
Conversation
scaleclient "k8s.io/client-go/scale" | ||
"k8s.io/client-go/transport" | ||
"k8s.io/client-go/util/workqueue" | ||
"k8s.io/kubernetes/pkg/api/legacyscheme" |
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.
Yeah, here I sorted out the packages.
@@ -25,12 +25,6 @@ import ( | |||
|
|||
type DoWorkPieceFunc func(piece int) | |||
|
|||
// Parallelize is a very simple framework that allows for parallelizing | |||
// N independent pieces of work. | |||
func Parallelize(workers, pieces int, doWorkPiece DoWorkPieceFunc) { |
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.
Delete or just note Deprecate?
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.
deprecate. We might have users of it.
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.
Make sense.
4785250
to
5344525
Compare
/assign @yliaog |
/lgtm |
/approve |
@wojtek-t |
No - it's code-freeze already, and it's not a bug fix or anything like that. |
@wojtek-t |
@@ -421,7 +421,7 @@ func getPodsMatchingAffinity(pod *v1.Pod, nodeInfoMap map[string]*schedulercache | |||
appendResult(node.Name, nodeTopologyPairsAffinityPodsMaps, nodeTopologyPairsAntiAffinityPodsMaps) | |||
} | |||
} | |||
workqueue.Parallelize(16, len(allNodeNames), processNode) | |||
workqueue.ParallelizeUntil(nil, 16, len(allNodeNames), processNode) |
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.
is a nil context an anti-pattern? Never seen that. There is context.Background()
and context.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.
these cases in the scheduler all look like one of those two.
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.
yeah, you are right. The default will be context.TODO(), but not nil. But ParallelizeUntil will handle it when the context is nil.
5344525
to
50b66b0
Compare
50b66b0
to
8b95a39
Compare
@sttts I've updated it. But do we need to change the
|
/retest |
8b95a39
to
e7ecce9
Compare
e7ecce9
to
f10d8c9
Compare
/ping @sttts |
@@ -25,6 +25,9 @@ import ( | |||
|
|||
type DoWorkPieceFunc func(piece int) | |||
|
|||
// DEPRECATED: Parallelize is deprecated. ParallelizeUntil is a more |
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.
this should be in the default deprecation style, compare https://rakyll.org/deprecated/
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.
DONE. Thanks.
…cate the Parallelize
f10d8c9
to
c2622dd
Compare
/retest |
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 @wgliang !
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wgliang, wojtek-t, yastij, yliaog The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
1 similar comment
/retest |
/retest Review the full test history for this PR. Silence the bot with an |
…cate the Parallelize
What this PR does / why we need it:
And formally deprecate the Parallelize(It's just a variant of ParallelizeUntil).
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Special notes for your reviewer:
This is a follow up PR of #67555
FYI #67555 (comment)
Release note: