-
Couldn't load subscription status.
- Fork 28
Description
I perform some database operations in my rabbitQueue listener service via GORM. Occasionally, under high volume, I get a org.springframework.dao.CannotAcquireLockException. This causes the associated consumer to hang, and eventually, all consumers get hung and stop processing messages. At this point, I have to restart RabbitMQ to get things going again.
I'm just running save() on a domain model with semi high volume (1-2 million per day).
I plan to find and fix the cause of my CannotAcquireLockException but it would be nice if the RabbitMQ was more fault tolerant as well. Is this something that can be handled by the plugin?
Thanks!