From: Christian Ebner <c.ebner@proxmox.com>
To: "Michael Köppl" <m.koeppl@proxmox.com>, pbs-devel@lists.proxmox.com
Subject: Re: [PATCH proxmox-backup v3 3/3] fix #7400: proxy: self-heal corrupted job statefiles
Date: Fri, 3 Apr 2026 13:25:34 +0200 [thread overview]
Message-ID: <44d12440-0162-4d99-bbb3-d859e981720d@proxmox.com> (raw)
In-Reply-To: <DHJDYJ1U9OAH.2NGIVGZ7KV441@proxmox.com>
On 4/3/26 10:43 AM, Michael Köppl wrote:
> On Thu Apr 2, 2026 at 6:50 PM CEST, Christian Ebner wrote:
>> One nit inline.
>>
>> Other than that:
>>
>> Reviewed-by: Christian Ebner <c.ebner@proxmox.com>
>>
>> On 3/25/26 5:06 PM, Michael Köppl wrote:
>>> Update update_job_last_run_time to transition JobState::Unknown into
>>> JobState::Created so the corrupted statefile is overwritten. In
>>> addition, update the scheduling loops to actively overwrite corrupted
>>> statefiles and return the time for the next scheduled run of the
>>> affected job.
>>>
>>> Signed-off-by: Michael Köppl <m.koeppl@proxmox.com>
>>> ---
>>> src/bin/proxmox-backup-proxy.rs | 4 +++-
>>> src/server/jobstate.rs | 2 +-
>>> 2 files changed, 4 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/src/bin/proxmox-backup-proxy.rs b/src/bin/proxmox-backup-proxy.rs
>>> index c1fe3ac15..71d8566f4 100644
>>> --- a/src/bin/proxmox-backup-proxy.rs
>>> +++ b/src/bin/proxmox-backup-proxy.rs
>>> @@ -564,6 +564,7 @@ async fn schedule_datastore_garbage_collection() {
>>> Ok(time) => time,
>>> Err(err) => {
>>> eprintln!("could not get last run time of {worker_type} {store}: {err}");
>>> + let _ = jobstate::update_job_last_run_time(worker_type, &store);
>>> continue;
>>> }
>>> };
>>> @@ -936,7 +937,8 @@ fn check_schedule(worker_type: &str, event_str: &str, id: &str) -> bool {
>>> Ok(time) => time,
>>> Err(err) => {
>>> eprintln!("could not get last run time of {worker_type} {id}: {err}");
>>> - return false;
>>> + let _ = jobstate::update_job_last_run_time(worker_type, id);
>>> + proxmox_time::epoch_i64() - 30
>>
>> nit: Should we define the offset from epoch here as constant? This is
>> used in several places now and having one common constant with a
>> meaningful name would help with code quality IMHO.
>
> Thanks for a having another look at this version! I agree, that's a good
> idea. What do you think of SCHEDULE_FALLBACK_OFFSET?
Fine by me, yes!
>
>>
>>> }
>>> };
>>>
>>> diff --git a/src/server/jobstate.rs b/src/server/jobstate.rs
>>> index 4163656e8..214691965 100644
>>> --- a/src/server/jobstate.rs
>>> +++ b/src/server/jobstate.rs
>>> @@ -156,7 +156,7 @@ pub fn update_job_last_run_time(jobtype: &str, jobname: &str) -> Result<(), Erro
>>> state,
>>> updated: Some(time),
>>> },
>>> - JobState::Unknown => bail!("cannot update last run time for unknown job state"),
>>> + JobState::Unknown => JobState::Created { time },
>>> };
>>> job.write_state()
>>> }
>
next prev parent reply other threads:[~2026-04-03 11:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-25 16:06 [PATCH proxmox-backup v3 0/3] fix #7400: improve handling of " Michael Köppl
2026-03-25 16:06 ` [PATCH proxmox-backup v3 1/3] api: move statefile loading into compute_schedule_status Michael Köppl
2026-04-02 16:22 ` Christian Ebner
2026-04-03 11:23 ` Michael Köppl
2026-03-25 16:06 ` [PATCH proxmox-backup v3 2/3] fix #7400: api: gracefully handle corrupted job statefiles Michael Köppl
2026-04-02 16:35 ` Christian Ebner
2026-03-25 16:06 ` [PATCH proxmox-backup v3 3/3] fix #7400: proxy: self-heal " Michael Köppl
2026-04-02 16:50 ` Christian Ebner
2026-04-03 8:44 ` Michael Köppl
2026-04-03 11:25 ` Christian Ebner [this message]
2026-04-03 13:28 ` superseded: [PATCH proxmox-backup v3 0/3] fix #7400: improve handling of " Michael Köppl
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=44d12440-0162-4d99-bbb3-d859e981720d@proxmox.com \
--to=c.ebner@proxmox.com \
--cc=m.koeppl@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox