aboutsummaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-11-18 13:16:54 +0100
committerJon Bratseth <bratseth@verizonmedia.com>2019-11-18 13:16:54 +0100
commit34e83218cc7b210137b633bc3e99f9b99dda3e19 (patch)
treee3c8862607596cf4b481e1c615db6f4586ddfa17 /config-model
parent2d07304049b00d679403b143adee7b481b099bb8 (diff)
Do rebalancing deployments in the Rebalancer
This avoids cases where the Rebalancer chooses a move which turns out to not be legal when actually making the redeployment, causing another node to be selected as target.
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/search/DispatcherComponent.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/search/DispatcherComponent.java b/config-model/src/main/java/com/yahoo/vespa/model/container/search/DispatcherComponent.java
index 7f51efcd092..704188e80e8 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/search/DispatcherComponent.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/search/DispatcherComponent.java
@@ -10,6 +10,8 @@ import com.yahoo.vespa.model.search.IndexedSearchCluster;
/**
* Represents a dispatcher component - an instance of a dispatcher in a search container cluster
* knows how to communicate with one indexed search cluster and owns the connections to it.
+ *
+ * @author bratseth
*/
public class DispatcherComponent extends Component<DispatcherComponent, ComponentModel>
implements DispatchConfig.Producer {