Just as the message says, it is aggregating records in Counter table
Statistical records (counters for succeeded/failed jobs etc.) are saved into Counter table. As the number of records grows with each performed job, it would eventually increase database size and affect queries’ performance.
To avoid this, the records are occasionally aggregated into AggregatedCounter table, so queries can use pre-calculated values instead of computing them across a lot of rows every single time.