<div dir="ltr">This all sounds like a very similar problem to what we already do with EJB timers. Timers are transactional, if you create or cancel a timer it does not take effect until the transaction commits.&nbsp;<div><br></div>
<div>The way this is accomplished is two fold:</div><div>- The data store is transactional (or semi-transactional really in the case of the file data store, as we did not develop a fully transactional file system just for this)</div>
<div>- Timers are not actually started or cancelled until the afterComplete() synchronization runs.</div><div><br></div><div>I think it would make sense for JBeret to basically do the same. I think it would be very surprising to the user if jobs they started in transactions that abort just proceed as normal.</div>
<div><br></div><div>Stuart</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Feb 4, 2014 at 11:53 PM, Jason Greene <span dir="ltr">&lt;<a href="mailto:jason.greene@redhat.com" target="_blank">jason.greene@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5"><br>
On Feb 4, 2014, at 3:51 PM, Radoslaw Rodak &lt;<a href="mailto:rodakr@gmx.ch">rodakr@gmx.ch</a>&gt; wrote:<br>
<br>
&gt; Hi<br>
&gt;<br>
&gt;<br>
&gt; Am 04.02.2014 um 22:16 schrieb Jason Greene &lt;<a href="mailto:jason.greene@redhat.com">jason.greene@redhat.com</a>&gt;:<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Feb 4, 2014, at 3:13 PM, Jason Greene &lt;<a href="mailto:jason.greene@redhat.com">jason.greene@redhat.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Feb 4, 2014, at 3:01 PM, James R. Perkins &lt;<a href="mailto:jperkins@redhat.com">jperkins@redhat.com</a>&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On 02/04/2014 12:40 PM, Scott Marlow wrote:<br>
&gt;&gt;&gt;&gt;&gt; On 02/04/2014 02:42 PM, James R. Perkins wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; On 02/04/2014 08:16 AM, Jason Greene wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; On Feb 4, 2014, at 9:56 AM, Cheng Fang &lt;<a href="mailto:cfang@redhat.com">cfang@redhat.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; On 2/4/14, 9:57 AM, Stuart Douglas wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; I would use a transaction synchronization, so you don&#39;t spawn the other thread until the transaction is successfully committed.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; yes, we could implement it in wildfly-batch integration module.<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; What does the spec say about transactions? If a job is create in a thread that is part of a transaction and the transaction is rolled back should the job actually go ahead? Common sense would suggest not.<br>

&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; The transaction treatment in the batch spec is mostly around item processing, not much on how it interacts with the transaction in the running environment. &nbsp;The only place that it touches on Java EE environment is section 9.7 Transactionality:<br>

&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Chunk type check points are transactional. The batch runtime uses global transaction mode on the Java EE platform and local transaction mode on the Java SE platform. Global transaction timeout is configurable at step-level with a step-level property:<br>

&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Yes, I agree if the batch client side transaction is rolled back, the job execution should not proceed. &nbsp;With the current jberet impl, the job execution in this case will fail since the job repository is not in good state, like in the above bug. &nbsp;If we have transaction syncrhonization in place, then the job will not start running till transaction 1 is committed.<br>

&gt;&gt;&gt;&gt;&gt;&gt;&gt; There is a consistency problem here though. If you expect the client side to rollback on transaction failure, then the in-memory job store should as well. IMO before committing to such a big feature, I would recommend looking at what the RI does here. If the spec doesn&rsquo;t describe it, and the RI doesn&rsquo;t do it, then we should avoid investing time on it at least right now where we really need to get WF8 out the door.<br>

&gt;&gt;&gt;&gt;&gt;&gt; I don&#39;t see in the spec where it requires any kind of transaction around<br>
&gt;&gt;&gt;&gt;&gt;&gt; a job repository. In fact the spec states &quot;Note the implementation of<br>
&gt;&gt;&gt;&gt;&gt;&gt; the job repository is outside the scope of this specification.&quot;.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; The RI does have a JDBC repository, but it doesn&#39;t insert anything into<br>
&gt;&gt;&gt;&gt;&gt;&gt; the tables in a transaction.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; If we&#39;re only seeing this in PostgreSQL and a workaround with putting<br>
&gt;&gt;&gt;&gt;&gt;&gt; JobOperator.start() outside a transaction works, I would suggest that&#39;s<br>
&gt;&gt;&gt;&gt;&gt;&gt; okay for now. I do agree it needs to be fixed, but we might want to look<br>
&gt;&gt;&gt;&gt;&gt;&gt; at how we&#39;re handling transaction in JBeret as a whole. The RI, not that<br>
&gt;&gt;&gt;&gt;&gt;&gt; I want to model anything after it, uses it&#39;s own<br>
&gt;&gt;&gt;&gt;&gt;&gt; TransactionManagerAdapter. It might make sense for JBeret to use a<br>
&gt;&gt;&gt;&gt;&gt;&gt; TransactionManager rather than a UserTransaction. Or put the ownness on<br>
&gt;&gt;&gt;&gt;&gt;&gt; the SPI implementation of the BatchEnvironment to handle the transactions.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Are you saying that the application should work around this by calling a different bean method that is marked NOT_SUPPORTED to facilitate suspending the JTA transaction?<br>
&gt;&gt;&gt;&gt; No I&#39;m just saying they need to invoke the JobOperator.start() outside a transaction. At least from my understand on the JIRA that seems to workaround the issue. I will admit to not fully looking into this in detail though ;)<br>

&gt;&gt;&gt;<br>
&gt;&gt;&gt; That would be silly :)<br>
&gt;&gt;<br>
&gt;&gt; Requiring a NOT_SUPPORTED method that is. It&rsquo;s pretty easy for JBeret to isolate the transaction if it wanted to<br>
&gt;&gt;<br>
&gt;&gt; tx = TransactionManager.suspend()<br>
&gt;&gt; TransactionManager.begin()<br>
&gt;&gt; // write the record<br>
&gt;&gt; TransactionManager.commit()<br>
&gt;&gt; TransactionManager.resume(tx);<br>
&gt;&gt;<br>
&gt;<br>
&gt; What will happened to suspended Transaction when you get Exception on TransactionManager.commit() ?<br>
<br>
</div></div>You put resume in a finally block. Just like RequiresNew effectively does.<br>
<div class="im HOEnZb"><br>
--<br>
Jason T. Greene<br>
WildFly Lead / JBoss EAP Platform Architect<br>
JBoss, a division of Red Hat<br>
<br>
<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
</div></div></blockquote></div><br></div>