-
Notifications
You must be signed in to change notification settings - Fork 299
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
Reevaluate the PodSpec equality factors #3103
Comments
Interestingly, I think we are missing some important fields, such as pod overhead. But from within the containers, we just care about requests. @mimowo anything else in the context of TAS? |
FYI: we need to be careful about pod group support, as we use the fields to build hashes. That list of fields will be harder to change. If we change the list and a pod group is running while there is a kueue upgrade, the new pods might be considered invalid. |
From the perspective of TAS I don't see a need to change this yet, but let me check my understanding. There are 2 levels here:
So, the comment in code suggests to be less selective at the PodSpec level, while the issue here suggests to be more selective at the container level? |
/assign dgrove-oss |
Actually, we aim to rework the comparative in both levels. |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
/remove-lifecycle stale |
What would you like to be added:
We want to reevaluate the PodSpec equality factors and use only the necessary factors (fields) to identify the PodSpec.
kueue/pkg/util/equality/podset.go
Lines 29 to 37 in b9e1730
Why is this needed:
The current approach sometimes causes unexpected update detection as we discussed in #3090.
So, it would be better to adopt the selective equality evaluation as opposed to the current nonselective equality.
Before we modify the actual equality function, we need to summarize the necessary fields for developers and users.
Completion requirements:
This enhancement requires the following artifacts:
The artifacts should be linked in subsequent comments.
The text was updated successfully, but these errors were encountered: