Distributed Java Monitoring

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.

+3
source share
1 answer

, JMS. JMS. JMS , , consummer.

, JMS, : - , JMS , . - Quartz, JMS.

, Quartz (, ), , , - .

, . : http://groups.google.com/group/akka-user/browse_thread/thread/3818fb17bef95869

+1

All Articles