Class CachingConnectionFactory
- All Implemented Interfaces:
com.rabbitmq.client.ShutdownListener
,EventListener
,ConnectionFactory
,Aware
,BeanNameAware
,DisposableBean
,InitializingBean
,ApplicationContextAware
,ApplicationEventPublisherAware
,ApplicationListener<ContextClosedEvent>
,Lifecycle
,Phased
,SmartLifecycle
ConnectionFactory
implementation that (when the cache mode is CachingConnectionFactory.CacheMode.CHANNEL
(default)
returns the same Connection from all createConnection()
calls, and ignores calls to Connection.close()
and caches
Channel
.
By default, only one Channel will be cached, with further requested Channels being created and disposed on demand.
Consider raising the "channelCacheSize" value
in case of a high-concurrency
environment.
When the cache mode is CachingConnectionFactory.CacheMode.CONNECTION
, a new (or cached) connection is used for each
createConnection()
;
connections are cached according to the "connectionCacheSize" value
.
Both connections and channels are cached in this mode.
CachingConnectionFactory.CacheMode.CONNECTION
is not compatible with a Rabbit Admin that auto-declares queues etc.
NOTE: This ConnectionFactory requires explicit closing of all Channels obtained from its Connection(s).
This is the usual recommendation for native Rabbit access code anyway. However, with this ConnectionFactory, its use
is mandatory in order to actually allow for Channel reuse. Channel.close()
returns the channel to the
cache, if there is room, or physically closes the channel otherwise.
- Author:
- Mark Pollack, Mark Fisher, Dave Syer, Gary Russell, Artem Bilan, Steve Powell, Will Droste, Leonardo Ferreira
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
The cache mode.static enum
The type of publisher confirms to use.Nested classes/interfaces inherited from class org.springframework.amqp.rabbit.connection.AbstractConnectionFactory
AbstractConnectionFactory.AddressShuffleMode, AbstractConnectionFactory.DefaultChannelCloseLogger
-
Field Summary
Fields inherited from class org.springframework.amqp.rabbit.connection.AbstractConnectionFactory
DEFAULT_CLOSE_TIMEOUT, logger
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ConstructorDescriptionCreate a new CachingConnectionFactory initializing the hostname to be the value returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception.CachingConnectionFactory
(int port) Create a new CachingConnectionFactory given a port on the hostname returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception.CachingConnectionFactory
(com.rabbitmq.client.ConnectionFactory rabbitConnectionFactory) Create a new CachingConnectionFactory for the given target ConnectionFactory.CachingConnectionFactory
(String hostname) Create a new CachingConnectionFactory given a host name.CachingConnectionFactory
(String hostNameArg, int port) Create a new CachingConnectionFactory given a host name and port.Create a new CachingConnectionFactory given aURI
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addConnectionListener
(ConnectionListener listener) void
protected void
closeAndClear
(Collection<ChannelProxy> theChannels) protected void
closeChannels
(Collection<ChannelProxy> theChannels) final Connection
final void
destroy()
Close the underlying shared connection.int
protected ExecutorService
Determine the executor service used for target channels.int
int
getPhase()
Return the cache properties from the underlying publisher sub-factory.boolean
Return true if publisher confirms are enabled.boolean
Return true if publisher returns are enabled.boolean
boolean
Return true if simple publisher confirms are enabled.protected void
reset
(Deque<ChannelProxy> channels, Deque<ChannelProxy> txChannels, Map<com.rabbitmq.client.Channel, ChannelProxy> channelsAwaitingAcks) void
Close the connection(s).void
setCacheMode
(CachingConnectionFactory.CacheMode cacheMode) void
setChannelCacheSize
(int sessionCacheSize) The number of channels to maintain in the cache.void
setChannelCheckoutTimeout
(long channelCheckoutTimeout) Sets the channel checkout timeout.void
setConnectionCacheSize
(int connectionCacheSize) void
setConnectionLimit
(int connectionLimit) Set the connection limit when using cache mode CONNECTION.void
setConnectionListeners
(List<? extends ConnectionListener> listeners) void
setPublisherChannelFactory
(PublisherCallbackChannelFactory publisherChannelFactory) Set the factory to use to createPublisherCallbackChannel
instances.void
Set the confirm type to use; defaultCachingConnectionFactory.ConfirmType.NONE
.void
setPublisherConnectionFactory
(AbstractConnectionFactory publisherConnectionFactory) Set a custom publisher connection factory; the type does not need to be the same as this factory.void
setPublisherReturns
(boolean publisherReturns) void
start()
void
stop()
toString()
Methods inherited from class org.springframework.amqp.rabbit.connection.AbstractConnectionFactory
addChannelListener, clearConnectionListeners, createBareConnection, doSetPublisherConnectionFactory, getAddresses, getApplicationContext, getApplicationEventPublisher, getBeanName, getChannelListener, getCloseTimeout, getConnectionListener, getConnectionNameStrategy, getContextStopped, getDefaultHostName, getExecutorService, getHost, getPort, getPublisherConnectionFactory, getRabbitConnectionFactory, getUsername, getVirtualHost, hasPublisherConnectionFactory, onApplicationEvent, removeConnectionListener, setAddresses, setAddressResolver, setAddressShuffleMode, setApplicationContext, setApplicationEventPublisher, setBeanName, setChannelListeners, setCloseExceptionLogger, setCloseTimeout, setConnectionCreatingBackOff, setConnectionNameStrategy, setConnectionThreadFactory, setConnectionTimeout, setExecutor, setHost, setPassword, setPort, setRecoveryListener, setRequestedHeartBeat, setUri, setUri, setUsername, setVirtualHost, shutdownCompleted
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.context.ApplicationListener
supportsAsyncExecution
Methods inherited from interface com.rabbitmq.client.ShutdownListener
shutdownCompleted
Methods inherited from interface org.springframework.context.SmartLifecycle
isAutoStartup, stop
-
Constructor Details
-
CachingConnectionFactory
public CachingConnectionFactory()Create a new CachingConnectionFactory initializing the hostname to be the value returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception. -
CachingConnectionFactory
Create a new CachingConnectionFactory given a host name.- Parameters:
hostname
- the host name to connect to
-
CachingConnectionFactory
public CachingConnectionFactory(int port) Create a new CachingConnectionFactory given a port on the hostname returned from InetAddress.getLocalHost(), or "localhost" if getLocalHost() throws an exception.- Parameters:
port
- the port number
-
CachingConnectionFactory
Create a new CachingConnectionFactory given a host name and port.- Parameters:
hostNameArg
- the host name to connect toport
- the port number
-
CachingConnectionFactory
Create a new CachingConnectionFactory given aURI
.- Parameters:
uri
- the amqp uri configuring the connection- Since:
- 1.5
-
CachingConnectionFactory
public CachingConnectionFactory(com.rabbitmq.client.ConnectionFactory rabbitConnectionFactory) Create a new CachingConnectionFactory for the given target ConnectionFactory.- Parameters:
rabbitConnectionFactory
- the target ConnectionFactory
-
-
Method Details
-
setPublisherConnectionFactory
public void setPublisherConnectionFactory(@Nullable AbstractConnectionFactory publisherConnectionFactory) Description copied from class:AbstractConnectionFactory
Set a custom publisher connection factory; the type does not need to be the same as this factory.- Overrides:
setPublisherConnectionFactory
in classAbstractConnectionFactory
- Parameters:
publisherConnectionFactory
- the factory.
-
setChannelCacheSize
public void setChannelCacheSize(int sessionCacheSize) The number of channels to maintain in the cache. By default, channels are allocated on demand (unbounded) and this represents the maximum cache size. To limit the available channels, seesetChannelCheckoutTimeout(long)
.- Parameters:
sessionCacheSize
- the channel cache size.- See Also:
-
getChannelCacheSize
public int getChannelCacheSize() -
getCacheMode
-
setCacheMode
-
getConnectionCacheSize
public int getConnectionCacheSize() -
setConnectionCacheSize
public void setConnectionCacheSize(int connectionCacheSize) -
setConnectionLimit
public void setConnectionLimit(int connectionLimit) Set the connection limit when using cache mode CONNECTION. When the limit is reached and there are no idle connections, thechannelCheckoutTimeLimit
is used to wait for a connection to become idle.- Parameters:
connectionLimit
- the limit.- Since:
- 1.5.5
-
isPublisherConfirms
public boolean isPublisherConfirms()Description copied from interface:ConnectionFactory
Return true if publisher confirms are enabled.- Specified by:
isPublisherConfirms
in interfaceConnectionFactory
- Returns:
- publisherConfirms.
-
isPublisherReturns
public boolean isPublisherReturns()Description copied from interface:ConnectionFactory
Return true if publisher returns are enabled.- Specified by:
isPublisherReturns
in interfaceConnectionFactory
- Returns:
- publisherReturns.
-
setPublisherReturns
public void setPublisherReturns(boolean publisherReturns) -
isSimplePublisherConfirms
public boolean isSimplePublisherConfirms()Description copied from interface:ConnectionFactory
Return true if simple publisher confirms are enabled.- Specified by:
isSimplePublisherConfirms
in interfaceConnectionFactory
- Returns:
- simplePublisherConfirms
-
setPublisherConfirmType
Set the confirm type to use; defaultCachingConnectionFactory.ConfirmType.NONE
.- Parameters:
confirmType
- the confirm type.- Since:
- 2.2
-
setChannelCheckoutTimeout
public void setChannelCheckoutTimeout(long channelCheckoutTimeout) Sets the channel checkout timeout. When greater than 0, enables channel limiting in that thechannelCacheSize
becomes the total number of available channels per connection rather than a simple cache size. Note that changing thechannelCacheSize
does not affect the limit on existing connection(s), invokedestroy()
to cause a new connection to be created with the new limit.Since 1.5.5, also applies to getting a connection when the cache mode is CONNECTION.
- Parameters:
channelCheckoutTimeout
- the timeout in milliseconds; default 0 (channel limiting not enabled).- Since:
- 1.4.2
- See Also:
-
setPublisherChannelFactory
Set the factory to use to createPublisherCallbackChannel
instances.- Parameters:
publisherChannelFactory
- the factory.- Since:
- 2.1.6
-
getPhase
public int getPhase()- Specified by:
getPhase
in interfacePhased
- Specified by:
getPhase
in interfaceSmartLifecycle
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
start
public void start() -
stop
public void stop() -
isRunning
public boolean isRunning() -
setConnectionListeners
- Overrides:
setConnectionListeners
in classAbstractConnectionFactory
-
addConnectionListener
- Specified by:
addConnectionListener
in interfaceConnectionFactory
- Overrides:
addConnectionListener
in classAbstractConnectionFactory
-
createConnection
- Specified by:
createConnection
in interfaceConnectionFactory
- Throws:
AmqpException
-
destroy
public final void destroy()Close the underlying shared connection. UseresetConnection()
to close the connection while the application is still running.As this bean implements DisposableBean, a bean factory will automatically invoke this on destruction of its cached singletons.
If called after the context is closed, the connection factory can no longer server up connections.
- Specified by:
destroy
in interfaceDisposableBean
- Overrides:
destroy
in classAbstractConnectionFactory
-
resetConnection
public void resetConnection()Close the connection(s). This will impact any in-process operations. New connection(s) will be created on demand after this method returns. This might be used to force a reconnect to the primary broker after failing over to a secondary broker.- Specified by:
resetConnection
in interfaceConnectionFactory
-
reset
protected void reset(Deque<ChannelProxy> channels, Deque<ChannelProxy> txChannels, Map<com.rabbitmq.client.Channel, ChannelProxy> channelsAwaitingAcks) -
closeAndClear
-
closeChannels
-
getCacheProperties
-
getPublisherConnectionFactoryCacheProperties
Return the cache properties from the underlying publisher sub-factory.- Returns:
- the properties.
- Since:
- 2.0.2
-
getChannelsExecutor
Determine the executor service used for target channels.- Returns:
- specified executor service otherwise the default one is created and returned.
- Since:
- 1.7.9
-
toString
- Overrides:
toString
in classAbstractConnectionFactory
-