com.yahoo.vespa.hosted.provision.lb.LoadBalancerSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of node-repository Show documentation
Show all versions of node-repository Show documentation
Keeps track of node assignment in a multi-application setup.
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.lb;
import com.google.common.collect.ImmutableSortedSet;
import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.ClusterSpec;
import java.util.Objects;
import java.util.Set;
/**
* A specification for a load balancer.
*
* @author mpolden
*/
public class LoadBalancerSpec {
private final ApplicationId application;
private final ClusterSpec.Id cluster;
private final Set reals;
public LoadBalancerSpec(ApplicationId application, ClusterSpec.Id cluster, Set reals) {
this.application = Objects.requireNonNull(application);
this.cluster = Objects.requireNonNull(cluster);
this.reals = ImmutableSortedSet.copyOf(Objects.requireNonNull(reals));
}
/** Owner of the load balancer */
public ApplicationId application() {
return application;
}
/** The target cluster of this load balancer */
public ClusterSpec.Id cluster() {
return cluster;
}
/** Real servers to attach to this load balancer */
public Set reals() {
return reals;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy