Details
Description
When message is scheduled for a delivery (using AMQ_SCHEDULED_PERIOD property) it is not posted to the queue, but saved to the scheduler’s repository instead. If Broker instance is shut down at the time for which the message is scheduled for a delivery, the scheduler will try to process the message at the next time broker is started up. Due to a bug in the scheduler implementation such messages may be dismissed rather than posted to the queue depending on the racing conditions inside the JVM.
Actual bug resides in org.apache.activemq.broker.scheduler.SchedulerBroker.getInternalScheduler() method.
This method first calls JobSchedulerStoreImpl. getJobScheduler(String name) method which in turn creates an instance of runnable JobSchedulerImpl class and starts it.
Then SchedulerBroker registers itselfas a listener of the newly created JobSchedulerImpl.
Unfortunately this may happen after the JobSchedulerImpl have dismissed all the “missed” tasks as “fired” as there were no listeners configured.
Attachments
Attachments
Issue Links
- duplicates
-
AMQ-4550 Allow messages scheduled for retry by the broker to be sent post-restart if the broker is not running at the jobs scheduled time
- Resolved
- is duplicated by
-
AMQ-4783 Scheduled messages lost if broker is shut down during the scheduled time of the message
- Closed
- supercedes
-
AMQ-4550 Allow messages scheduled for retry by the broker to be sent post-restart if the broker is not running at the jobs scheduled time
- Resolved