Change the Quartz misfire threshold
With Quartz, sometimes scheduled jobs, transformations, or reports might try to run several times when they are manually stopped and restarted, instead of running only once. This is typically caused by the misfireThreshold property in Quartz being set at too high of a number.
These steps show how to reset the misfireThresholdto a lower numerical value.
Stop the Pentaho Server.
Locate the
/pentaho-server/pentaho-solutions/system/scheduler-plugin/quartz
directory.Open the
quartz.properties
file with any text editor.Find the property shown below and change the default to a smaller number, such as
5000
. The default value represents the number of milliseconds.org.quartz.jobStore.misfireThreshold = 60000
Save and close the
quartz.properties
file.Start the Pentaho Server.
Last updated
Was this helpful?