show/hide this revision's text 2 added 18 characters in body

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.

Since Terracotta persists the memory store to disk, this is a more efficient version of putting those jobs into the database.

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).

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:

CompletionService executor = new DistributedCompletionService(new DistributedExecutorService("myTopologyName"));
executor.submit(new MyRunnable(), null);
...
Future f = executor.take();

Here's the link to Quickstart guide in the master-worker implementation on the Terracotta Forge.

What's more - Terracotta doesn't require that you implement Serializable - although you can if you want to :)

show/hide this revision's text 1

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.

Since Terracotta persists the memory store to disk, this is a more efficient version of putting those jobs into the database.

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).

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:

CompletionService executor = new DistributedCompletionService(new DistributedExecutorService("myTopologyName")); executor.submit(new MyRunnable(), null); ... Future f = executor.take();

Here's the link to Quickstart guide in the master-worker implementation on the Terracotta Forge.

What's more - Terracotta doesn't require that you implement Serializable - although you can if you want to :)