[
https://issues.apache.org/jira/browse/IGNITE-25825?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexey Scherbakov reassigned IGNITE-25825:
------------------------------------------
Assignee: Alexey Scherbakov
> Fully asynchronous write intent cleanup
> ---------------------------------------
>
> Key: IGNITE-25825
> URL: https://issues.apache.org/jira/browse/IGNITE-25825
> Project: Ignite
> Issue Type: Improvement
> Reporter: Vladislav Pyatkov
> Assignee: Alexey Scherbakov
> Priority: Major
> Labels: ignite-3
>
> Currently write intents are cleaned up syncronously on commit path.
> This adds additional latency up to 1RTT in cross-partition scenario.
> We should clean up intents and unlock locks asynchronously, as soon as commit
> record is applied:
> {code:java}
> return finishTransaction(enlistedPartitionGroups, txId, commit,
> commitTimestamp)
> .thenApply(txResult -> {
> // Clean up and unlock asynchronously.
> txManager.cleanup(replicationGroupId,
> enlistedPartitions, commit, commitTimestamp, txId);
> return txResult;
> }
> );
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)