ERROR 14 --- [_MisfireHandler] o.s.s.quartz.LocalDataSourceJobStore : MisfireHandler: Error handling misfires: Couldn't retrieve trigger: No record found for selection of Trigger with key: 'jobs.800d3561-04f9-48ca-8af1-e01befe1243f' and statement: SELECT * FROM QRTZ_SIMPLE_TRIGGERS WHERE SCHED_NAME = 'scheduler' AND TRIGGER_NAME = ? AND TRIGGER_GROUP = ?
This is a bug in Scheduler for TAS [VMs] When there is a row in QRTZ_TRIGGERS of TRIGGER_TYPE ‘SIMPLE’ that does not have a corresponding row in QRTZ_SIMPLE_TRIGGERS and there are misfired triggers then we see this behavior.
SELECT * FROM QRTZ_TRIGGERS WHERE TRIGGER_TYPE = 'SIMPLE' AND TRIGGER_NAME NOT IN (SELECT TRIGGER_NAME FROM QRTZ_SIMPLE_TRIGGERS);
DELETE FROM QRTZ_TRIGGERS WHERE TRIGGER_TYPE = 'SIMPLE' AND TRIGGER_NAME NOT IN (SELECT TRIGGER_NAME FROM QRTZ_SIMPLE_TRIGGERS);