Re: transaction not timing out

2016-08-23 Thread bintisepaha
-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p7256.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-08-19 Thread bintisepaha
18.x6.nabble.com/transaction-not-timing-out-tp5540p7187.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-08-02 Thread vkulichenko
data inconsistency. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6685.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-29 Thread bintisepaha
acquired - what is holding it from updating the entries? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6638.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-27 Thread vkulichenko
context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6579.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-27 Thread bintisepaha
) -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6576.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-27 Thread vkulichenko
age in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6574.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-26 Thread bintisepaha
cannot use optimistic in this scenario. Thanks, Binti -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6557.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-07-12 Thread bintisepaha
If in any case commit() is unable to finish, how can we catch that? in an optimistic transaction, it should not even reach the commit phase using the 2 phase protocol. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p6241.html

Re: transaction not timing out

2016-06-27 Thread Alexey Goncharuk
Hi, As Dmitriy pointed out, there is no a reliable way to timeout a transaction once the commit phase has begun. If there is a chance that your cache store may stall for unpredictable amount of time, this should be handled within the store and possibly throw an exception, but this will result in

Re: transaction not timing out

2016-06-27 Thread Denis Magda
ored while committing? > What would cause this issue? > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5934.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-27 Thread bintisepaha
-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5934.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-24 Thread Dmitriy Setrakyan
te.transactions().txStart(TransactionConcurrency.OPTIMISTIC, > TransactionIsolation.SERIALIZABLE); > tx.timeout(2*1000); > orderUpdateLossPreventionCache.remove(entry.getKey()); > tx.commit(); > } catch (IgniteException e) { > logger.error("Received IgniteException - rolling back transaction", e); >tx.rollback(); > throw e; > } > > > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5725.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com > <http://nabble.com>. > > >

Re: transaction not timing out

2016-06-23 Thread Denis Magda
(TransactionConcurrency.OPTIMISTIC, > TransactionIsolation.SERIALIZABLE); > tx.timeout(2*1000); > orderUpdateLossPreventionCache.remove(entry.getKey()); > tx.commit(); > } catch (IgniteException e) { > logger.error("Received IgniteException - rolling ba

Re: transaction not timing out

2016-06-23 Thread Denis Magda
message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5805.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-22 Thread bintisepaha
Denis, did you get a chance to look at this? any help will be greatly appreciated. Thanks, Binti -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5805.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-17 Thread bintisepaha
; } catch (IgniteException e) { logger.error("Received IgniteException - rolling back transaction", e); tx.rollback(); throw e; } -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5725.html Sent fro

Re: transaction not timing out

2016-06-16 Thread Denis Magda
rg.apache.ignite.internal.managers.communication.GridIoManager$5.run(GridIoManager.java:810) > java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) > java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) > java.lang.Thread.run(Unknown Source) > > > > > --

Re: transaction not timing out

2016-06-16 Thread bintisepaha
) java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) java.lang.Thread.run(Unknown Source) -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5681.html Sent

Re: transaction not timing out

2016-06-16 Thread Denis Magda
out at > commit() but here i can see that no matter which point the thread is - it > never times out. > > Appreciate your help, > Binti > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5656.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-15 Thread bintisepaha
apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5656.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-14 Thread Denis Magda
sepaha wrote: > > I will get this out to you shortly. In the meantime could you please explain > how transaction timeout works? Why does commit block forever? > > > > -- > View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-ti

Re: transaction not timing out

2016-06-13 Thread bintisepaha
I will get this out to you shortly. In the meantime could you please explain how transaction timeout works? Why does commit block forever? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5617.html Sent from the Apache Ignite

Re: transaction not timing out

2016-06-13 Thread Denis Magda
> View this message in context: > http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540p5583.html > Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: transaction not timing out

2016-06-10 Thread bintisepaha
/transaction-not-timing-out-tp5540p5583.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

transaction not timing out

2016-06-08 Thread bintisepaha
(GridIoManager.java:810) java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) java.lang.Thread.run(Unknown Source) -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/transaction-not-timing-out-tp5540