Replaying from the Replay Log
This section describes how a client application should handle an event broker initiated message replay, and how a client application may initiate a message replay entirely on its own behalf.
If you're not familiar with Message Replay, take a look at Message Replay for a high-level introduction, and for detailed information on how to configure and use the feature on the event broker have a look at Message Replay Configuration.
Also, there's a Solace JCSMP tutorial that shows you how a client can initiate and process a replay.
Event Broker Initiated Replay
If Flow Reconnect is enabled, when an event broker initiates message replay on an endpoint, whether it's a queue or a durable topic endpoint, with a client bound to it, the first thing the client application will see is an event broker unbind of its guaranteed message flow. The API specific flow event handler will receive a FLOW_RECONNECTING
event. If the event subcode is REPLAY_STARTED
, then this indicates that the event broker has initiated a replay on the flow.
The API then automatically attempts to reconnect the flow based on this event subcode. If the flow is successfully reconnected, the API generates a FLOW_RECONNECTED
event. Once this event is generated, the application can then expect to start receiving replayed messages that it may, or may not, have seen before, depending on why the replay was initiated.
For more information, refer to Flow Reconnect.
If Flow Reconnect is disabled or not supported in the API version, when an event broker initiates message replay on an endpoint, whether it's a queue or a durable topic endpoint, with a client bound to it, the first thing the client application will see is an event broker unbind of its guaranteed message flow. The API specific flow event handler will receive a FLOW_DOWN
event. If the event subCode is REPLAY_STARTED
, then this indicates that the event broker has initiated a replay on the flow.
Flow reconnection with the Node.js API
With the Node.js API, the application may choose to call MessageConsumer.connect()
to reconnect the flow. The application can then expect to start receiving replayed messages that it may, or may not, have seen before, depending on why the replay was initiated.
Flow reconnection with other APIs
For all other APIs, if the application wishes to reconnect the flow, it must disconnect the encompassing session to connect the session again. The flow will automatically rebind when the session is reconnected. The application can then expect to start receiving replayed messages that it may, or may not, have seen before, depending on why the replay was initiated.
Client Initiated Replay
A client can initiate message replay for a variety of reasons including that it may be able to detect that it needs to replay messages from the replay log, or there may be a start-up condition in the client that requires that messages are replayed from a certain point-in-time.
Message replay may be initiated by a client whenever it binds to a queue or topic endpoint. You may want to consult your API's reference documentation for specific details on how to bind to a queue or topic endpoint. When creating a guaranteed message receiver, either flow or consumer, the application may specify a replay start location, to indicate the starting point of the message replay.
The different types of replay starting points supported are:
-
Replay from the beginning of the replay log.
-
Replay all messages starting from a specified timestamp.
-
Replay all messages after a specified replication group message ID.
PubSub+ Messaging API | Use |
---|---|
JCSMP |
ConsumerFlowProperties.setReplayStartLocation(...) |
Java RTO |
FlowHandle.PROPERTIES.REPLAY_START_LOCATION |
C |
SOLCLIENT_FLOW_PROP_ REPLAY_START_LOCATION |
.NET |
FlowProperties.ReplayStartLocationEx |
Javascript and Node.js |
MessageConsumerProperties.replayStartLocation |
Consult your API's reference documentation for specific details on how to specify these different replay starting points.
You should keep in mind that replay attempts from a timestamp earlier than when the replay log was created will fail.
When the flow is successfully bound, it will receive all messages from the replay log starting from the specified replay start location.
Restrictions on client initiated replays
- Not supported on non-exclusive endpoints.
- Can't be initiated from a non-active flow.
- Can't be initiated on a browser flow.
- Can't be done using the JMS API.
If your application wishes to replay messages for a certain topic to a queue
When connecting to a topic-endpoint, the topic to be replayed from the replay log is set in the flow properties when the flow is created. If connecting to a queue, the messages published to the queue, that match subscriptions that exist on the queue prior to creating a flow, will be replayed. If the application wishes to replay messages for a certain topic to a queue, it must be sure to add a subscription to the queue before connecting the flow.
Replay failure
If a message replay fails, the event broker closes the client's flow, and the application will be notified via a flow down event.
PubSub+ Messaging API | Use |
---|---|
JCSMP |
FlowEvent.FLOW_DOWN |
Java RTO |
SolEnum.FlowEventCode.DOWN_ERROR |
C |
SOLCLIENT_FLOW_EVENT_DOWN_ERROR |
.NET |
FlowEvent.DownError |
Javascript and Node.js |
MessageConsumerEventName.DOWN_ERROR |
Refer to your API's documentation for the different subcodes that could be received.