Searching for Generic Asynchronous Java Job Execution Framework / Library - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T19:39:25Zhttp://stackoverflow.com/feeds/question/612656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library2Searching for Generic Asynchronous Java Job Execution Framework / LibraryJulien Chastang2009-03-04T22:00:38Z2009-03-07T22:21:37Z
<p>I am looking for a generic asynchronous Java job execution framework that could handle <code>Callable</code>s or <code>Runnable</code>s. It would be similar to <code>java.util.concurrent.ExecutorService</code>, (and possibly wrap <code>ExecutorService</code>), but it would also have the following features:</p>
<ol>
<li><p>The ability to persist jobs to a database in case the application goes down while a job is being serviced, and be able to restart the unfinished jobs. (I understand that my job may have to implement <code>Serializable</code> which is OK.)</p></li>
<li><p>Work with UUIDs to enable the client to obtain job tokens and inquire about job status. (Under the hood this information would be persisted to a database, as well.)</p></li>
</ol>
<p>I have started working on this myself by building around <code>ExecutorService</code>, but I would prefer an out of the box, open source solution, if one exists.</p>
<p>Something that could work within the Spring Framework would be ideal.</p>
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library/612682#6126826Answer by Apocalisp for Searching for Generic Asynchronous Java Job Execution Framework / LibraryApocalisp2009-03-04T22:08:01Z2009-03-04T22:08:01Z<p>You may want to look at <a href="http://www.opensymphony.com/quartz/" rel="nofollow">Quartz</a>.</p>
<blockquote>
<p>Quartz is a full-featured, open source job scheduling system that can be integrated with, or used along side virtually any J2EE or J2SE application - from the smallest stand-alone application to the largest e-commerce system. Quartz can be used to create simple or complex schedules for executing tens, hundreds, or even tens-of-thousands of jobs; jobs whose tasks are defined as standard Java components or EJBs. The Quartz Scheduler includes many enterprise-class features, such as JTA transactions and clustering.</p>
</blockquote>
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library/612686#6126862Answer by sylvarking for Searching for Generic Asynchronous Java Job Execution Framework / Librarysylvarking2009-03-04T22:08:30Z2009-03-04T22:08:30Z<p>You can use <a href="http://www.opensymphony.com/quartz/" rel="nofollow">Quartz</a>, and create a concrete <a href="http://www.opensymphony.com/quartz/api/org/quartz/Job.html" rel="nofollow"><code>Job</code></a> adapter that delegates to a <code>Runnable</code> or <code>Callable</code>. Quartz' <code>Job</code> interface adds the ability to maintain some state between invocations of a task. If desired, Quartz can store jobs and their state durably in a relational database, and execute them on a scalable cluster of hosts.</p>
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library/612691#6126912Answer by Oscar Reyes for Searching for Generic Asynchronous Java Job Execution Framework / LibraryOscar Reyes2009-03-04T22:10:06Z2009-03-04T22:10:06Z<p>Take a look to <a href="http://www.opensymphony.com/quartz/wikidocs/Features.html" rel="nofollow">http://www.opensymphony.com/quartz/wikidocs/Features.html</a> and see if it has already something for you. </p>
<p>From that page:</p>
<blockquote>
<p><em>With the use of the included JDBCJobStore, all Jobs and Triggers configured as "non-volatile" are stored in a relational database via JDBC</em></p>
</blockquote>
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library/613443#6134432Answer by Alex Miller for Searching for Generic Asynchronous Java Job Execution Framework / LibraryAlex Miller2009-03-05T03:00:33Z2009-03-05T03:00:33Z<p>Another direction might be something like using <a href="http://terracotta.org" rel="nofollow">Terracotta</a>, which has the ability to cluster heap in your JVM and persist it for availability. Terracotta supports integration with <a href="http://www.terracotta.org/web/display/orgsite/Quartz%2BIntegration" rel="nofollow">Quartz</a> if that's useful from a scheduling point of view. Also, there is a master-worker and messaging <a href="http://www.terracotta.org/web/display/orgsite/Master%2BWorker" rel="nofollow">integration module</a> that might be useful as well. Terracotta is open source.</p>
http://stackoverflow.com/questions/612656/searching-for-generic-asynchronous-java-job-execution-framework-library/620101#6201011Answer by Taylor Gautier for Searching for Generic Asynchronous Java Job Execution Framework / LibraryTaylor Gautier2009-03-06T19:29:18Z2009-03-07T22:21:37Z<p>To follow up on Alex's point, a Terracotta solution wouldn't persist your jobs to the Database, they would be persistent in the Terracotta distributed memory store.</p>
<p>Since Terracotta persists the memory store to disk, this is a more efficient version of putting those jobs into the database.</p>
<p>At the same time, it gives you a pure POJO programming model, so you don't even have to deal with DB txns, ORM and the like - unless your particular workload happens to talk to the DB (in which case Terracotta doesn't help or hurt you here, it just helps distribute the work).</p>
<p>The MasterWorker pattern will help you distribute work out on the grid, and you can very easily get started using a DistributedExecutorService, submitting work looks like this:</p>
<pre><code>CompletionService executor = new DistributedCompletionService(new DistributedExecutorService("myTopologyName"));
executor.submit(new MyRunnable(), null);
...
Future f = executor.take();
</code></pre>
<p>Here's the link to <a href="http://forge.terracotta.org/releases/projects/tim-messaging/docs/quickstart.html" rel="nofollow">Quickstart guide in the master-worker implementation on the Terracotta Forge</a>.</p>
<p>What's more - Terracotta doesn't require that you implement Serializable - although you can if you want to :)</p>