The field definition of "description" in the database tables "action" and "actionarchive" mismatch, which causes an exception while running the archive plugin.
2012-07-30 03:00:20: [INFO ] [Thread-8] service.web.PluginScheduler$Scheduler - Archiving actions older than 100 day(s)
2012-07-30 03:00:20: [INFO ] [Thread-8] plugin.archive.ArchivePseudoGenerator - Cutoff date: Sat Apr 21 03:00:20 CEST 2012
2012-07-30 03:07:19: [INFO ] [Thread-8] plugin.archive.ArchivePseudoGenerator - Number of actions to archive:19887859
2012-07-30 03:07:19: [ERROR] [Thread-8] core.impl.ArchiveDAOMysqlImpl - org.springframework.dao.DataIntegrityViolationException: PreparedStatementCallback; SQL [ INSERT INTO actionarchive SELECT * FROM action WHERE tenantId = ? AND actiontime < ? ]; Data truncation: Data too long for column 'description' at row 130; nested exception is com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'description' at row 130
The field "description" has to be modified in the "actionarchive" table.
ALTER TABLE actionarchive MODIFY description VARCHAR(500);
Anonymous