Vladislav Pyatkov created IGNITE-23787:
------------------------------------------
Summary: Implicit get for embedded mode starts RW transaction
Key: IGNITE-23787
URL: https://issues.apache.org/jira/browse/IGNITE-23787
Project: Ignite
Issue Type: Bug
Reporter: Vladislav Pyatkov
h3. Motivation
Implicit get operation should start RO transaction because the transaction type
is faster and does not take any lock.
{code}
private InternalTransaction startImplicitRoTxIfNeeded(@Nullable
InternalTransaction tx) {
return tx == null ? txManager.begin(observableTimestampTracker, true, true)
: tx;
}
{code}
h3. Definition of done
Implicit get in embedded mode starts RO transaction.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)