2014-12-11 07:17:29 -05:00
|
|
|
# Duplicate Message Detection
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
Apache ActiveMQ Artemis includes powerful automatic duplicate message detection,
|
2014-12-04 10:25:29 -05:00
|
|
|
filtering out duplicate messages without you having to code your own
|
|
|
|
fiddly duplicate detection logic at the application level. This chapter
|
2015-04-27 17:32:30 -04:00
|
|
|
will explain what duplicate detection is, how Apache ActiveMQ Artemis uses it and how
|
2014-12-04 10:25:29 -05:00
|
|
|
and where to configure it.
|
|
|
|
|
|
|
|
When sending messages from a client to a server, or indeed from a server
|
|
|
|
to another server, if the target server or connection fails sometime
|
|
|
|
after sending the message, but before the sender receives a response
|
|
|
|
that the send (or commit) was processed successfully then the sender
|
|
|
|
cannot know for sure if the message was sent successfully to the
|
|
|
|
address.
|
|
|
|
|
|
|
|
If the target server or connection failed after the send was received
|
|
|
|
and processed but before the response was sent back then the message
|
|
|
|
will have been sent to the address successfully, but if the target
|
|
|
|
server or connection failed before the send was received and finished
|
|
|
|
processing then it will not have been sent to the address successfully.
|
|
|
|
From the senders point of view it's not possible to distinguish these
|
|
|
|
two cases.
|
|
|
|
|
|
|
|
When the server recovers this leaves the client in a difficult
|
|
|
|
situation. It knows the target server failed, but it does not know if
|
|
|
|
the last message reached its destination ok. If it decides to resend the
|
|
|
|
last message, then that could result in a duplicate message being sent
|
|
|
|
to the address. If each message was an order or a trade then this could
|
|
|
|
result in the order being fulfilled twice or the trade being double
|
|
|
|
booked. This is clearly not a desirable situation.
|
|
|
|
|
|
|
|
Sending the message(s) in a transaction does not help out either. If the
|
|
|
|
server or connection fails while the transaction commit is being
|
|
|
|
processed it is also indeterminate whether the transaction was
|
|
|
|
successfully committed or not!
|
|
|
|
|
2015-04-27 17:32:30 -04:00
|
|
|
To solve these issues Apache ActiveMQ Artemis provides automatic duplicate messages
|
2014-12-04 10:25:29 -05:00
|
|
|
detection for messages sent to addresses.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Using Duplicate Detection for Message Sending
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Enabling duplicate message detection for sent messages is simple: you
|
|
|
|
just need to set a special property on the message to a unique value.
|
|
|
|
You can create the value however you like, as long as it is unique. When
|
|
|
|
the target server receives the message it will check if that property is
|
|
|
|
set, if it is, then it will check in its in memory cache if it has
|
|
|
|
already received a message with that value of the header. If it has
|
|
|
|
received a message with the same value before then it will ignore the
|
|
|
|
message.
|
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> Using duplicate detection to move messages between nodes can give you
|
|
|
|
> the same *once and only once* delivery guarantees as if you were using
|
|
|
|
> an XA transaction to consume messages from source and send them to the
|
|
|
|
> target, but with less overhead and much easier configuration than
|
|
|
|
> using XA.
|
|
|
|
|
|
|
|
If you're sending messages in a transaction then you don't have to set
|
|
|
|
the property for *every* message you send in that transaction, you only
|
|
|
|
need to set it once in the transaction. If the server detects a
|
|
|
|
duplicate message for any message in the transaction, then it will
|
|
|
|
ignore the entire transaction.
|
|
|
|
|
|
|
|
The name of the property that you set is given by the value of
|
2015-04-29 13:20:31 -04:00
|
|
|
`org.apache.activemq.artemis.api.core.Message.HDR_DUPLICATE_DETECTION_ID`, which
|
2015-04-14 12:07:26 -04:00
|
|
|
is `_AMQ_DUPL_ID`
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The value of the property can be of type `byte[]` or `SimpleString` if
|
|
|
|
you're using the core API. If you're using JMS it must be a `String`,
|
|
|
|
and its value should be unique. An easy way of generating a unique id is
|
|
|
|
by generating a UUID.
|
|
|
|
|
|
|
|
Here's an example of setting the property using the core API:
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
``` java
|
2015-02-25 08:37:19 -05:00
|
|
|
...
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
ClientMessage message = session.createMessage(true);
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
SimpleString myUniqueID = "This is my unique id"; // Could use a UUID for this
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
message.setStringProperty(HDR_DUPLICATE_DETECTION_ID, myUniqueID);
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
```
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
And here's an example using the JMS API:
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
``` java
|
2015-02-25 08:37:19 -05:00
|
|
|
...
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
Message jmsMessage = session.createMessage();
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
String myUniqueID = "This is my unique id"; // Could use a UUID for this
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
message.setStringProperty(HDR_DUPLICATE_DETECTION_ID.toString(), myUniqueID);
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
...
|
|
|
|
```
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Configuring the Duplicate ID Cache
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The server maintains caches of received values of the
|
2015-04-27 17:32:30 -04:00
|
|
|
`org.apache.activemq.artemis.core.message.impl.HDR_DUPLICATE_DETECTION_ID`
|
2014-12-04 10:25:29 -05:00
|
|
|
property sent to each address. Each address has its own distinct cache.
|
|
|
|
|
|
|
|
The cache is a circular fixed size cache. If the cache has a maximum
|
|
|
|
size of `n` elements, then the `n + 1`th id stored will overwrite the
|
|
|
|
`0`th element in the cache.
|
|
|
|
|
|
|
|
The maximum size of the cache is configured by the parameter
|
2015-04-29 05:30:31 -04:00
|
|
|
`id-cache-size` in `broker.xml`, the default value is
|
2014-12-04 10:25:29 -05:00
|
|
|
`2000` elements.
|
|
|
|
|
|
|
|
The caches can also be configured to persist to disk or not. This is
|
|
|
|
configured by the parameter `persist-id-cache`, also in
|
2015-04-29 05:30:31 -04:00
|
|
|
`broker.xml`. If this is set to `true` then each id will
|
2014-12-04 10:25:29 -05:00
|
|
|
be persisted to permanent storage as they are received. The default
|
|
|
|
value for this parameter is `true`.
|
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> When choosing a size of the duplicate id cache be sure to set it to a
|
|
|
|
> larger enough size so if you resend messages all the previously sent
|
|
|
|
> ones are in the cache not having been overwritten.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Duplicate Detection and Bridges
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Core bridges can be configured to automatically add a unique duplicate
|
|
|
|
id value (if there isn't already one in the message) before forwarding
|
|
|
|
the message to it's target. This ensures that if the target server
|
|
|
|
crashes or the connection is interrupted and the bridge resends the
|
|
|
|
message, then if it has already been received by the target server, it
|
|
|
|
will be ignored.
|
|
|
|
|
|
|
|
To configure a core bridge to add the duplicate id header, simply set
|
|
|
|
the `use-duplicate-detection` to `true` when configuring a bridge in
|
2015-04-29 05:30:31 -04:00
|
|
|
`broker.xml`.
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The default value for this parameter is `true`.
|
|
|
|
|
|
|
|
For more information on core bridges and how to configure them, please
|
2014-12-11 07:17:29 -05:00
|
|
|
see [Core Bridges](core-bridges.md).
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Duplicate Detection and Cluster Connections
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Cluster connections internally use core bridges to move messages
|
|
|
|
reliable between nodes of the cluster. Consequently they can also be
|
|
|
|
configured to insert the duplicate id header for each message they move
|
|
|
|
using their internal bridges.
|
|
|
|
|
|
|
|
To configure a cluster connection to add the duplicate id header, simply
|
|
|
|
set the `use-duplicate-detection` to `true` when configuring a cluster
|
2015-04-29 05:30:31 -04:00
|
|
|
connection in `broker.xml`.
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The default value for this parameter is `true`.
|
|
|
|
|
|
|
|
For more information on cluster connections and how to configure them,
|
2014-12-11 07:17:29 -05:00
|
|
|
please see [Clusters](clusters.md).
|