I use Quartz to regularly create a lot of jobs that I sent to the queue (RabbitMQ), where they are collected and executed by Akka. One part is missing - this is the monitoring of work. If one task fails, I donβt even notice.
The work is quite simple: they have only 1-2 parameters and no dependencies.
Is there anything (library, best practice, etc.) I can use for this (even the SQL schema would be a good start)?
PS: I already considered Spring-Batch and there seems to be too much overhead.
source
share