-
- Veeam Vanguard
- Posts: 701
- Liked: 138 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
VMCA2022, VMCE2023, CKA, CKAD
Veeam Vanguard, Veeam Legend
VMCA2022, VMCE2023, CKA, CKAD
Veeam Vanguard, Veeam Legend
-
- Chief Product Officer
- Posts: 31816
- Liked: 7302 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!
-
- Enthusiast
- Posts: 93
- Liked: 16 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..
-
- VeeaMVP
- Posts: 6166
- Liked: 1971 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 EMEA Cloud Architect @ Veeam Software
@dellock6
https://www.virtualtothecore.com/
vExpert 2011 -> 2022
Veeam VMCE #1
Principal EMEA Cloud Architect @ Veeam Software
@dellock6
https://www.virtualtothecore.com/
vExpert 2011 -> 2022
Veeam VMCE #1
-
- Certified Trainer
- Posts: 1025
- 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
}
-
- Enthusiast
- Posts: 93
- Liked: 16 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
-
- Product Manager
- Posts: 20415
- Liked: 2302 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: Bing [Bot], Regnor and 56 guests