Skip to content

Conversation

@dafu-wu
Copy link
Contributor

@dafu-wu dafu-wu commented Aug 21, 2025

What type of PR is this?

/kind bug
/kind cleanup

What this PR does / why we need it:

This PR optimizes the calculation of queueAllocatable by excluding allocated resources that come from nodes marked as unschedulable.
Without this fix, queue-level resource accounting may include unusable allocations, leading to inaccurate scheduling decisions and potential over-commit.

Which issue(s) this PR fixes:

Fixes #

Special notes for your reviewer:

  • The change ensures that only allocatable resources from schedulable nodes are considered.
  • Helps improve fairness and accuracy in queue-level resource management.
  • No functional impact expected on already scheduled workloads, only more accurate accounting.

Does this PR introduce a user-facing change?

Optimize queueAllocatable calculation by excluding allocated resources from unschedulable nodes.
This prevents incorrect resource accounting and improves scheduling accuracy.

@volcano-sh-bot volcano-sh-bot added the kind/bug Categorizes issue or PR as related to a bug. label Aug 21, 2025
@volcano-sh-bot volcano-sh-bot added the kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. label Aug 21, 2025
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @dafu-wu, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request introduces an optimization to the queueAllocatable calculation within the scheduler's capacity plugin. The primary goal is to improve the accuracy of queue-level resource accounting by excluding resources allocated on nodes that are unschedulable or not ready. This prevents the scheduler from making decisions based on unusable capacity, leading to more precise resource management and fairer scheduling. The change ensures that only truly available resources contribute to a queue's allocatable capacity, without impacting already scheduled workloads.

Highlights

  • Refined Resource Accounting: A new field, allocatedWithoutSchedulingDisabledNode, has been introduced in the queueAttr struct. This field specifically tracks resources allocated on nodes that are currently schedulable and ready, providing a more accurate view of available capacity.
  • Optimized Scheduling Logic: The core queueAllocatable function, which determines if a queue can accept new tasks, now utilizes the allocatedWithoutSchedulingDisabledNode metric. This change ensures that scheduling decisions are based only on resources from healthy and available nodes, preventing over-commitment due to resources on unschedulable or unready nodes.
  • Enhanced Node State Checks: New helper functions, isNodeUnschedulable and isNodeNotReady, have been added. These functions are used during the resource aggregation process to precisely filter out resources from nodes that are marked as unschedulable or are not in a ready state, ensuring the accuracy of the new resource metric.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@volcano-sh-bot volcano-sh-bot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Aug 21, 2025
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request correctly identifies and fixes an issue where resources on unschedulable nodes were counted towards a queue's allocation, leading to inaccurate scheduling. The approach of introducing a new field allocatedWithoutSchedulingDisabledNode is sound. However, the implementation has a critical flaw that could lead to a panic due to a nil pointer, and there are opportunities to improve maintainability by reducing code duplication. I've provided detailed comments on these points.

@dafu-wu dafu-wu force-pushed the wucy/optimize-queue-allocatable branch 2 times, most recently from 6509e91 to 852f83e Compare August 21, 2025 18:18
@volcano-sh-bot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
To complete the pull request process, please assign monokaix
You can assign the PR to them by writing /assign @monokaix in a comment when ready.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@volcano-sh-bot volcano-sh-bot added size/L Denotes a PR that changes 100-499 lines, ignoring generated files. and removed size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Aug 21, 2025
@dafu-wu dafu-wu force-pushed the wucy/optimize-queue-allocatable branch from 852f83e to bf509d7 Compare August 22, 2025 17:40
…urces from unschedulable nodes

Signed-off-by: dafu <wuchengyi2006@163.com>
@dafu-wu dafu-wu force-pushed the wucy/optimize-queue-allocatable branch from c8ee27f to fe45ad9 Compare August 23, 2025 15:12
@dafu-wu
Copy link
Contributor Author

dafu-wu commented Aug 24, 2025

@JesseStutler @Monokaix @shinytang6 @alcorj-mizar can you help to review this PR?

Copy link
Member

@JesseStutler JesseStutler left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we may also have same problems in proportion plugin

@dafu-wu
Copy link
Contributor Author

dafu-wu commented Aug 27, 2025

I think we may also have same problems in proportion plugin

@JesseStutler can you help to modify it? I didn't see any relevant code

@volcano-sh-bot volcano-sh-bot added size/M Denotes a PR that changes 30-99 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Aug 27, 2025
…Node

Signed-off-by: dafu <wuchengyi2006@163.com>
@dafu-wu dafu-wu force-pushed the wucy/optimize-queue-allocatable branch from 655c925 to 445a1fe Compare August 27, 2025 04:30
@dafu-wu
Copy link
Contributor Author

dafu-wu commented Aug 27, 2025

@JesseStutler @caniszczyk can you merge this pr or fix this issue asap? It's block us🙏

@Monokaix
Copy link
Member

Monokaix commented Sep 2, 2025

We can revert this one #4373

@volcano-sh-bot volcano-sh-bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Sep 4, 2025
@volcano-sh-bot
Copy link
Contributor

@dafu-wu: PR needs rebase.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@dafu-wu
Copy link
Contributor Author

dafu-wu commented Sep 4, 2025

Resolved #4575

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

kind/bug Categorizes issue or PR as related to a bug. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants