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

Compaction Scheduling #1981

Merged
merged 5 commits into from
Jun 29, 2024
Merged

Conversation

shivansh02
Copy link
Collaborator

@shivansh02 shivansh02 commented Apr 5, 2024

Description

Allows users to run borg compact after specified intervals. Added 2 columns to the profile model: compaction_on to check/uncheck scheduling, and compaction_weeks to set interval in weeks. Default interval set to 3 weeks.

Related Issue

Resolves #1718

Motivation and Context

Backup space usage is exploding for some people until they realize they have to run compact manually. This allows users to schedule running compact just like validation.

How Has This Been Tested?

Tested manually by setting compaction_cutoff to minutes instead of days in scheduler.py.

Screenshots (if appropriate):

Screenshot from 2024-04-05 14-04-56
Screenshot from 2024-04-05 14-09-33

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • I have read the CONTRIBUTING guide.
  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

I provide my contribution under the terms of the license of this repository and I affirm the Developer Certificate of Origin.

@shivansh02 shivansh02 changed the title Compaction Scheduling WIP: Compaction Scheduling Apr 5, 2024
Copy link
Collaborator

@real-yfprojects real-yfprojects left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this nice addition!

src/vorta/store/migrations.py Show resolved Hide resolved
src/vorta/scheduler.py Outdated Show resolved Hide resolved
@shivansh02 shivansh02 force-pushed the feature/compaction-scheduling branch from 3b5bcbb to 277b9b9 Compare June 17, 2024 08:14
@shivansh02
Copy link
Collaborator Author

@m3nu All checks passed, can we merge this now?

@shivansh02 shivansh02 force-pushed the feature/compaction-scheduling branch from 277b9b9 to d89b832 Compare June 23, 2024 15:31
@@ -90,6 +90,8 @@ class BackupProfileModel(BaseModel):
schedule_make_up_missed = pw.BooleanField(default=True)
validation_on = pw.BooleanField(default=True)
validation_weeks = pw.IntegerField(default=3)
compaction_on = pw.BooleanField(default=True)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's disable it by default to avoid surprising behavior.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure!

@shivansh02 shivansh02 force-pushed the feature/compaction-scheduling branch from d89b832 to bd0433a Compare June 28, 2024 15:06
@shivansh02 shivansh02 requested a review from m3nu June 29, 2024 09:24
@shivansh02 shivansh02 changed the title WIP: Compaction Scheduling Compaction Scheduling Jun 29, 2024
@m3nu m3nu merged commit 449b95e into borgbase:master Jun 29, 2024
11 checks passed
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.

FR: compacting schedule like we do for pruning
3 participants