The Talon Manual

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
div
idtoc
classtoc
div
classtocTitle

In This Section

div
classtocContents

Table of Contents
maxLevel2
indent8px
stylenone

Overview

Excerpt

State Replication is the simpler of Talon's 2 High Availability models. With State Replication Talon replicates changes to state and the outbound messages emitted by your application's message handlers. In the event of failover to a backup or a cold start recovery from a transaction log your application's state is available at the same point where processing left off, and the engine will retransmit any outbound messages that were left in doubt as a result of the failure.

Similarly when recovering from a cold start your application builds back up your application's state by replaying persisted deltas and recovering undelivered outbound messages from the application's transaction log. 

This sections discusses the anatomy of an application using State Replication.

Coding For State Replication

...