I just wrote this code in my runnable's run() method:
try {
dbConnection = MyApp.datasource.getConnection();
} catch (SQLException e) {
logger.log(Level.SEVERE, "Could not obtain a DB connection! Re-enqueuing this task. Message: " + e.getMessage(), e);
MyApp.executor.execute(this);
return;
}
As you can see, if the task can't obtain a DB connection, it should re-enqueue itself, into the same queue it was in before it ran.
I'm thinking this is probably safe, but it feels funny, and I just want to make sure there aren't any gotchyas that I'm missing.
Thanks!
Thread.sleep()before re-enqueuing. Otherwise, if getConnection() fails quickly, you'll create lots of CPU load (and probably I/O load due to logging). – Chris Lercher Feb 17 '11 at 21:20