Class StreamEnvironmentBuilder
- All Implemented Interfaces:
EnvironmentBuilder
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.rabbitmq.stream.EnvironmentBuilder
EnvironmentBuilder.NettyConfiguration, EnvironmentBuilder.TlsConfiguration
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddressResolver
(AddressResolver addressResolver) AnAddressResolver
to potentially change resolved node address to connect to.build()
Create theEnvironment
instance.chunkChecksum
(ChunkChecksum chunkChecksum) The checksum strategy used for chunk checksum.clientProperties
(Map<String, String> clientProperties) Custom client properties to add to default client properties.clientProperty
(String key, String value) Add a custom client properties to default client properties.The AMQP 1.0 codec used to encode and decode AMQP 1.0 messages.compressionCodecFactory
(CompressionCodecFactory compressionCodecFactory) Compression codec factory to use for compression in sub-entry batching.credentialsProvider
(CredentialsProvider credentialsProvider) TheCredentialsProvider
to use.forceReplicaForConsumers
(boolean forceReplica) Flag to force the connection to a stream replica for consumers.The host to connect to.Informational ID for this environment instance.lazyInitialization
(boolean lazy) To delay the connection opening until necessary.maxConsumersByConnection
(int maxConsumersByConnection) The maximum number of consumers allocated to a single connection.maxProducersByConnection
(int maxProducersByConnection) The maximum number of producers allocated to a single connection.maxTrackingConsumersByConnection
(int maxTrackingConsumersByConnection) The maximum number of tracking consumers allocated to a single connection.metricsCollector
(MetricsCollector metricsCollector) Set up aMetricsCollector
.netty()
Helper to configure netty.observationCollector
(ObservationCollector<?> observationCollector) Set up anObservationCollector
.The password to use.port
(int port) The port to use to connect.recoveryBackOffDelayPolicy
(BackOffDelayPolicy recoveryBackOffDelayPolicy) TheBackOffDelayPolicy
to use for connection recovery.requestedHeartbeat
(Duration requestedHeartbeat) The heartbeat to request.requestedMaxFrameSize
(int requestedMaxFrameSize) The maximum frame size to request.rpcTimeout
(Duration timeout) Timeout for RPC calls.saslConfiguration
(SaslConfiguration saslConfiguration) The SASL configuration to use.scheduledExecutorService
(ScheduledExecutorService scheduledExecutorService) Set theScheduledExecutorService
used to: Schedule producers batch sending Handle connection recovery Handle topology updatetls()
Enable and configure TLS.topologyUpdateBackOffDelayPolicy
(BackOffDelayPolicy topologyUpdateBackOffDelayPolicy) TheBackOffDelayPolicy
to use for topology recovery.The URI of a node to connect to.A list of URIs of nodes of the same cluster to use to connect to.The username to use.virtualHost
(String virtualHost) The virtual host to connect to.
-
Constructor Details
-
StreamEnvironmentBuilder
public StreamEnvironmentBuilder()
-
-
Method Details
-
uri
Description copied from interface:EnvironmentBuilder
The URI of a node to connect to.URI must be of the form
rabbitmq-stream://guest:guest@localhost:5552/%2f
.- Specified by:
uri
in interfaceEnvironmentBuilder
- Parameters:
uriString
-- Returns:
- this builder instance
-
uris
Description copied from interface:EnvironmentBuilder
A list of URIs of nodes of the same cluster to use to connect to.URIs must be of the form
rabbitmq-stream://guest:guest@localhost:5552/%2f
.- Specified by:
uris
in interfaceEnvironmentBuilder
- Parameters:
uris
-- Returns:
- this builder instance
-
host
Description copied from interface:EnvironmentBuilder
The host to connect to.- Specified by:
host
in interfaceEnvironmentBuilder
- Parameters:
host
-- Returns:
- this builder instance
-
port
Description copied from interface:EnvironmentBuilder
The port to use to connect.- Specified by:
port
in interfaceEnvironmentBuilder
- Parameters:
port
-- Returns:
- this builder instance
-
codec
Description copied from interface:EnvironmentBuilder
The AMQP 1.0 codec used to encode and decode AMQP 1.0 messages.- Specified by:
codec
in interfaceEnvironmentBuilder
- Parameters:
codec
-- Returns:
- this builder instance
-
compressionCodecFactory
Description copied from interface:EnvironmentBuilder
Compression codec factory to use for compression in sub-entry batching.- Specified by:
compressionCodecFactory
in interfaceEnvironmentBuilder
- Parameters:
compressionCodecFactory
-- Returns:
- this builder instance
- See Also:
-
id
Description copied from interface:EnvironmentBuilder
Informational ID for this environment instance.This is currently used as a prefix for connection names. The broker does not enforce any kind of uniqueness based on this property. Default to
rabbitmq-stream
.- Specified by:
id
in interfaceEnvironmentBuilder
- Parameters:
id
-- Returns:
- this builder instance
-
rpcTimeout
Description copied from interface:EnvironmentBuilder
Timeout for RPC calls.Default is 10 seconds.
- Specified by:
rpcTimeout
in interfaceEnvironmentBuilder
- Parameters:
timeout
-- Returns:
- this builder instance
-
saslConfiguration
Description copied from interface:EnvironmentBuilder
The SASL configuration to use.- Specified by:
saslConfiguration
in interfaceEnvironmentBuilder
- Parameters:
saslConfiguration
-- Returns:
- this builder instance
- See Also:
-
credentialsProvider
Description copied from interface:EnvironmentBuilder
TheCredentialsProvider
to use.- Specified by:
credentialsProvider
in interfaceEnvironmentBuilder
- Parameters:
credentialsProvider
-- Returns:
- this builder instance
- See Also:
-
username
Description copied from interface:EnvironmentBuilder
The username to use.- Specified by:
username
in interfaceEnvironmentBuilder
- Parameters:
username
-- Returns:
- this builder instance
-
password
Description copied from interface:EnvironmentBuilder
The password to use.- Specified by:
password
in interfaceEnvironmentBuilder
- Parameters:
password
-- Returns:
- this builder instance
-
virtualHost
Description copied from interface:EnvironmentBuilder
The virtual host to connect to.- Specified by:
virtualHost
in interfaceEnvironmentBuilder
- Parameters:
virtualHost
-- Returns:
- this builder instance
-
requestedHeartbeat
Description copied from interface:EnvironmentBuilder
The heartbeat to request.Default is 60 seconds.
- Specified by:
requestedHeartbeat
in interfaceEnvironmentBuilder
- Parameters:
requestedHeartbeat
-- Returns:
- this builder instance
- See Also:
-
requestedMaxFrameSize
Description copied from interface:EnvironmentBuilder
The maximum frame size to request.Default is 1048576.
- Specified by:
requestedMaxFrameSize
in interfaceEnvironmentBuilder
- Parameters:
requestedMaxFrameSize
-- Returns:
- this builder instance
- See Also:
-
chunkChecksum
Description copied from interface:EnvironmentBuilder
The checksum strategy used for chunk checksum.The default is CRC32 based on JDK implementation.
- Specified by:
chunkChecksum
in interfaceEnvironmentBuilder
- Parameters:
chunkChecksum
-- Returns:
- this builder instance
-
clientProperties
Description copied from interface:EnvironmentBuilder
Custom client properties to add to default client properties.- Specified by:
clientProperties
in interfaceEnvironmentBuilder
- Parameters:
clientProperties
-- Returns:
- this builder instance
-
clientProperty
Description copied from interface:EnvironmentBuilder
Add a custom client properties to default client properties.- Specified by:
clientProperty
in interfaceEnvironmentBuilder
- Parameters:
key
-value
-- Returns:
- this builder instance
-
metricsCollector
Description copied from interface:EnvironmentBuilder
Set up aMetricsCollector
.- Specified by:
metricsCollector
in interfaceEnvironmentBuilder
- Parameters:
metricsCollector
-- Returns:
- this builder instance
-
scheduledExecutorService
public EnvironmentBuilder scheduledExecutorService(ScheduledExecutorService scheduledExecutorService) Description copied from interface:EnvironmentBuilder
Set theScheduledExecutorService
used to:- Schedule producers batch sending
- Handle connection recovery
- Handle topology update
- Specified by:
scheduledExecutorService
in interfaceEnvironmentBuilder
- Parameters:
scheduledExecutorService
- the service to use- Returns:
- this builder instance
-
recoveryBackOffDelayPolicy
Description copied from interface:EnvironmentBuilder
TheBackOffDelayPolicy
to use for connection recovery.The default is a fixed delay of 5 seconds.
- Specified by:
recoveryBackOffDelayPolicy
in interfaceEnvironmentBuilder
- Parameters:
recoveryBackOffDelayPolicy
-- Returns:
- this builder instance
-
topologyUpdateBackOffDelayPolicy
public EnvironmentBuilder topologyUpdateBackOffDelayPolicy(BackOffDelayPolicy topologyUpdateBackOffDelayPolicy) Description copied from interface:EnvironmentBuilder
TheBackOffDelayPolicy
to use for topology recovery.Topology recovery can kick in when streams leaders and replicas move from nodes to nodes in the cluster.
The default is a first delay of 5 seconds, then 1 second for the next attempts.
- Specified by:
topologyUpdateBackOffDelayPolicy
in interfaceEnvironmentBuilder
- Parameters:
topologyUpdateBackOffDelayPolicy
-- Returns:
- this builder instance
-
addressResolver
Description copied from interface:EnvironmentBuilder
AnAddressResolver
to potentially change resolved node address to connect to.Applications can use this abstraction to make sure connection attempts ignore metadata hints and always go to a single point like a load balancer.
The default implementation does not perform any logic, it just returns the passed-in address.
The default implementation is overridden automatically if the following conditions are met: the host to connect to is
localhost
, the user isguest
, and no address resolver has been provided. The client will then always tries to connect tolocalhost
to facilitate local development. Just provide a pass-through address resolver to avoid this behavior, e.g.:Environment.builder() .addressResolver(address -> address) .build();
- Specified by:
addressResolver
in interfaceEnvironmentBuilder
- Parameters:
addressResolver
-- Returns:
- this builder instance
- See Also:
-
maxProducersByConnection
Description copied from interface:EnvironmentBuilder
The maximum number of producers allocated to a single connection.Default is 256, which is the maximum value.
The limit may not be strictly enforced in case of too many concurrent creations.
- Specified by:
maxProducersByConnection
in interfaceEnvironmentBuilder
- Parameters:
maxProducersByConnection
-- Returns:
- this builder instance
-
maxTrackingConsumersByConnection
Description copied from interface:EnvironmentBuilder
The maximum number of tracking consumers allocated to a single connection.Default is 50, which is the maximum value.
The limit may not be strictly enforced in case of too many concurrent creations.
- Specified by:
maxTrackingConsumersByConnection
in interfaceEnvironmentBuilder
- Parameters:
maxTrackingConsumersByConnection
-- Returns:
- this builder instance
-
maxConsumersByConnection
Description copied from interface:EnvironmentBuilder
The maximum number of consumers allocated to a single connection.Default is 256, which is the maximum value.
The limit may not be strictly enforced in case of too many concurrent creations.
- Specified by:
maxConsumersByConnection
in interfaceEnvironmentBuilder
- Parameters:
maxConsumersByConnection
-- Returns:
- this builder instance
-
lazyInitialization
Description copied from interface:EnvironmentBuilder
To delay the connection opening until necessary.No connection will be open before it is necessary (for stream management or producer/consumer creation).
Default is false.
- Specified by:
lazyInitialization
in interfaceEnvironmentBuilder
- Parameters:
lazy
-- Returns:
- this builder instance
-
forceReplicaForConsumers
Description copied from interface:EnvironmentBuilder
Flag to force the connection to a stream replica for consumers.The library will always prefer to connect to a stream replica to consume from, but it will fall back to the stream leader if no replica is available. This is the default behavior. Set this flag to
true
to make the library wait for a replica to become available if only the stream leader is available. This can lead to longer recovery time but help to offload a stream leader and let it deal only with write requests.Note the library performs only 5 attempts to locate a replica before falling back to the leader when the flag is set to
true
.The
EnvironmentBuilder.recoveryBackOffDelayPolicy(BackOffDelayPolicy)
andEnvironmentBuilder.topologyUpdateBackOffDelayPolicy(BackOffDelayPolicy)
policies control the time between attempts.Do not set this flag to
true
when streams have only 1 member (the leader), e.g. for local development.Default is false.
- Specified by:
forceReplicaForConsumers
in interfaceEnvironmentBuilder
- Parameters:
forceReplica
- whether to force the connection to a replica or not- Returns:
- this builder instance
- See Also:
-
tls
Description copied from interface:EnvironmentBuilder
Enable and configure TLS.- Specified by:
tls
in interfaceEnvironmentBuilder
- Returns:
- the TLS configuration helper
-
netty
Description copied from interface:EnvironmentBuilder
Helper to configure netty.- Specified by:
netty
in interfaceEnvironmentBuilder
- Returns:
- Netty configuration helper
-
observationCollector
Description copied from interface:EnvironmentBuilder
Set up anObservationCollector
.- Specified by:
observationCollector
in interfaceEnvironmentBuilder
- Parameters:
observationCollector
-- Returns:
- this builder instance
-
build
Description copied from interface:EnvironmentBuilder
Create theEnvironment
instance.- Specified by:
build
in interfaceEnvironmentBuilder
- Returns:
- the configured environment
-