Skip to content
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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

thoven87
Copy link
Contributor

  • Adding job retention configuration
  • Make job priority static vars instead of static func

Copy link
Member

@adam-fowler adam-fowler left a 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 {
Copy link
Member

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

@adam-fowler
Copy link
Member

adam-fowler commented Mar 19, 2025

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 cleanup function.

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

@thoven87
Copy link
Contributor Author

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 cleanup function.

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 :))?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants