I accidentally set the cron schedule to * */6 * * * instead of 0 */6 * * *. Because of that slip, the job didn’t run once every six hours, it was running every minute during each six-hour window.
* */6 * * *
0 */6 * * *