-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jobs retention #29
base: main
Are you sure you want to change the base?
Jobs retention #29
Conversation
thoven87
commented
Mar 18, 2025
- Adding job retention configuration
- Make job priority static vars instead of static func
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A couple of comments
/// Data rentension policy | ||
public struct RetentionPolicy: Sendable { | ||
/// Data retention | ||
public struct RetainData: Sendable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this could be
enum RetainData {
case retain(for: Duration)
case doNotRetain
}
Anything with doNotRetain gets deleted immediately
Sorry I'm wondering if we do this another way. Basically the retention policy is retain or not, without a timeout. Then we add a function for users to call. func purgeRetainedJobsEarlierThan(cancelled: Date, finished: Date, failed: Date) { Actually you could just update the Then users could add their own scheduled job. We could even write the job for them struct PurgeOldJobs: JobParameters {
let jobQueue: JobQueue<PostgresJobQueue>
}
jobQueue.registerJob(parameters: PurgeOldJobs.self) { parameters,_ in
parameters.jobQueue.cleanUp(
cancelledJobs: .remove(olderThan: .now - 4*24*60*60),
finishedJobs: .remove(olderThan: .now - 7*24*60*60)
)
}
jobSchedule = JobSchedule(job: PurgeOldJobs.self, .onMinutes(0,10,20,30,40,50)) I know this ends up being more work for the user, but it makes it a lot more configurable |
I think this works better and also maybe introduce a job rescue (orphan jobs :))? |