summaryrefslogtreecommitdiffstats
path: root/container-search
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-02-18 14:25:23 +0100
committerJon Bratseth <bratseth@gmail.com>2023-02-18 14:25:23 +0100
commit370b8742744344fc38dabff4ae7bae65c9316dfc (patch)
tree55282fdee06ee14420de79aa12ef02093116312b /container-search
parent21e0c4913dd0bc88dfec3016d4552f57fc0e7c4b (diff)
Predict best case overhead during autoscaling
Predicting worst case has the unavoidable consequence that we will conclude we cannot fulfill requested resources in the case where there are no resource ranges (only node count ranges), or where they are too narrow, and thus refrain from scaling down when we should. Instead, mostly predict the best case and let the ideal < 1 headroom absorb the deficiency in what we are actually allocated.
Diffstat (limited to 'container-search')
-rw-r--r--container-search/src/test/java/com/yahoo/search/yql/YqlParserTestCase.java13
1 files changed, 3 insertions, 10 deletions
diff --git a/container-search/src/test/java/com/yahoo/search/yql/YqlParserTestCase.java b/container-search/src/test/java/com/yahoo/search/yql/YqlParserTestCase.java
index 33cd2f48d46..43aaba7b0f9 100644
--- a/container-search/src/test/java/com/yahoo/search/yql/YqlParserTestCase.java
+++ b/container-search/src/test/java/com/yahoo/search/yql/YqlParserTestCase.java
@@ -976,16 +976,9 @@ public class YqlParserTestCase {
assertEquals(4, terms.size());
for (IndexedItem term : terms) {
switch (term.getIndexedString()) {
- case "a":
- case "c":
- assertFalse(((Item) term).isRanked());
- break;
- case "b":
- case "d":
- assertTrue(((Item) term).isRanked());
- break;
- default:
- fail();
+ case "a", "c" -> assertFalse(((Item) term).isRanked());
+ case "b", "d" -> assertTrue(((Item) term).isRanked());
+ default -> fail();
}
}
}