[ https://issues.apache.org/jira/browse/IGNITE-25270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Vladislav Pyatkov updated IGNITE-25270: --------------------------------------- Description: h3. Motivation Our transaction protocol needs to know which entries were used in a transaction in a specific partition to switch their state from a write intent to a regular entry. {code:title=StorageUpdateHandler} /** A container for rows that were inserted, updated or removed. */ private final PendingRows pendingRows = new PendingRows(); {code} The set of the rows is in volatile storage (they disappear after the node restart). It leads to issues like IGNITE-25079. h3. Definition of done Write a document where a solution would be described. Jira tasks should be created. was: h3. Motivation Our transaction protocol needs to know which entries were used in a transaction in a specific partition to switch their state from a write intent to a regular entry. {code:title=StorageUpdateHandler} /** A container for rows that were inserted, updated or removed. */ private final PendingRows pendingRows = new PendingRows(); {code} The set of the rows is in volatile storage. > Come up with solution that allow persisting pending entries and does not have > a performance impact > -------------------------------------------------------------------------------------------------- > > Key: IGNITE-25270 > URL: https://issues.apache.org/jira/browse/IGNITE-25270 > Project: Ignite > Issue Type: Test > Reporter: Vladislav Pyatkov > Priority: Major > > h3. Motivation > Our transaction protocol needs to know which entries were used in a > transaction in a specific partition to switch their state from a write intent > to a regular entry. > {code:title=StorageUpdateHandler} > /** A container for rows that were inserted, updated or removed. */ > private final PendingRows pendingRows = new PendingRows(); > {code} > The set of the rows is in volatile storage (they disappear after the node > restart). It leads to issues like IGNITE-25079. > h3. Definition of done > Write a document where a solution would be described. > Jira tasks should be created. -- This message was sent by Atlassian Jira (v8.20.10#820010)