You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Aleksey Plekhanov (JIRA)" <ji...@apache.org> on 2019/08/13 10:24:00 UTC

[jira] [Updated] (IGNITE-11697) Suspended optimistic transaction automatically resumes to last thread after a timeout.

     [ https://issues.apache.org/jira/browse/IGNITE-11697?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Aleksey Plekhanov updated IGNITE-11697:
---------------------------------------
    Fix Version/s: 2.8

> Suspended optimistic transaction automatically resumes to last thread after a timeout.
> --------------------------------------------------------------------------------------
>
>                 Key: IGNITE-11697
>                 URL: https://issues.apache.org/jira/browse/IGNITE-11697
>             Project: Ignite
>          Issue Type: Bug
>    Affects Versions: 2.7
>            Reporter: Aleksey Plekhanov
>            Assignee: Aleksey Plekhanov
>            Priority: Major
>              Labels: iep-34
>             Fix For: 2.8
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> This leads to unpredictable results from a user's point of view.
> Reproducer:
>  
> {code:java}
> public class IgniteTxSuspendAndTimeoutTest extends GridCommonAbstractTest {
>     @Test
>     public void testSuspendAndTimeout() throws Exception {
>         Ignite ignite = startGrid(0);
>         IgniteCache cache = ignite.createCache(new CacheConfiguration<>().setName("c").setAtomicityMode(TRANSACTIONAL));
>         Transaction tx1 = ignite.transactions().txStart(OPTIMISTIC, TransactionIsolation.REPEATABLE_READ, 100, 0);
>         cache.put(1, 1);
>         tx1.suspend();
>         assertNull(cache.get(1)); // Pass here.
>         doSleep(200);
>         assertNull(cache.get(1)); // Fail here. But we don't expect any explicitly running transaction at this point.
>     }
> }
> {code}
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)