Class ManagedChannelBuilder<T extends ManagedChannelBuilder<T>>
- Type Parameters:
T
- The concrete type of this builder.
- Direct Known Subclasses:
ForwardingChannelBuilder2
,ManagedChannelImplBuilder
ManagedChannel
instances.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static interface
Internal-only. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected T
addMetricSink
(MetricSink metricSink) Adds aMetricSink
for channel to use for configuring and recording metrics.Adds aClientTransportFilter
.abstract ManagedChannel
build()
Builds a channel using the given parameters.abstract T
compressorRegistry
(CompressorRegistry registry) Set the compression registry for use in the channel.abstract T
decompressorRegistry
(DecompressorRegistry registry) Set the decompression registry for use in the channel.defaultLoadBalancingPolicy
(String policy) Sets the default load-balancing policy that will be used if the service config doesn't specify one.defaultServiceConfig
(Map<String, ?> serviceConfig) Provides a service config to the channel.abstract T
Execute application code directly in the transport thread.Disables the retry and hedging subsystem provided by the gRPC library.Disables service config look-up from the naming system, which is enabled by default.Enables the retry and hedging subsystem which will use per-method configuration.abstract T
Provides a custom executor.static ManagedChannelBuilder
<?> forAddress
(String name, int port) Creates a channel with the target's address and port number.static ManagedChannelBuilder
<?> Creates a channel with a target string, which can be either a validNameResolver
-compliant URI, or an authority string.abstract T
idleTimeout
(long value, TimeUnit unit) Set the duration without ongoing RPCs before going to idle mode.abstract T
intercept
(ClientInterceptor... interceptors) Adds interceptors that will be called before the channel performs its real work.abstract T
intercept
(List<ClientInterceptor> interceptors) Adds interceptors that will be called before the channel performs its real work.protected T
Internal-only: Adds a factory that will construct an interceptor based on the channel's target.keepAliveTime
(long keepAliveTime, TimeUnit timeUnit) Sets the time without read activity before sending a keepalive ping.keepAliveTimeout
(long keepAliveTimeout, TimeUnit timeUnit) Sets the time waiting for read activity after sending a keepalive ping.keepAliveWithoutCalls
(boolean enable) Sets whether keepalive will be performed when there are no outstanding RPC on a connection.maxHedgedAttempts
(int maxHedgedAttempts) Sets the maximum number of hedged attempts that may be configured by the service config.maxInboundMessageSize
(int bytes) Sets the maximum message size allowed to be received on the channel.maxInboundMetadataSize
(int bytes) Sets the maximum size of metadata allowed to be received.maxRetryAttempts
(int maxRetryAttempts) Sets the maximum number of retry attempts that may be configured by the service config.maxTraceEvents
(int maxTraceEvents) Sets the maximum number of channel trace events to keep in the tracer for each channel or subchannel.abstract T
nameResolverFactory
(NameResolver.Factory resolverFactory) Deprecated.offloadExecutor
(Executor executor) Provides a custom executor that will be used for operations that block or are expensive, to avoid blocking asynchronous code paths.abstract T
overrideAuthority
(String authority) Overrides the authority used with TLS and HTTP virtual hosting.perRpcBufferLimit
(long bytes) Sets the per RPC buffer limit in bytes used for retry.proxyDetector
(ProxyDetector proxyDetector) Sets the proxy detector to be used in addresses name resolution.retryBufferSize
(long bytes) Sets the retry buffer size in bytes.setBinaryLog
(BinaryLog binaryLog) Sets the BinaryLog object that this channel should log to.Use of a plaintext connection to the server.abstract T
Provides a customUser-Agent
for the application.Makes the client use TLS.
-
Constructor Details
-
ManagedChannelBuilder
public ManagedChannelBuilder()
-
-
Method Details
-
forAddress
Creates a channel with the target's address and port number.Note that there is an open JDK bug on
URI
class parsing an ipv6 scope ID: bugs.openjdk.org/browse/JDK-8199396. This method is exposed to this bug. If you experience an issue, a work-around is to convert the scope ID to its numeric form (e.g. by using Inet6Address.getScopeId()) before calling this method.- Since:
- 1.0.0
- See Also:
-
forTarget
Creates a channel with a target string, which can be either a validNameResolver
-compliant URI, or an authority string.A
NameResolver
-compliant URI is an absolute hierarchical URI as defined byURI
. Example URIs:"dns:///foo.googleapis.com:8080"
"dns:///foo.googleapis.com"
"dns:///%5B2001:db8:85a3:8d3:1319:8a2e:370:7348%5D:443"
"dns://8.8.8.8/foo.googleapis.com:8080"
"dns://8.8.8.8/foo.googleapis.com"
"zookeeper://zk.example.com:9900/example_service"
An authority string will be converted to a
NameResolver
-compliant URI, which has the scheme from the name resolver with the highest priority (e.g."dns"
), no authority, and the original authority string as its path after properly escaped. We recommend libraries to specify the schema explicitly if it is known, since libraries cannot know which NameResolver will be default during runtime. Example authority strings:"localhost"
"127.0.0.1"
"localhost:8080"
"foo.googleapis.com:8080"
"127.0.0.1:8080"
"[2001:db8:85a3:8d3:1319:8a2e:370:7348]"
"[2001:db8:85a3:8d3:1319:8a2e:370:7348]:443"
Note that there is an open JDK bug on
URI
class parsing an ipv6 scope ID: bugs.openjdk.org/browse/JDK-8199396. This method is exposed to this bug. If you experience an issue, a work-around is to convert the scope ID to its numeric form (e.g. by using Inet6Address.getScopeId()) before calling this method.- Since:
- 1.0.0
-
directExecutor
Execute application code directly in the transport thread.Depending on the underlying transport, using a direct executor may lead to substantial performance improvements. However, it also requires the application to not block under any circumstances.
Calling this method is semantically equivalent to calling
executor(Executor)
and passing in a direct executor. However, this is the preferred way as it may allow the transport to perform special optimizations.- Returns:
- this
- Since:
- 1.0.0
-
executor
Provides a custom executor.It's an optional parameter. If the user has not provided an executor when the channel is built, the builder will use a static cached thread pool.
The channel won't take ownership of the given executor. It's caller's responsibility to shut down the executor when it's desired.
- Returns:
- this
- Since:
- 1.0.0
-
offloadExecutor
Provides a custom executor that will be used for operations that block or are expensive, to avoid blocking asynchronous code paths. For example, DNS queries and OAuth token fetching over HTTP could use this executor.It's an optional parameter. If the user has not provided an executor when the channel is built, the builder will use a static cached thread pool.
The channel won't take ownership of the given executor. It's caller's responsibility to shut down the executor when it's desired.
- Returns:
- this
- Throws:
UnsupportedOperationException
- if unsupported- Since:
- 1.25.0
-
intercept
Adds interceptors that will be called before the channel performs its real work. This is functionally equivalent to usingClientInterceptors.intercept(Channel, List)
, but while still having access to the originalManagedChannel
. Interceptors run in the reverse order in which they are added, just as with consecutive calls toClientInterceptors.intercept()
.- Returns:
- this
- Since:
- 1.0.0
-
intercept
Adds interceptors that will be called before the channel performs its real work. This is functionally equivalent to usingClientInterceptors.intercept(Channel, ClientInterceptor...)
, but while still having access to the originalManagedChannel
. Interceptors run in the reverse order in which they are added, just as with consecutive calls toClientInterceptors.intercept()
.- Returns:
- this
- Since:
- 1.0.0
-
interceptWithTarget
Internal-only: Adds a factory that will construct an interceptor based on the channel's target. This can be used to work around nameResolverFactory() changing the target string. -
addTransportFilter
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/10652") public T addTransportFilter(ClientTransportFilter filter) Adds aClientTransportFilter
. The order of filters being added is the order they will be executed- Returns:
- this
- Since:
- 1.60.0
-
userAgent
Provides a customUser-Agent
for the application.It's an optional parameter. The library will provide a user agent independent of this option. If provided, the given agent will prepend the library's user agent information.
- Returns:
- this
- Since:
- 1.0.0
-
overrideAuthority
Overrides the authority used with TLS and HTTP virtual hosting. It does not change what host is actually connected to. Is commonly in the formhost:port
.If the channel builder overrides authority, any authority override from name resolution result (via
EquivalentAddressGroup.ATTR_AUTHORITY_OVERRIDE
) will be discarded.This method is intended for testing, but may safely be used outside of tests as an alternative to DNS overrides.
- Returns:
- this
- Since:
- 1.0.0
-
usePlaintext
Use of a plaintext connection to the server. By default a secure connection mechanism such as TLS will be used.Should only be used for testing or for APIs where the use of such API or the data exchanged is not sensitive.
This assumes prior knowledge that the target of this channel is using plaintext. It will not perform HTTP/1.1 upgrades.
- Returns:
- this
- Throws:
IllegalStateException
- if ChannelCredentials were provided when constructing the builderUnsupportedOperationException
- if plaintext mode is not supported.- Since:
- 1.11.0
-
useTransportSecurity
Makes the client use TLS. Note: this is enabled by default.It is recommended to use the
ChannelCredentials
API instead of this method.- Returns:
- this
- Throws:
IllegalStateException
- if ChannelCredentials were provided when constructing the builderUnsupportedOperationException
- if transport security is not supported.- Since:
- 1.9.0
-
nameResolverFactory
@Deprecated @ExperimentalApi("https://github.com/grpc/grpc-java/issues/1770") public abstract T nameResolverFactory(NameResolver.Factory resolverFactory) Deprecated.Most usages should use a globally-registeredNameResolverProvider
instead, with either the SPI mechanism orNameResolverRegistry.register(io.grpc.NameResolverProvider)
. Replacements for all use-cases are not necessarily available yet. See #7133.Provides a customNameResolver.Factory
for the channel. If this method is not called, the builder will try the providers registered in the defaultNameResolverRegistry
for the given target.This method should rarely be used, as name resolvers should provide a
NameResolverProvider
and users rely on service loading to find implementations in the class path. That allows application's configuration to easily choose the name resolver via the 'target' string passed toforTarget(String)
.- Returns:
- this
- Since:
- 1.0.0
-
defaultLoadBalancingPolicy
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1771") public T defaultLoadBalancingPolicy(String policy) Sets the default load-balancing policy that will be used if the service config doesn't specify one. If not set, the default will be the "pick_first" policy.Policy implementations are looked up in the
default LoadBalancerRegistry
.This method is implemented by all stock channel builders that are shipped with gRPC, but may not be implemented by custom channel builders, in which case this method will throw.
- Returns:
- this
- Since:
- 1.18.0
-
decompressorRegistry
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1704") public abstract T decompressorRegistry(DecompressorRegistry registry) Set the decompression registry for use in the channel. This is an advanced API call and shouldn't be used unless you are using custom message encoding. The default supported decompressors are inDecompressorRegistry.getDefaultInstance()
.- Returns:
- this
- Since:
- 1.0.0
-
compressorRegistry
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1704") public abstract T compressorRegistry(CompressorRegistry registry) Set the compression registry for use in the channel. This is an advanced API call and shouldn't be used unless you are using custom message encoding. The default supported compressors are inCompressorRegistry.getDefaultInstance()
.- Returns:
- this
- Since:
- 1.0.0
-
idleTimeout
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2022") public abstract T idleTimeout(long value, TimeUnit unit) Set the duration without ongoing RPCs before going to idle mode.In idle mode the channel shuts down all connections, the NameResolver and the LoadBalancer. A new RPC would take the channel out of idle mode. A channel starts in idle mode. Defaults to 30 minutes.
This is an advisory option. Do not rely on any specific behavior related to this option.
- Returns:
- this
- Since:
- 1.0.0
-
maxInboundMessageSize
Sets the maximum message size allowed to be received on the channel. If not called, defaults to 4 MiB. The default provides protection to clients who haven't considered the possibility of receiving large messages while trying to be large enough to not be hit in normal usage.This method is advisory, and implementations may decide to not enforce this. Currently, the only known transport to not enforce this is
InProcessTransport
.- Parameters:
bytes
- the maximum number of bytes a single message can be.- Returns:
- this
- Throws:
IllegalArgumentException
- if bytes is negative.- Since:
- 1.1.0
-
maxInboundMetadataSize
Sets the maximum size of metadata allowed to be received.Integer.MAX_VALUE
disables the enforcement. The default is implementation-dependent, but is not generally less than 8 KiB and may be unlimited.This is cumulative size of the metadata. The precise calculation is implementation-dependent, but implementations are encouraged to follow the calculation used for HTTP/2's SETTINGS_MAX_HEADER_LIST_SIZE. It sums the bytes from each entry's key and value, plus 32 bytes of overhead per entry.
- Parameters:
bytes
- the maximum size of received metadata- Returns:
- this
- Throws:
IllegalArgumentException
- if bytes is non-positive- Since:
- 1.17.0
-
keepAliveTime
Sets the time without read activity before sending a keepalive ping. An unreasonably small value might be increased, andLong.MAX_VALUE
nano seconds or an unreasonably large value will disable keepalive. Defaults to infinite.Clients must receive permission from the service owner before enabling this option. Keepalives can increase the load on services and are commonly "invisible" making it hard to notice when they are causing excessive load. Clients are strongly encouraged to use only as small of a value as necessary.
- Throws:
UnsupportedOperationException
- if unsupported- Since:
- 1.7.0
- See Also:
-
keepAliveTimeout
Sets the time waiting for read activity after sending a keepalive ping. If the time expires without any read activity on the connection, the connection is considered dead. An unreasonably small value might be increased. Defaults to 20 seconds.This value should be at least multiple times the RTT to allow for lost packets.
- Throws:
UnsupportedOperationException
- if unsupported- Since:
- 1.7.0
- See Also:
-
keepAliveWithoutCalls
Sets whether keepalive will be performed when there are no outstanding RPC on a connection. Defaults tofalse
.Clients must receive permission from the service owner before enabling this option. Keepalives on unused connections can easilly accidentally consume a considerable amount of bandwidth and CPU.
idleTimeout()
should generally be used instead of this option.- Throws:
UnsupportedOperationException
- if unsupported- Since:
- 1.7.0
- See Also:
-
maxRetryAttempts
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982") public T maxRetryAttempts(int maxRetryAttempts) Sets the maximum number of retry attempts that may be configured by the service config. If the service config specifies a larger value it will be reduced to this value. Setting this number to zero is not effectively the same asdisableRetry()
because the former does not disable transparent retry.This method may not work as expected for the current release because retry is not fully implemented yet.
- Returns:
- this
- Since:
- 1.11.0
-
maxHedgedAttempts
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982") public T maxHedgedAttempts(int maxHedgedAttempts) Sets the maximum number of hedged attempts that may be configured by the service config. If the service config specifies a larger value it will be reduced to this value.This method may not work as expected for the current release because retry is not fully implemented yet.
- Returns:
- this
- Since:
- 1.11.0
-
retryBufferSize
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982") public T retryBufferSize(long bytes) Sets the retry buffer size in bytes. If the buffer limit is exceeded, no RPC could retry at the moment, and in hedging case all hedges but one of the same RPC will cancel. The implementation may only estimate the buffer size being used rather than count the exact physical memory allocated. The method does not have any effect if retry is disabled by the client.This method may not work as expected for the current release because retry is not fully implemented yet.
- Returns:
- this
- Since:
- 1.10.0
-
perRpcBufferLimit
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3982") public T perRpcBufferLimit(long bytes) Sets the per RPC buffer limit in bytes used for retry. The RPC is not retriable if its buffer limit is exceeded. The implementation may only estimate the buffer size being used rather than count the exact physical memory allocated. It does not have any effect if retry is disabled by the client.This method may not work as expected for the current release because retry is not fully implemented yet.
- Returns:
- this
- Since:
- 1.10.0
-
disableRetry
Disables the retry and hedging subsystem provided by the gRPC library. This is designed for the case when users have their own retry implementation and want to avoid their own retry taking place simultaneously with the gRPC library layer retry.- Returns:
- this
- Since:
- 1.11.0
-
enableRetry
Enables the retry and hedging subsystem which will use per-method configuration. If a method is unconfigured, it will be limited to transparent retries, which are safe for non-idempotent RPCs. Service config is ideally provided by the name resolver, but may also be specified viadefaultServiceConfig(java.util.Map<java.lang.String, ?>)
.- Returns:
- this
- Since:
- 1.11.0
-
setBinaryLog
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/4017") public T setBinaryLog(BinaryLog binaryLog) Sets the BinaryLog object that this channel should log to. The channel does not take ownership of the object, and users are responsible for callingCloseable.close()
.- Parameters:
binaryLog
- the object to provide logging.- Returns:
- this
- Since:
- 1.13.0
-
maxTraceEvents
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/4471") public T maxTraceEvents(int maxTraceEvents) Sets the maximum number of channel trace events to keep in the tracer for each channel or subchannel. If set to 0, channel tracing is effectively disabled.- Returns:
- this
- Since:
- 1.13.0
-
proxyDetector
Sets the proxy detector to be used in addresses name resolution. Ifnull
is passed the default proxy detector will be used. For how proxies work in gRPC, please refer to the documentation onProxyDetector
.- Returns:
- this
- Since:
- 1.19.0
-
defaultServiceConfig
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/5189") public T defaultServiceConfig(@Nullable Map<String, ?> serviceConfig) Provides a service config to the channel. The channel will use the default service config when the name resolver provides no service config or if the channel disables lookup service config from name resolver (seedisableServiceConfigLookUp()
). The argumentserviceConfig
is a nested map representing a Json object in the most natural way:Json entry Java Type object Map
array List
string String
number Double
boolean Boolean
null null
If null is passed, then there will be no default service config.
Your preferred JSON parser may not produce results in the format expected. For such cases, you can convert its output. For example, if your parser produces Integers and other Numbers in addition to Double:
@SuppressWarnings("unchecked") private static Object convertNumbers(Object o) { if (o instanceof Map) { ((Map) o).replaceAll((k,v) -> convertNumbers(v)); } else if (o instanceof List) { ((List) o).replaceAll(YourClass::convertNumbers); } else if (o instanceof Number && !(o instanceof Double)) { o = ((Number) o).doubleValue(); } return o; }
- Returns:
- this
- Throws:
IllegalArgumentException
- When the given serviceConfig is invalid or the current version of grpc library can not parse it gracefully. The state of the builder is unchanged if an exception is thrown.- Since:
- 1.20.0
-
disableServiceConfigLookUp
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/5189") public T disableServiceConfigLookUp()Disables service config look-up from the naming system, which is enabled by default.- Returns:
- this
- Since:
- 1.20.0
-
addMetricSink
Adds aMetricSink
for channel to use for configuring and recording metrics.- Returns:
- this
- Since:
- 1.64.0
-
build
Builds a channel using the given parameters.- Since:
- 1.0.0
-
NameResolverProvider
instead, with either the SPI mechanism orNameResolverRegistry.register(io.grpc.NameResolverProvider)
.