Giter VIP home page Giter VIP logo

Comments (6)

poulpreben avatar poulpreben commented on July 26, 2024

Hi @gveater. Can you please double check whether the job failed on a synthetic operation, such as incremental backup file merge or synthetic full creation? This is typically the reason for such reports.

from powershell.

poulpreben avatar poulpreben commented on July 26, 2024

Adding author @tdewin as well.

from powershell.

gveater avatar gveater commented on July 26, 2024

We are currently testing on how to move our copy to external media jobs so I have had multiple failures for various reasons on this job. The last two failure were unexpected failures, from me stopping the job. Before that there were a lot of media not found. This itself is a Backup Copy job. From my understanding it does a synthetic full with whatever backup is currently on that HDD.

from powershell.

tdewin avatar tdewin commented on July 26, 2024

Confirmed, this can be checked by running limited code below. Backup Copy Job (or backupsync) return status None

$jobtype = "BackupSync"
#$jobtype = "Backup"
$Jobs = @(Get-VBRJob | ? { $_.JobType -ieq $jobtype }) | Sort-Object -Property Name

$allsessions = Get-VBRBackupSession | ? { $_.jobtype -ieq $jobtype } 
$allorderdedsess = $allsessions | Sort-Object -Property CreationTimeUTC -Descending  

foreach ($Job in $Jobs) {
     $lastsession = $allorderdedsess | ? { $_.jobname -eq $Job.Name } | select -First 1
     if ($lastsession -ne $null) {
            write-host ("Name : {0} Last Result : {1}  Date : {2}" -f $Job.Name,$lastsession.Result,$lastsession.CreationTime)
     } else {
           write-host ("Could not find Session for {0}" -f $Job.Name)
     }
} 

from powershell.

tdewin avatar tdewin commented on July 26, 2024

Update is in pull request now. Code manually evaluates "Success". Case can be closed when PR is committed.

from powershell.

poulpreben avatar poulpreben commented on July 26, 2024

Closing. Fixed in PR #11. Thanks @tdewin and @gveater.

from powershell.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.