I'm using Quartz to regularly create a bunch of jobs that I sent to a queue (RabbitMQ) where they are picked up and executed by Akka actors. One piece that is missing is job monitoring. If one job fails, I don't even notice.
The jobs are fairly simple: they only have 1-2 parameters and there are no dependencies.
Is there anything (library, best practice etc.) I can leverage for this (even a SQL schema would be a good start)?
PS: I already considered Spring-Batch and it seems to be too much overhead.