2014-12-11 07:17:29 -05:00
|
|
|
# Client Reconnection and Session Reattachment
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
Apache ActiveMQ Artemis clients can be configured to automatically reconnect or
|
2014-12-04 10:25:29 -05:00
|
|
|
re-attach to the server in the event that a failure is detected in the
|
|
|
|
connection between the client and the server.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## 100% Transparent session re-attachment
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
If the failure was due to some transient failure such as a temporary
|
|
|
|
network failure, and the target server was not restarted, then the
|
|
|
|
sessions will still be existent on the server, assuming the client
|
2014-12-11 07:17:29 -05:00
|
|
|
hasn't been disconnected for more than connection-ttl [Detecting Dead Connections](connection-ttl.md)
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
In this scenario, Apache ActiveMQ Artemis will automatically re-attach the client
|
2014-12-04 10:25:29 -05:00
|
|
|
sessions to the server sessions when the connection reconnects. This is
|
|
|
|
done 100% transparently and the client can continue exactly as if
|
|
|
|
nothing had happened.
|
|
|
|
|
|
|
|
The way this works is as follows:
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
As Apache ActiveMQ Artemis clients send commands to their servers they store each sent
|
2014-12-04 10:25:29 -05:00
|
|
|
command in an in-memory buffer. In the case that connection failure
|
|
|
|
occurs and the client subsequently reattaches to the same server, as
|
|
|
|
part of the reattachment protocol the server informs the client during
|
|
|
|
reattachment with the id of the last command it successfully received
|
|
|
|
from that client.
|
|
|
|
|
|
|
|
If the client has sent more commands than were received before failover
|
|
|
|
it can replay any sent commands from its buffer so that the client and
|
2017-03-09 11:59:09 -05:00
|
|
|
server can reconcile their states.Ac
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The size of this buffer is configured by the `ConfirmationWindowSize`
|
|
|
|
parameter, when the server has received `ConfirmationWindowSize` bytes
|
|
|
|
of commands and processed them it will send back a command confirmation
|
|
|
|
to the client, and the client can then free up space in the buffer.
|
|
|
|
|
|
|
|
If you are using JMS and you're using the JMS service on the server to
|
|
|
|
load your JMS connection factory instances into JNDI then this parameter
|
2015-01-20 10:54:49 -05:00
|
|
|
can be configured in the jms configuration using the element
|
2015-02-25 08:37:19 -05:00
|
|
|
`confirmationWindowSize` a. If you're using JMS but not using JNDI
|
2014-12-04 10:25:29 -05:00
|
|
|
then you can set these values directly on the
|
|
|
|
`ActiveMQConnectionFactory` instance using the appropriate setter
|
|
|
|
method.
|
|
|
|
|
|
|
|
If you're using the core API you can set these values directly on the
|
|
|
|
`ServerLocator` instance using the appropriate setter method.
|
|
|
|
|
|
|
|
The window is specified in bytes.
|
|
|
|
|
|
|
|
Setting this parameter to `-1` disables any buffering and prevents any
|
|
|
|
re-attachment from occurring, forcing reconnect instead. The default
|
|
|
|
value for this parameter is `-1`. (Which means by default no auto
|
|
|
|
re-attachment will occur)
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Session reconnection
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Alternatively, the server might have actually been restarted after
|
|
|
|
crashing or being stopped. In this case any sessions will no longer be
|
|
|
|
existent on the server and it won't be possible to 100% transparently
|
|
|
|
re-attach to them.
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
In this case, Apache ActiveMQ Artemis will automatically reconnect the connection and
|
2014-12-04 10:25:29 -05:00
|
|
|
*recreate* any sessions and consumers on the server corresponding to the
|
|
|
|
sessions and consumers on the client. This process is exactly the same
|
|
|
|
as what happens during failover onto a backup server.
|
|
|
|
|
|
|
|
Client reconnection is also used internally by components such as core
|
|
|
|
bridges to allow them to reconnect to their target servers.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
Please see the section on failover [Automatic Client Failover](ha.md) to get a full understanding of how
|
2014-12-04 10:25:29 -05:00
|
|
|
transacted and non-transacted sessions are reconnected during
|
|
|
|
failover/reconnect and what you need to do to maintain *once and only
|
|
|
|
once*delivery guarantees.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Configuring reconnection/reattachment attributes
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Client reconnection is configured using the following parameters:
|
|
|
|
|
2015-02-25 08:37:19 -05:00
|
|
|
- `retryInterval`. This optional parameter determines the period in
|
2014-12-04 10:25:29 -05:00
|
|
|
milliseconds between subsequent reconnection attempts, if the
|
|
|
|
connection to the target server has failed. The default value is
|
|
|
|
`2000` milliseconds.
|
|
|
|
|
2015-02-25 08:37:19 -05:00
|
|
|
- `retryIntervalMultiplier`. This optional parameter determines
|
2014-12-04 10:25:29 -05:00
|
|
|
determines a multiplier to apply to the time since the last retry to
|
|
|
|
compute the time to the next retry.
|
|
|
|
|
|
|
|
This allows you to implement an *exponential backoff* between retry
|
|
|
|
attempts.
|
|
|
|
|
|
|
|
Let's take an example:
|
|
|
|
|
2015-02-25 08:37:19 -05:00
|
|
|
If we set `retryInterval` to `1000` ms and we set
|
|
|
|
`retryIntervalMultiplier` to `2.0`, then, if the first reconnect
|
2014-12-04 10:25:29 -05:00
|
|
|
attempt fails, we will wait `1000` ms then `2000` ms then `4000` ms
|
|
|
|
between subsequent reconnection attempts.
|
|
|
|
|
|
|
|
The default value is `1.0` meaning each reconnect attempt is spaced
|
|
|
|
at equal intervals.
|
|
|
|
|
2015-02-25 08:37:19 -05:00
|
|
|
- `maxRetryInterval`. This optional parameter determines the maximum
|
2014-12-04 10:25:29 -05:00
|
|
|
retry interval that will be used. When setting
|
2015-02-25 08:37:19 -05:00
|
|
|
`retryIntervalMultiplier` it would otherwise be possible that
|
2014-12-04 10:25:29 -05:00
|
|
|
subsequent retries exponentially increase to ridiculously large
|
|
|
|
values. By setting this parameter you can set an upper limit on that
|
|
|
|
value. The default value is `2000` milliseconds.
|
|
|
|
|
2015-02-25 08:37:19 -05:00
|
|
|
- `reconnectAttempts`. This optional parameter determines the total
|
2014-12-04 10:25:29 -05:00
|
|
|
number of reconnect attempts to make before giving up and shutting
|
|
|
|
down. A value of `-1` signifies an unlimited number of attempts. The
|
2017-08-02 20:26:49 -04:00
|
|
|
default value is `-1`.
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
If you're using JMS and you're using JNDI on the client to look up your
|
|
|
|
JMS connection factory instances then you can specify these parameters
|
|
|
|
in the JNDI context environment in, e.g. `jndi.properties`:
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
java.naming.factory.initial = ActiveMQInitialContextFactory
|
2015-02-25 08:37:19 -05:00
|
|
|
connection.ConnectionFactory=tcp://localhost:61616?retryInterval=1000&retryIntervalMultiplier=1.5&maxRetryInterval=60000&reconnectAttempts=1000
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
If you're using JMS, but instantiating your JMS connection factory
|
|
|
|
directly, you can specify the parameters using the appropriate setter
|
|
|
|
methods on the `ActiveMQConnectionFactory` immediately after creating
|
|
|
|
it.
|
|
|
|
|
|
|
|
If you're using the core API and instantiating the `ServerLocator`
|
|
|
|
instance directly you can also specify the parameters using the
|
|
|
|
appropriate setter methods on the `ServerLocator` immediately after
|
|
|
|
creating it.
|
|
|
|
|
|
|
|
If your client does manage to reconnect but the session is no longer
|
|
|
|
available on the server, for instance if the server has been restarted
|
|
|
|
or it has timed out, then the client won't be able to re-attach, and any
|
|
|
|
`ExceptionListener` or `FailureListener` instances registered on the
|
|
|
|
connection or session will be called.
|
|
|
|
|
|
|
|
ExceptionListeners and SessionFailureListeners
|
|
|
|
==============================================
|
|
|
|
|
|
|
|
Please note, that when a client reconnects or re-attaches, any
|
|
|
|
registered JMS `ExceptionListener` or core API `SessionFailureListener`
|
|
|
|
will be called.
|