]
Pedro Ruivo updated ISPN-6919:
------------------------------
Status: Open (was: New)
Improve non-tx writes (triangle)
--------------------------------
Key: ISPN-6919
URL:
https://issues.jboss.org/browse/ISPN-6919
Project: Infinispan
Issue Type: Feature Request
Components: Core
Reporter: Pedro Ruivo
Assignee: Pedro Ruivo
The current algorithm has 4 messages in the network (worst case) happended sequentially:
1: originator => primary owner
2: primary owner => backups
3: backups => primary owner (ack)
4: primary owner => originator (reply)
The algorithm can be improved to the following:
1: originator => primary owner
2: primary owner => backups & primary owner => originator (parallel)
3: backups => originator & backups => primary owners (acks)
The main flow would be: originator => primary => backups => originator (<=
there is the triangle :) )