io.grpc.xds.ClusterImplLoadBalancerProvider Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.grpc.xds;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableMap;
import com.google.protobuf.Struct;
import io.grpc.CallOptions;
import io.grpc.Internal;
import io.grpc.LoadBalancer;
import io.grpc.LoadBalancer.Helper;
import io.grpc.LoadBalancerProvider;
import io.grpc.LoadBalancerRegistry;
import io.grpc.NameResolver.ConfigOrError;
import io.grpc.Status;
import io.grpc.xds.Endpoints.DropOverload;
import io.grpc.xds.EnvoyServerProtoData.UpstreamTlsContext;
import io.grpc.xds.client.Bootstrapper.ServerInfo;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import javax.annotation.Nullable;
/**
* The provider for the cluster_impl load balancing policy. This class should not be directly
* referenced in code. The policy should be accessed through
* {@link LoadBalancerRegistry#getProvider} with the name "cluster_impl_experimental".
*/
@Internal
public final class ClusterImplLoadBalancerProvider extends LoadBalancerProvider {
/**
* Consumer of filter metadata from the cluster used by the call. Consumer may not modify map.
*/
public static final CallOptions.Key>> FILTER_METADATA_CONSUMER =
CallOptions.Key.createWithDefault("io.grpc.xds.internalFilterMetadataConsumer", (m) -> { });
@Override
public boolean isAvailable() {
return true;
}
@Override
public int getPriority() {
return 5;
}
@Override
public String getPolicyName() {
return XdsLbPolicies.CLUSTER_IMPL_POLICY_NAME;
}
@Override
public ConfigOrError parseLoadBalancingPolicyConfig(Map rawLoadBalancingPolicyConfig) {
return ConfigOrError.fromError(
Status.INTERNAL.withDescription(getPolicyName() + " cannot be used from service config"));
}
@Override
public LoadBalancer newLoadBalancer(Helper helper) {
return new ClusterImplLoadBalancer(helper);
}
static final class ClusterImplConfig {
// Name of the cluster.
final String cluster;
// Resource name used in discovering endpoints via EDS. Only valid for EDS clusters.
@Nullable
final String edsServiceName;
// Load report server info. Null if load reporting is disabled.
@Nullable
final ServerInfo lrsServerInfo;
// Cluster-level max concurrent request threshold. Null if not specified.
@Nullable
final Long maxConcurrentRequests;
// TLS context for connections to endpoints.
@Nullable
final UpstreamTlsContext tlsContext;
// Drop configurations.
final List dropCategories;
// Provides the direct child policy and its config.
final Object childConfig;
final Map filterMetadata;
ClusterImplConfig(String cluster, @Nullable String edsServiceName,
@Nullable ServerInfo lrsServerInfo, @Nullable Long maxConcurrentRequests,
List dropCategories, Object childConfig,
@Nullable UpstreamTlsContext tlsContext, Map filterMetadata) {
this.cluster = checkNotNull(cluster, "cluster");
this.edsServiceName = edsServiceName;
this.lrsServerInfo = lrsServerInfo;
this.maxConcurrentRequests = maxConcurrentRequests;
this.tlsContext = tlsContext;
this.filterMetadata = ImmutableMap.copyOf(filterMetadata);
this.dropCategories = Collections.unmodifiableList(
new ArrayList<>(checkNotNull(dropCategories, "dropCategories")));
this.childConfig = checkNotNull(childConfig, "childConfig");
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("cluster", cluster)
.add("edsServiceName", edsServiceName)
.add("lrsServerInfo", lrsServerInfo)
.add("maxConcurrentRequests", maxConcurrentRequests)
// Exclude tlsContext as its string representation is cumbersome.
.add("dropCategories", dropCategories)
.add("childConfig", childConfig)
.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy