-
ober72
- Veeam Vanguard
- Posts: 702
- Liked: 142 times
- Joined: Jan 24, 2014 4:10 pm
- Full Name: Geoff Burke
- Contact:
Veeam 8 upgrade, change job to incremental forever
Hi Folks,
I have upgraded a few servers to Veeam 8. In Veeam 7 the jobs were set to use synthetic backups with a once a week transform into rollbacks in order to conserve space. If I remove the once a week synthetic and transform check marks will these jobs now convert automatically to the new Veeam 8 standard where the last vib in retention is merged into the orignal vbk?
Thanks
I have upgraded a few servers to Veeam 8. In Veeam 7 the jobs were set to use synthetic backups with a once a week transform into rollbacks in order to conserve space. If I remove the once a week synthetic and transform check marks will these jobs now convert automatically to the new Veeam 8 standard where the last vib in retention is merged into the orignal vbk?
Thanks
Geoff Burke
VMCA2024, VMCE2023, CKA
Veeam Vanguard
VMCA2024, VMCE2023, CKA
Veeam Vanguard
-
Gostev
- former Chief Product Officer (until 2026)
- Posts: 33084
- Liked: 8185 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
Hi, Geoff. Yes, they will convert as the retention processing continues. Thanks!
-
Giacomo_N
- Enthusiast
- Posts: 93
- Liked: 17 times
- Joined: Feb 15, 2013 1:56 pm
- Full Name: Giacomo
- Location: Italy
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
Hi Gostev, are you sure?Gostev wrote:Hi, Geoff. Yes, they will convert as the retention processing continues. Thanks!
I'm in the same boat of Geof, i want to try new forever-incremental instead the classic forward incremental, yesterday evening i've unchecks the marks for create the weekly full.
Now i've check the result and i can see only a new .vib without modification to the original last week .vbk, i've attach a screenshot..

-
dellock6
- VeeaMVP
- Posts: 6220
- Liked: 2007 times
- Joined: Jul 26, 2009 3:39 pm
- Full Name: Luca Dell'Oca
- Location: Varese, Italy
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
Maybe you didn't reached your retention period yet? What's the setup for this value?
Luca Dell'Oca
Principal Cloud Architect @ Veeam Software
https://www.virtualtothecore.com/
https://github.com/dellock6/
Veeam VMCE #1
Principal Cloud Architect @ Veeam Software
https://www.virtualtothecore.com/
https://github.com/dellock6/
Veeam VMCE #1
-
poulpreben
- Certified Trainer
- Posts: 1029
- Liked: 448 times
- Joined: Jul 23, 2012 8:16 am
- Full Name: Preben Berg
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
For anyone interested, here is a PowerShell script that will change all existing Backup Jobs to using the new forward incremental forever.
Code: Select all
# Get all backup jobs
$jobs = Get-VBRJob | Where-Object { $_.IsBackup -eq $true }
foreach ($job in $jobs) {
# Read current job settings
$options = $job.GetOptions()
# Select forward incremental
$options.BackupTargetOptions.Algorithm = "Increment"
# Disable synthetic fulls
$options.BackupTargetOptions.TransformFullToSyntethic = $false
# Disable transform previous chain into rollbacks
$options.BackupTargetOptions.TransformIncrementsToSyntethic = $false
# Disable active fulls
$options.BackupStorageOptions.EnableFullBackup = $false
# Apply new settings
# UNCOMMENT THE FOLLOWING LINE TO ACTUALLY APPLY SETTINGS
# $options = Set-VBRJobOptions -Job $job -Options $options
Write-Host "Changed settings for" $job.Name
}-
Giacomo_N
- Enthusiast
- Posts: 93
- Liked: 17 times
- Joined: Feb 15, 2013 1:56 pm
- Full Name: Giacomo
- Location: Italy
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
Hi Luca, probably i missed the "core concept" of the new backup mode, is it the .vbk change only after the retention period reached??dellock6 wrote:Maybe you didn't reached your retention period yet? What's the setup for this value?
If yes, i will reach the retention period in 60 days, but in that scenario, is it safe to keep 1 .vbk with that long chain?
Thank you in advance
-
veremin
- Product Manager
- Posts: 20752
- Liked: 2415 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Veeam 8 upgrade, change job to incremental forever
Yes.Hi Luca, probably i missed the "core concept" of the new backup mode, is it the .vbk change only after the retention period reached??
Yes, as long as, you follow the best practices.If yes, i will reach the retention period in 60 days, but in that scenario, is it safe to keep 1 .vbk with that long chain?
Thanks.
Who is online
Users browsing this forum: Google [Bot], Semrush [Bot] and 55 guests