Aleksey Plekhanov created IGNITE-28757:
------------------------------------------

             Summary: Node failure on exception in CQ
                 Key: IGNITE-28757
                 URL: https://issues.apache.org/jira/browse/IGNITE-28757
             Project: Ignite
          Issue Type: Bug
            Reporter: Aleksey Plekhanov
            Assignee: Aleksey Plekhanov


Reproducer:
{code:java}
        IgniteEx ignite = startGrid(0);

        IgniteCache<Object, Object> cache0 = ignite.cache(DEFAULT_CACHE_NAME);

        cache0.query(new ContinuousQuery<>().setLocalListener(evts -> { throw 
new CacheEntryListenerException(); }));

        try (Transaction tx = 
ignite.transactions().txStart(TransactionConcurrency.PESSIMISTIC, 
TransactionIsolation.READ_COMMITTED)) {
            cache0.put(0, 0);
            tx.commit();
        }
{code}




--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to