Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added code blocks

The document describes principles used for achieving consistency between data copies for transactional caches with enabled persistence. The information is relevant for AI 2.8 release or higher.

Cluster topology

Cluster topology is a an ordered set of client and server nodes at a certain point in time. Each stable topology topolog is assigned a topology version number - monotonically increasing pair of counters (majorVer, minorVer). Major version is used for tracking grid node events such join, left or fail, minor version is used for tracking internal events such cache start or activation. Each node maintains a list of nodes in the topology, and it is the same on all nodes for a given version. It is important to note that each node receives information about the topology change eventulally, that is, independently of the other node at the different timetopology changes at different times, meaning that at any point in time, nodes can see different topology versions, but eventually they will all see the same.

Affinity function

A set of all possible cache keys is divided between into partitions. A partition is an indivisible data set in a grid, which contains a subset of a the total set of keys. The Each key uniquely determines the partition in which it will be stored.

Every change in topology causes the topology - adding or removing nodes -  creates a new topology version. For each new version of the topologyit is necessary to calculate how the distribution of data is distributed among between the nodes in topology. Those nodes Nodes that are responsible for storing data are called affinity nodes. Each node owns a subset of partitions. If a new affinity node has joined then it is necessary to rebalance part of the data to joins the cluster,  the data is rebalanced to accommodate the new node. 

The Affinity function defines the distribution (sharding) of data on the nodes of the grid is defined by affinity function

First, affinity function uniquely defines a partition for a key:  PP(key) = partition.

This is a static property and cannot change at any point in time.

The default implementation of function P is modulo division: abs(key.hashCode) % partitionsCount.

Second, affinity function defines which partitions partition belongs to the which node: F(part) = list(nodes)

At different points in time, a partition can belong to different nodes. Therefore, therefore this is a dynamic property of a partition.

The number of nodes in this list is equal to the number of copies of the partition. Recall that one of the fundamental properties of a grid is its high availability. With the loss of a certain number of nodes, complete data loss does not occur and the load is not interrupted. The need to store multiple copies is due to the implementation of this property.

The first node in the list is the so-called primary node, which has a special coordinating role for all operations on the partition. The remaining are backup nodes. In the event of a loss of a primary node, one of the backup nodes becomes the new primary.

Another important property of affinity function is the uniform distribution of partitions over nodes.

Look at the possible partition distribution between nodes for a topology with 3 three server nodes s1, s2, s3 having 6 containing six partitions 0, 1, 2, 3, 4, 5 .(partition numeration begins with a zero in Ignite).

Function F could produce an assignment of nodes to each partition, which may look something like this (in the ideal world):

F(0) = s1, s2, s3

F(1) = s2, s3, s1

F(2) = s3, s1, s2

F(3) = s1, s2, s3

F(4) = s2, s3, s1

F(5) = s3, s1, s2

First The first node in the list corresponds to the primary node, others and other nodes are backups. Only list prefix equal in size to owners count is used, other nodes are ignored. Only those nodes that belong to the prefix list with the length of backups + 1 are used for data placement, others are ignored for partitioned cache.

In a real scenario, the results might not be so ideal because of hash randomization, causing some nodes to have slightly more partitions than In real life results might not be so ideal because of hash randomization causing some nodes to have slightly more partitions then others. It depends on total partitions counter count - the more the total partitions count, the more uniform is the assignment.

The default implementation for function F uses the rendezvous hashing algorithm algorithm https://en.wikipedia.org/wiki/Rendezvous_hashing

Due to the implementation of these properties of affinity function, linear scalability is achieved when adding new nodes to the grid.

Rebalancing

Rebalancing - a is the  procedure for exchanging data between nodes to ensure uniform distribution of data (redistribution of data between nodes) according to affinity assignment [1] and to ensure data consistency if copies diverge [2].

[1] Affinity based rebalancing

In the first case, the reason for the data rebalancing is a change in the list of nodes - owners of the partition. If a new node has joined joins the topology, then part of the partitions will be reassigned to it due to the property of affinity function property of the that ensures uniform distribution of partitions among between the nodes. If the node is left then the leaves the topology, then rebalancing will be triggered to ensure the availability of the required configured number of copies of the a partition in the grid. Such kind of rebalancing can only happen when the baseline is changed.

For example, let's consider adding a new node - s4 to the topology. The assignment will look like:

F(0) = s1, s2, s3, s4

F(1) = s2, s3, s4, s1

F(2) = s3, s4, s1, s2

F(3) = s4, s1, s2, s3

F(4) = s1, s2, s3, s4

F(5) = s2, s3, s4, s1

Node s4 will own all 6 partitions and will load them during rebalancing.

[2] Updates counter based rebalancing.

In the second case which is relevant when baseline is not changed, rebalancing is used to restore the consistency of the data if the node was absent for some time in the topology under the load. This might happen if node is crashed for example.can happen in case of a node crash.When the node re-joins the topology, it will have stale data, and the a partition update counter will be analyzed to determine how much the partitions partition have “lagged” from in comparison to other copies.

Depending on how strong much the partitions are lagging behind, the second type of rebalance rebalancing can use the write-ahead log as a data source for updates history. In this case, the rebalancing can be performed without complete reloading of the partition and . Such type of rebalancing is called “historical”.

Another scenario for the occurrence of [2] is the activation of the grid having nodes in topology with nodes  containing stale data.

Technically rebalancing is the exchange of supply and demand messages between nodes. A demand message is sent from the node where partition has stale data or missing to the node with that has the actual data. Supply A supply message containing data is send sent in response to the demand message. After processing a the  supply message, the next demand message is send sent, and so on, until there is nothing more to rebalance. We will look at this later in detailsmore detail.

Update counter structure

Currently three , different implementations of update counter logic exist : for persistent mode , and for in-memory mode and for MVCC mode.. In this article we will only look at former. The main difference with latter is ability to track updates that are  applied out of order.

Each update to a partition receives a sequential number for a purpose of ensuring data consistency between copies. A special structure called called partition update counter is used to assign and increment update counters.

Partition A partition update counter has the following structure:

Code Block
languagejava
/** Low watermark. */

...


private final AtomicLong cntr = new AtomicLong();

Low watermark , or update counter is used to track sequential updates. It is only incremented when the corresponding update is recorded to a durable storage, and no missed updates are exist with lesser counter value.

For example, LWM value=5 means what all updates with assigned counters 1, 2, 3, 4, 5 were applied to WAL.

Code Block
languagejava
/** High watermark. */

...


private final AtomicLong reserveCntr = new AtomicLong();

High

...

watermark

...

or

...

reservation

...

counter

...

is

...

incremented

...

for

...

each

...

pending

...

update,

...

which

...

even

...

not

...

guaranteed

...

to

...

succeed.

...

Reservation

...

counter

...

is

...

assigned

...

during

...

tx

...

prepare phase.

Code Block
languagejava
/** Updates applied out of order. */
private SortedSet<Range> seq = new 

...

TreeSet<>();

This field is used for recording the updates that are applied out of order. This is possible due to a fact what updates this because updates with higher counter could be applied to WAL before updates with lower counter, causing gaps in the update sequence.


Code Block
languagejava
/**

...


* Update counter task. Update from start value by delta value.

...


*/

...


private static class Range implements Comparable<Range>

...

 {
    /** */

...


    

...

private long start;

...



    

...

/** */

...


  

...

  private long delta;

...



    /** {@inheritDoc} */

...


  

...

  @Override public int compareTo(@NotNull Range r) {

...


        

...

return Long.compare(this.start, r.start);

...


  

...

  }

...



}


A range represents a sequence of updates, for example (5, 3) means three updates with number 6, 7, 8. We will use this notation again later.

Out of order updates range is held in the sequence only if an update with lower range is missing. For example, LWM=5, HWM=9, seq=(6,2) means updates 7, 8 were applied out of order and updates 6, 9 are still not applied.

Where Note that there is an important invariant which can be concluded derived from the statements above:

HWM >= LWM

Update counter flow

The flow is closely bound to transactions protocol. Counters are modified during stages of twoof two-phase commit (2PC) protocol used by Ignite to ensure distributed consistency.

2PC protocol variation used in Ignite consists of map, optional remap,  lock, prepare and commit phases.

We will use an example to illustrate the flow.:

Suppose we have 3 server nodes and 1 client node in the topology.

Two threads start two pessimistic (TODO javadoc ref) transactions https://www.gridgain.com/docs/latest/developers-guide/key-value-api/transactions#pessimistic-transactions) transactions concurrently updating keys belonging to the single partition p.  Backups count is equal to 2, so the total number of owners is 3.

Tx1 enlists and updates keys k1, k2, k3, ; Tx2 enlists and updates keys k4, k5.

P(k1) = P(k2) = P(k3) = P(k4) = P(k5) =  pp.

F(k1) = F(k2) = F(k3) = F(k4) = F(k5) = s1(Primary), s2(Backup1), s3(Backup2)


Code Block
languagejava
Ignite client = startClient();

...



IgniteCache<Integer, Integer> cache = client.cache(name);


Thread 1:


Code Block
languagejava
try(Transaction tx1 = client.transactions().txStart())

...

 {

      cache.putAll(Map.of(k1, v1, k2, v2, k3, v3));

...



      tx1.commit();

...



}


Thread 2:


Code Block
languagejava
try(Transaction tx2 = client.transactions().txStart())

...

 {

      cache.putAll(Map.of(k4, v4, k5, v4);

...



      tx2.commit();

...



}


The figure 1 Figure1 below shows the flow with the case of backup reordering, where tx with higher update counters is applied before tx the transaction with lower update counters on backup.

Near map is a mapping of partitions to primary nodes. In the above example, each transaction will have only one node s1 in the near map.

When near map is ready , for each key enlisted in the transaction, a lock request is issued which aquires acquires exclusive lock on each key (for optimistic transactions locks are acquired during commit but principles are the same).

It may happen that on the primary node, at the time of request processing, the topology version N + 1 is already relevant or in the process of changing to what the version.

If the next version is not compatible with the previous version (having the same partition assignment), a response is sent to the near node indicating that a more recent version of the topology is acutal available and the transaction should retry on the next version. This process is called remap.

If the lock is successfully acquired, the prepare phase begins. This also globally locks a topology version. New A new topology cannot be set until all transactions that started on the current topology are have finished. This is handled by the PME protocol.

Each locked key is assigned the update sequence number generated by using the next value of HWM counter field. If multiple keys are locked in the same partition, a range will be reserved.

When for For each primary partition, a DHT map is calculated.  A DHT map is a mapping of partitions to backup nodes.  In In the example, each transaction will have 2 two nodes in the DHT map: s2 and s3.

When the DHT map is ready, the primary node sends prepare requests to corresponding the backup nodes containing enlisted keys and their update counters to the corresponding backup nodes.

Thus, update counters are synchronized between primaries and backups - assigned to primaries, then transferred to backups.

If all backup nodes are answered positivelyreturn a positive response, then the transaction goes into the PREPARED state. In this state, it the transaction is ready for commit.

During commit, all transactional changes are applied to the WAL first, and LWM is increased next. At this point, LWM catches up HWM.

Because transaction commits can reorder, it's possible to have some updates applied out of order, as show by shown in the example above. The out of order updates sequence is used for tracking them.

Let's imaging that out of order updates are not tracked and LWM doesn't exists. If exist. In this case, if the primary node fails before applying the update from Tx1, we will end up with update counter=5 and will lose missed updates after the node rejoins to the topology , because rebalancing will not start due to equal counters.

Restoring consistency

The LWM value is used to calculate missing data when an outdated node joins the topology. In this scenario, counter based rebalancing is used to achieve consistency.

Joining The joining node sends LWM for each partition as a part of the partition map exchange protocol. Coordinator The coordinator collects all LWMs and determines nodes with highest LWM for each partition. These nodes are elected as data suppliers for a given partition.

If the coordinator detects a lagging node, it sends a partition map with the partition state changed to MOVING, triggering a rebalance on the joining node. The missing number of updates for each partition is calculated as a the difference between the highest known LWM and LWM from the joining node.

The Figure 2 illustrates the simplified rebalancing flow for of a node 's join having with an outdated partition with id=0 is illustratred on the fugure 2:.

Update counters are used to determine the state when the one partition copy is behind the others.

It is only safe to compare LWMs because all updates with counters below LWM are guaranteed to exist.

Thus, it is very important to correctly track LWMs since thier their values are used to calculate when rebalancing is necessary to restore the integrity of partitions [2].

As already was mentioned, LWM could safely be incremented it is safe to increment LWM only if the update is written to the WAL. Otherwise, a situation is possible when where the counter has been increased , but there is no corresponding durable update.

Crash recovery

There are no guarantees that updates with already assigned counters will ever be ever applied.For example, if during the prepare phase some mapped nodes will exit, then the transaction will be rolled back; or node can it is also possible for a node to crash during commit.

This is the reasons for causes gaps in the update sequence to appear. Several additional mechanisms are introduced to close such gaps.

Consider figure 3:

In the scenario on fig.figure 3, Tx2 is committed before Tx1 had the chance to prepare, and the primary node fails.

All As a part of the PME protocol, when a node leaves, all existing gaps remaining are removed after all transactions are finished closed during PME on node left. This the completion of all active transactions. This happens in org.apache.ignite.internal.processors.cache.PartitionUpdateCounter#finalizeUpdateCounters.

Consider figure 4:

In the scenario on fig.4 in figure 4, the transaction is prepared only on one backup and the primary node fails. A special partition counters update request is used to sync counters with remaining backup node.

Importance of atomic primaries switching

As shown on fig. in figure 4, when the primary node fails, then one of the backups must become a the new primary according to the affinity assignment for the next topology. This happens during the partition map exchange.

During PME on counter exchange phase, a new primary adjusts it's its HWM to the max known LWM value for each cache partition. This guarantees monotonous grow growth of HWM in the grid and valid generation of counters by new primaries.

It is important to ensure the atomicity of when switching the primary node for partition on all grid nodes.  Otherwise,   otherwise the HWM >= LWM invariant will break, which ensures that if at least one stable copy is available, everyone else can restore its integrity from it.

Atomic switchig switching is one of the PME protocol propertiesguaranties, making the situation when it impossible for two different grid nodes to use different primary node for mapping impossible.

The same issue exist exists when a node joins.