Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Do not delete an already existing archive on error #2257

Merged

Conversation

sfauvel
Copy link
Collaborator

@sfauvel sfauvel commented Jan 28, 2025

Content

If an archive exists, it must not be deleted if an error occurs when trying to create an archive with the same name.
We replace an existing snapshotted file only if the snapshotting is successful.

This PR include:

  • Creation of the snapshot in a temporary file (same name with a .tmp suffix)
  • Renaming the temporary file to the final file name, if the snapshotting is successful
  • Deleting the temporary file in any case, even if this file already exist before snapshotting

Pre-submit checklist

  • Branch
    • Tests are provided (if possible)
    • Crates versions are updated (if relevant)
    • CHANGELOG file is updated (if relevant)
    • Commit sequence broadly makes sense
    • Key commits have useful messages
  • PR
    • No clippy warnings in the CI
    • Self-reviewed the diff
    • Useful pull request description
    • Reviewer requested
  • Documentation
    • Update README file (if relevant)
    • Update documentation website (if relevant)
    • Add dev blog post (if relevant)

Issue(s)

Closes #2215

@sfauvel sfauvel force-pushed the sfa/2215/enhance_Snapshotter_to_avoid_file_deletion_on_error branch 2 times, most recently from f99616e to d99706a Compare January 28, 2025 15:17
@sfauvel sfauvel marked this pull request as ready for review January 28, 2025 15:23
Copy link

github-actions bot commented Jan 28, 2025

Test Results

    4 files  ±0     52 suites  ±0   10m 34s ⏱️ -1s
1 569 tests +1  1 569 ✅ +1  0 💤 ±0  0 ❌ ±0 
1 843 runs  +1  1 843 ✅ +1  0 💤 ±0  0 ❌ ±0 

Results for commit 7f68d52. ± Comparison against base commit 58a4935.

♻️ This comment has been updated with latest results.

@sfauvel sfauvel temporarily deployed to testing-preview January 28, 2025 15:25 — with GitHub Actions Inactive
@sfauvel sfauvel temporarily deployed to testing-sanchonet January 28, 2025 15:25 — with GitHub Actions Inactive
Copy link
Member

@jpraynaud jpraynaud left a comment

Choose a reason for hiding this comment

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

LGTM 👍

@@ -114,6 +114,8 @@ impl CompressedArchiveSnapshotter {
}

fn snapshot<T: TarAppender>(&self, filepath: &Path, appender: T) -> StdResult<OngoingSnapshot> {
let temporary_archive_path =
Copy link
Member

@jpraynaud jpraynaud Jan 28, 2025

Choose a reason for hiding this comment

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

Maybe this could be done more elegantly with Path::with_extension?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I tried to use it but Path::with_extension replace the extension by the new one, ("archive.tar.gz" become "archive.tar.tmp").
There is also a Path::with_added_extension that just add the extension but it's unstable

Copy link
Collaborator

@dlachaume dlachaume left a comment

Choose a reason for hiding this comment

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

LGTM

@sfauvel sfauvel force-pushed the sfa/2215/enhance_Snapshotter_to_avoid_file_deletion_on_error branch from d99706a to ed41bb7 Compare January 29, 2025 09:44
@sfauvel sfauvel force-pushed the sfa/2215/enhance_Snapshotter_to_avoid_file_deletion_on_error branch from ed41bb7 to aee9b36 Compare January 29, 2025 11:16
@sfauvel sfauvel temporarily deployed to testing-preview January 29, 2025 11:24 — with GitHub Actions Inactive
@sfauvel sfauvel temporarily deployed to testing-sanchonet January 29, 2025 11:24 — with GitHub Actions Inactive
@sfauvel sfauvel force-pushed the sfa/2215/enhance_Snapshotter_to_avoid_file_deletion_on_error branch from aee9b36 to f7d36ea Compare January 29, 2025 13:14
* mithril-aggregator from `0.6.23` to `0.6.24`
@sfauvel sfauvel temporarily deployed to testing-preview January 29, 2025 13:31 — with GitHub Actions Inactive
@sfauvel sfauvel temporarily deployed to testing-sanchonet January 29, 2025 13:31 — with GitHub Actions Inactive
@sfauvel sfauvel merged commit a9886c5 into main Jan 29, 2025
43 checks passed
@sfauvel sfauvel deleted the sfa/2215/enhance_Snapshotter_to_avoid_file_deletion_on_error branch January 29, 2025 13:34
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enhance Snapshotter to avoid file deletion on error if already exists
4 participants