-
Notifications
You must be signed in to change notification settings - Fork 25.7k
[ML] Fix MlAssignmentPlannerUpgradeIT.estMlAssignmentPlannerUpgrade() #137080
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
[ML] Fix MlAssignmentPlannerUpgradeIT.estMlAssignmentPlannerUpgrade() #137080
Conversation
…in startDeployment method
|
Pinging @elastic/ml-core (Team:ML) |
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.
Pull Request Overview
This PR fixes MlAssignmentPlannerUpgradeIT.testMlAssignmentPlannerUpgrade() by changing model deployments from normal to low priority, allowing the test to succeed in single-processor environments where all processors are already allocated. The key changes enable low-priority deployments that don't require specific processor allocations.
- Removes the
@AwaitsFixannotation from the failing test - Updates
startDeploymentmethod overloads to support priority parameter - Changes deployment priority from "normal" to "low" for test models
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
…elastic#137080) As suggested here, this PR changes deployments to low priority. Low priority deployments don't require specific processor allocations, allowing them to run in constrained environments. The test can now succeed in single-processor test environments where all processors are already allocated. Since we don't test BWC for pre-8.6.0 versions, where priority was introduced, this change fixes the test.
…elastic#137080) As suggested here, this PR changes deployments to low priority. Low priority deployments don't require specific processor allocations, allowing them to run in constrained environments. The test can now succeed in single-processor test environments where all processors are already allocated. Since we don't test BWC for pre-8.6.0 versions, where priority was introduced, this change fixes the test.
…elastic#137080) As suggested here, this PR changes deployments to low priority. Low priority deployments don't require specific processor allocations, allowing them to run in constrained environments. The test can now succeed in single-processor test environments where all processors are already allocated. Since we don't test BWC for pre-8.6.0 versions, where priority was introduced, this change fixes the test.
As suggested here, this PR changes deployments to low priority. Low priority deployments don't require specific processor allocations, allowing them to run in constrained environments. The test can now succeed in single-processor test environments where all processors are already allocated.
Since we don't test BWC for pre-8.6.0 versions, where priority was introduced, this change fixes the test.
Closes #101926