summaryrefslogtreecommitdiffstats
path: root/config-model/src
diff options
context:
space:
mode:
authorYngve Aasheim <yngveaasheim@users.noreply.github.com>2017-06-09 09:57:25 +0200
committerGitHub <noreply@github.com>2017-06-09 09:57:25 +0200
commita1a50bf73a0a0b8e19552f8f61c702837df41d62 (patch)
treea0508f3ef0ef0a6201ad6183e1908ea7dcfda8e6 /config-model/src
parent3d0f44f63919702713908b8da56434a5260f18df (diff)
[VESPA-5826] 16 distribution bits in us-east-3
Diffstat (limited to 'config-model/src')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/content/cluster/ContentCluster.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/content/cluster/ContentCluster.java b/config-model/src/main/java/com/yahoo/vespa/model/content/cluster/ContentCluster.java
index 561464103c2..90ad0117dfb 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/content/cluster/ContentCluster.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/content/cluster/ContentCluster.java
@@ -596,6 +596,7 @@ public class ContentCluster extends AbstractConfigProducer implements StorDistri
if (zone.region().equals(RegionName.from("eu-west-1"))) return 16; // TODO: Enable for all hosted zones (i.e when zone isn't default)
if (zone.region().equals(RegionName.from("ap-northeast-1"))) return 16; // TODO: Enable for all hosted zones (i.e when zone isn't default)
if (zone.region().equals(RegionName.from("ap-northeast-2"))) return 16; // TODO: Enable for all hosted zones (i.e when zone isn't default)
+ if (zone.region().equals(RegionName.from("us-east-3"))) return 16; // TODO: Enable for all hosted zones (i.e when zone isn't default)
return DistributionBitCalculator.getDistributionBits(getNodeCountPerGroup(), getDistributionMode());
}