all lists on lists.proxmox.com
 help / color / mirror / Atom feed
From: Gabriel Goller <g.goller@proxmox.com>
To: Proxmox Backup Server development discussion
	<pbs-devel@lists.proxmox.com>
Subject: Re: [pbs-devel] [PATCH v2 proxmox-backup] fix #5710: api: backup: stat known chunks on backup finish
Date: Mon, 7 Oct 2024 11:47:19 +0200	[thread overview]
Message-ID: <20241007094719.fp4h3we3ji3c622g@luna.proxmox.com> (raw)
In-Reply-To: <20240920134035.238237-1-c.ebner@proxmox.com>

>@@ -256,7 +280,23 @@ impl BackupEnvironment {
>     pub fn lookup_chunk(&self, digest: &[u8; 32]) -> Option<u32> {
>         let state = self.state.lock().unwrap();
>
>-        state.known_chunks.get(digest).copied()
>+        state
>+            .known_chunks
>+            .get(digest)
>+            .map(|known_chunk_info| known_chunk_info.length)
>+    }
>+
>+    /// stat known chunks from previous backup, so excluding newly uploaded ones
>+    pub fn stat_prev_known_chunks(&self) -> Result<(), Error> {
>+        let state = self.state.lock().unwrap();
>+        for (digest, known_chunk_info) in &state.known_chunks {
>+            if !known_chunk_info.uploaded {
>+                self.datastore
>+                    .stat_chunk(digest)
>+                    .map_err(|err| format_err!("stat failed on {} - {err}", hex::encode(digest)))?;

`err` is an anyhow::Error, so we could add a context, e.g. something
like:

     .map_err(|err| err.context(format!("stat failed on {}", hex::encode(digest))))?;

>+            }
>+        }
>+        Ok(())
>     }
>
>     /// Store the writer with an unique ID
>diff --git a/src/api2/backup/mod.rs b/src/api2/backup/mod.rs
>index ea0d0292e..468824565 100644
>--- a/src/api2/backup/mod.rs
>+++ b/src/api2/backup/mod.rs
>@@ -785,6 +785,26 @@ fn finish_backup(
> ) -> Result<Value, Error> {
>     let env: &BackupEnvironment = rpcenv.as_ref();
>
>+    if let Err(err) = env.stat_prev_known_chunks() {
>+        env.debug(format!("stat registered chunks failed - {err}"));

We want to print the full error, so we need to use `{err:?}`.

>+
>+        if let Some(last) = env.last_backup.as_ref() {
>+            // No need to acquire snapshot lock, already locked when starting the backup
>+            let verify_state = SnapshotVerifyState {
>+                state: VerifyState::Failed,
>+                upid: env.worker.upid().clone(), // backp writer UPID

s/backp/backup/

>+            };
>+            let verify_state = serde_json::to_value(verify_state)?;
>+            last.backup_dir
>+                .update_manifest(|manifest| {
>+                    manifest.unprotected["verify_state"] = verify_state;
>+                })
>+                .map_err(|err| format_err!("manifest update failed - {err}"))?;

Same here, adding anyhow::Context is nicer.

>+        }
>+
>+        bail!("stat known chunks failed - {err}");

Again, use `{err:?}` instead.

>+    }
>+
>     env.finish_backup()?;
>     env.log("successfully finished backup");

Also did a quick test which worked perfectly. When the problems above
are fixed you can consider:

Tested-by: Gabriel Goller <g.goller@proxmox.com>
Reviewed-by: Gabriel Goller <g.goller@proxmox.com>


_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel


  reply	other threads:[~2024-10-07  9:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-20 13:40 Christian Ebner
2024-10-07  9:47 ` Gabriel Goller [this message]
2024-10-07 11:34 ` Christian Ebner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241007094719.fp4h3we3ji3c622g@luna.proxmox.com \
    --to=g.goller@proxmox.com \
    --cc=pbs-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal