[cdi-dev] [JBoss JIRA] (CDI-31) Asynchronous events

Mark Struberg struberg at yahoo.de
Thu Apr 12 05:49:56 EDT 2012


But if you use the @Asynchronous at the observer method, then the SENDER doesn't know about it. And this might introduce concurrency issues as outlined in my comment. 


I did explain this on IRC but happy to repeat it: EJB @Asynchronous and similar stuff (@Async) is imo pretty much useless for 98% of all usecases as it is NOT reliable! What do I mean?

A real world example from our project (university management software). Imagine a lecturer at the university issues a course certificate. It doesn't take that long to store the new certificate into our database, but it takes up to 5 minutes to do all the 'backoffice' stuff like calculate course grade medians, scholarship criteria calculations etc. This also includes talking to some government SAP backends which could also take a bit. 


We originally thought that using @Asynchronous would be a perfect fit, but in fact that doesn't give you any guarantees! It's basically only fire and forget and doesn't make sure that the stuff really did succeed. If there is an Exception in the asynchronous task, you will NOT get notified and have no chance to react. If the Session gets killed via a logout, you might loose all data. If the server goes down, you will loose all data, etc
It is also not specified/guaranteed that Session and Request Contexts will get propagated. Au contraire, it is highly suggested to NOT propagate them because of the side effects it could have.


In all cases where you need RELIABLE results, I'd suggest to do it old-school: just write an entry into a 'tasks' table and poll it with a Quartz or @Timer job which does the work fully transactional. That way you can even setup again after a crash without loosing data.

@Asynchronous is really only usable for stuff you don't need to really work but is only 'nice to have'.

just my .02 ... 

LieGrue,
strub


----- Original Message -----
> From: Hantsy Bai <hantsy at gmail.com>
> To: cdi-dev at lists.jboss.org
> Cc: 
> Sent: Thursday, April 12, 2012 9:17 AM
> Subject: Re: [cdi-dev] [JBoss JIRA] (CDI-31) Asynchronous events
> 
> As a developer, I would like use CDI event obsever method with the EJB 
> @Asynchronous directly, or  calls a Asynchronous method inside the  
> obsever method.
> 
> And also please refer to the implementation of Spring, it also support EJB
> 
> @Asynchronous
> 
> or Spring specific
> @Async
> 
> For developer, I do not want the things become complex.
> 
> There is no need to introduce new attribute or annotations.
> 
> BTW, I would like some features can be extracted from EJB spec, such as 
> Transaction, Schedule etc...
> 
> On 4/12/2012 15:03, Mark Struberg (JIRA) wrote:
>>       [ 
> https://issues.jboss.org/browse/CDI-31?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12683362#comment-12683362 
> ]
>> 
>>  Mark Struberg commented on CDI-31:
>>  ----------------------------------
>> 
>>  Well, but the ASYNC_NOWAIT use case is of almost no use as explained above!
>> 
>>>  Asynchronous events
>>>  -------------------
>>> 
>>>                   Key: CDI-31
>>>                   URL: https://issues.jboss.org/browse/CDI-31
>>>               Project: CDI Specification Issues
>>>            Issue Type: Feature Request
>>>            Components: Events
>>>      Affects Versions: 1.0
>>>              Reporter: Nicklas Karlsson
>>>               Fix For: TBD
>>> 
>>> 
>>>  Consider including asynchronous events as their were specified in one 
> of the previous drafts.
>>  --
>>  This message is automatically generated by JIRA.
>>  If you think it was sent incorrectly, please contact your JIRA 
> administrators: 
> https://issues.jboss.org/secure/ContactAdministrators!default.jspa
>>  For more information on JIRA, see: http://www.atlassian.com/software/jira
>> 
>> 
>>  _______________________________________________
>>  cdi-dev mailing list
>>  cdi-dev at lists.jboss.org
>>  https://lists.jboss.org/mailman/listinfo/cdi-dev
> 
> _______________________________________________
> cdi-dev mailing list
> cdi-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/cdi-dev
> 



More information about the cdi-dev mailing list