-
Notifications
You must be signed in to change notification settings - Fork 3
feat: 资源分区管理优化 #26
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
Merged
Merged
feat: 资源分区管理优化 #26
Conversation
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
暂时没有合并要求,但是因为调度器和scow都基于此接口变动开发, 烦请先帮忙确认上述变更是否需要修改 @ddadaal |
ddadaal
requested changes
Jun 11, 2024
72950a2
to
827d0ca
Compare
ddadaal
reviewed
Jun 12, 2024
ddadaal
requested changes
Jun 12, 2024
a03a072
to
28dd0d5
Compare
ddadaal
requested changes
Jul 16, 2024
ddadaal
approved these changes
Jul 17, 2024
ddadaal
requested changes
Aug 7, 2024
ddadaal
approved these changes
Aug 9, 2024
feat: getClusterInfo 接口新增集群总体信息返回值
ddadaal
requested changes
Sep 19, 2024
ddadaal
approved these changes
Sep 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
在 QueryAccountBlockStatus 的Response中变更 blocked 的注释,增加 account_blocked_details
在 ListImplementedOptionalFeatures 中增加可选功能枚举值
在 account.proto中增加可选功能rpc接口
在getClusterInfo的Response中增加
// 3-17 Newly added parameters may not be returned
uint32 node_count = 3;
uint32 running_node_count = 4;
uint32 idle_node_count = 5;
uint32 not_available_node_count = 6;
uint32 cpu_core_count =7;
uint32 running_cpu_count = 8;
uint32 idle_cpu_count = 9;
uint32 not_available_cpu_count = 10;
uint32 gpu_core_count = 11;
uint32 running_gpu_count = 12;
uint32 idle_gpu_count = 13;
uint32 not_available_gpu_count = 14;
uint32 job_count = 15;
uint32 running_job_count = 16;
uint32 pending_job_count = 17;