This has a simple solution;
Jobs could be stuck in a loop. Ensure you have the last veeam update installed and also at last instance restart Veeam services using the following Powershell Script:
Get-process | where {($_.Name -like "Veeam*")} | stop-process -Force
Get-Service | where {($_.Name -like "Veeam*")-and ($_.Status -eq "Running")} | Stop-service -Force
Get-Service | where {($_.Name -like "Veeam*")-and ($_.Status -eq "Stopped")} | Start-service
Regards