[
https://issues.apache.org/jira/browse/IGNITE-20974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Vladislav Pyatkov updated IGNITE-20974:
---------------------------------------
Description:
h3. Motivation
This issue has happened in TC, but it is very rare, and it is related to a
multi-node cluster only (TC log was attached). Look at the exception for
ItTxDistributedTestThreeNodesThreeReplicas.testComplexImplicit:
{noformat}
org.opentest4j.AssertionFailedError: expected: <null> but was:
<org.apache.ignite.internal.table.TableRow@aa3624f>
at
app//org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
at
app//org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
at app//org.junit.jupiter.api.AssertNull.failNotNull(AssertNull.java:50)
at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:35)
at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:30)
at app//org.junit.jupiter.api.Assertions.assertNull(Assertions.java:276)
at
app//org.apache.ignite.internal.table.TxAbstractTest.doTestComplex(TxAbstractTest.java:1450)
at
app//org.apache.ignite.internal.table.TxAbstractTest.testComplexImplicit(TxAbstractTest.java:1354)
at
[email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
at
[email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at
[email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at [email protected]/java.lang.reflect.Method.invoke(Method.java:566)
{noformat}
The assertion failed exception is here (in line 6):
{code:title=TxAbstractTest.java}
view.deleteAll(tx, keys);
for (Tuple key : keys) {
Tuple entry = view.get(tx, key);
assertNull(entry);
}
{code}
h3. Implementation notes
Check that the result of the _deleteAll_ operation is an empty collection.
was:
This issue has happened in TC, but it is very rare, and it is related to a
multi-node cluster only (TC log was attached). Look at the exception for
ItTxDistributedTestThreeNodesThreeReplicas.testComplexImplicit:
{noformat}
org.opentest4j.AssertionFailedError: expected: <null> but was:
<org.apache.ignite.internal.table.TableRow@aa3624f>
at
app//org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
at
app//org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
at app//org.junit.jupiter.api.AssertNull.failNotNull(AssertNull.java:50)
at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:35)
at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:30)
at app//org.junit.jupiter.api.Assertions.assertNull(Assertions.java:276)
at
app//org.apache.ignite.internal.table.TxAbstractTest.doTestComplex(TxAbstractTest.java:1450)
at
app//org.apache.ignite.internal.table.TxAbstractTest.testComplexImplicit(TxAbstractTest.java:1354)
at
[email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
at
[email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at
[email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at [email protected]/java.lang.reflect.Method.invoke(Method.java:566)
{noformat}
> It seems a row has been skipped by the removal operation
> --------------------------------------------------------
>
> Key: IGNITE-20974
> URL: https://issues.apache.org/jira/browse/IGNITE-20974
> Project: Ignite
> Issue Type: Bug
> Reporter: Vladislav Pyatkov
> Priority: Major
> Labels: ignite-3
> Attachments: _Integration_Tests_Module_Table_17003.log.zip
>
>
> h3. Motivation
> This issue has happened in TC, but it is very rare, and it is related to a
> multi-node cluster only (TC log was attached). Look at the exception for
> ItTxDistributedTestThreeNodesThreeReplicas.testComplexImplicit:
> {noformat}
> org.opentest4j.AssertionFailedError: expected: <null> but was:
> <org.apache.ignite.internal.table.TableRow@aa3624f>
> at
> app//org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
> at
> app//org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
> at app//org.junit.jupiter.api.AssertNull.failNotNull(AssertNull.java:50)
> at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:35)
> at app//org.junit.jupiter.api.AssertNull.assertNull(AssertNull.java:30)
> at app//org.junit.jupiter.api.Assertions.assertNull(Assertions.java:276)
> at
> app//org.apache.ignite.internal.table.TxAbstractTest.doTestComplex(TxAbstractTest.java:1450)
> at
> app//org.apache.ignite.internal.table.TxAbstractTest.testComplexImplicit(TxAbstractTest.java:1354)
> at
> [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native
> Method)
> at
> [email protected]/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at
> [email protected]/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at [email protected]/java.lang.reflect.Method.invoke(Method.java:566)
> {noformat}
> The assertion failed exception is here (in line 6):
> {code:title=TxAbstractTest.java}
> view.deleteAll(tx, keys);
> for (Tuple key : keys) {
> Tuple entry = view.get(tx, key);
> assertNull(entry);
> }
> {code}
> h3. Implementation notes
> Check that the result of the _deleteAll_ operation is an empty collection.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)