mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
42959d66db
* wip * Implementation complete * tidying * test * Address feedback * Remove duplicative retry logic from UpdateDocumentsPopularityScoreTask. Now that we're split across many runs this is not neccessary * Refactor to subclass, config to instance * Refactor BaseTask to named export * fix: Missing partition * tsc * Feedback
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { subDays } from "date-fns";
|
|
import { Op } from "sequelize";
|
|
import Logger from "@server/logging/Logger";
|
|
import { Attachment } from "@server/models";
|
|
import { sequelize } from "@server/storage/database";
|
|
import { TaskPriority } from "./base/BaseTask";
|
|
import { CronTask, TaskInterval } from "./base/CronTask";
|
|
import UpdateTeamAttachmentsSizeTask from "./UpdateTeamAttachmentsSizeTask";
|
|
|
|
type Props = {
|
|
limit: number;
|
|
};
|
|
|
|
export default class UpdateTeamsAttachmentsSizeTask extends CronTask {
|
|
public async perform({ limit }: Props) {
|
|
Logger.info(
|
|
"task",
|
|
`Recalculating attachment sizes for upto ${limit} teams…`
|
|
);
|
|
|
|
// Find unique attachment teamIds created in the last day, update only
|
|
// those teams' approximate attachment sizes
|
|
await Attachment.findAllInBatches<Attachment>(
|
|
{
|
|
attributes: [
|
|
[sequelize.fn("DISTINCT", sequelize.col("teamId")), "teamId"],
|
|
],
|
|
where: {
|
|
createdAt: {
|
|
[Op.gt]: subDays(new Date(), 1),
|
|
},
|
|
},
|
|
batchLimit: 100,
|
|
raw: true,
|
|
},
|
|
async (rows) => {
|
|
const teamIds = rows.map((row) => row.teamId);
|
|
|
|
for (const teamId of teamIds) {
|
|
await new UpdateTeamAttachmentsSizeTask().schedule({ teamId });
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
public get cron() {
|
|
return {
|
|
interval: TaskInterval.Day,
|
|
};
|
|
}
|
|
|
|
public get options() {
|
|
return {
|
|
attempts: 1,
|
|
priority: TaskPriority.Background,
|
|
};
|
|
}
|
|
}
|