After the "Off-Hours Database Maintenance" job ran, the external MySQL database is producing heavy I/O on the database server. Only restarting the Foglight server stops the I/O.
To identify if there are a lot of purge processes, please run the script below via "Administration | Tooling | Script Console":
return "Purge operations: " + server.PersistenceService.getAllScheduledObservationPurges()
The following script can be run to cancel all scheduled purged:
server.PersistenceService.getAllScheduledObservationPurges().each{
server.PersistenceService.cancelObservationPurge(it);
}
return "Purge operations cancelled."