aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
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/main/java/com/yahoo/config/model/deploy/TestProperties.java
parente9d2e1c3c174bb733f4420bd5f0f72311111e092 (diff)
GC remaining persistence throttling tuning flags.
Diffstat (limited to 'config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
index e4234581cc1..2520dda2ed0 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
@@ -67,10 +67,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
private int maxUnCommittedMemory = 123456;
private List<String> zoneDnsSuffixes = List.of();
private int maxCompactBuffers = 1;
- private double persistenceThrottlingWsDecrementFactor = 1.2;
- private double persistenceThrottlingWsBackoff = 0.95;
- private int persistenceThrottlingWindowSize = -1;
- private double persistenceThrottlingWsResizeRate = 3.0;
private boolean useV8GeoPositions = true;
private List<String> environmentVariables = List.of();
private boolean loadCodeAsHugePages = false;
@@ -125,10 +121,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
@Override public int maxUnCommittedMemory() { return maxUnCommittedMemory; }
@Override public List<String> zoneDnsSuffixes() { return zoneDnsSuffixes; }
@Override public int maxCompactBuffers() { return maxCompactBuffers; }
- @Override public double persistenceThrottlingWsDecrementFactor() { return persistenceThrottlingWsDecrementFactor; }
- @Override public double persistenceThrottlingWsBackoff() { return persistenceThrottlingWsBackoff; }
- @Override public int persistenceThrottlingWindowSize() { return persistenceThrottlingWindowSize; }
- @Override public double persistenceThrottlingWsResizeRate() { return persistenceThrottlingWsResizeRate; }
@Override public boolean useV8GeoPositions() { return useV8GeoPositions; }
@Override public List<String> environmentVariables() { return environmentVariables; }
@Override public Architecture adminClusterArchitecture() { return adminClusterNodeResourcesArchitecture; }
@@ -323,26 +315,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
return this;
}
- public TestProperties setPersistenceThrottlingWsDecrementFactor(double factor) {
- this.persistenceThrottlingWsDecrementFactor = factor;
- return this;
- }
-
- public TestProperties setPersistenceThrottlingWsBackoff(double backoff) {
- this.persistenceThrottlingWsBackoff = backoff;
- return this;
- }
-
- public TestProperties setPersistenceThrottlingWindowSize(int windowSize) {
- this.persistenceThrottlingWindowSize = windowSize;
- return this;
- }
-
- public TestProperties setPersistenceThrottlingWsResizeRate(double resizeRate) {
- this.persistenceThrottlingWsResizeRate = resizeRate;
- return this;
- }
-
public TestProperties setUseV8GeoPositions(boolean value) {
this.useV8GeoPositions = value;
return this;