summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorYngve Aasheim <yngveaasheim@users.noreply.github.com>2017-06-01 10:57:40 +0200
committerGitHub <noreply@github.com>2017-06-01 10:57:40 +0200
commit3fcb7808314790ba22d2ca348b986903efa0199c (patch)
tree1316ffb49e2bf20f9bf2c7a2baf2dd984e97b6e7 /config-model
parent8c05249286b93b5c9100709115a77e4cb26b4591 (diff)
[VESPA-5826] 16 distribution bits in ap-northeast-2
Diffstat (limited to 'config-model')
-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 f67d085fefa..561464103c2 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
@@ -595,6 +595,7 @@ public class ContentCluster extends AbstractConfigProducer implements StorDistri
if (zone.region().equals(RegionName.from("us-central-1"))) return 16; // TODO: Enable for all hosted zones (i.e when zone isn't default)
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)
return DistributionBitCalculator.getDistributionBits(getNodeCountPerGroup(), getDistributionMode());
}