aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/content
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-10-06 16:22:34 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2022-10-06 16:22:34 +0200
commite31038dba94fb2e7edf5136b77b538c1a5bee687 (patch)
treec01f1224f40732e94f26698a68841abaffbbfa29 /config-model/src/test/java/com/yahoo/vespa/model/content
parente9d2e1c3c174bb733f4420bd5f0f72311111e092 (diff)
GC remaining persistence throttling tuning flags.
Diffstat (limited to 'config-model/src/test/java/com/yahoo/vespa/model/content')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/content/StorageClusterTest.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/content/StorageClusterTest.java b/config-model/src/test/java/com/yahoo/vespa/model/content/StorageClusterTest.java
index 2a9cb2733fb..48cee3fd397 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/content/StorageClusterTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/content/StorageClusterTest.java
@@ -327,21 +327,6 @@ public class StorageClusterTest {
}
@Test
- void persistence_dynamic_throttling_parameters_can_be_set_through_feature_flags() {
- var config = filestorConfigFromProducer(simpleCluster(new TestProperties()
- .setPersistenceThrottlingWsDecrementFactor(1.5)
- .setPersistenceThrottlingWsBackoff(0.8)
- .setPersistenceThrottlingWindowSize(42)
- .setPersistenceThrottlingWsResizeRate(2.5)));
- assertEquals(1.5, config.async_operation_throttler().window_size_decrement_factor(), 0.0001);
- assertEquals(0.8, config.async_operation_throttler().window_size_backoff(), 0.0001);
- // If window size is set, min and max are locked to the same value
- assertEquals(42, config.async_operation_throttler().min_window_size());
- assertEquals(42, config.async_operation_throttler().max_window_size());
- assertEquals(2.5, config.async_operation_throttler().resize_rate(), 0.0001);
- }
-
- @Test
void integrity_checker_explicitly_disabled_when_not_running_with_vds_provider() {
StorIntegritycheckerConfig.Builder builder = new StorIntegritycheckerConfig.Builder();
parse(cluster("bees", "")).getConfig(builder);