NetBackup™ for VMware Administrator's Guide
- Introduction
- Required tasks: overview
- Configuring RBAC roles for VMware administrators
- Notes and prerequisites
- VMware vSphere privileges
- Managing VMware servers
- About VMware discovery
- Add VMware servers
- Change resource limits for VMware resource types
- Configuring backup policies for VMware
- Backup options on the VMware tab
- Exclude disks tab
- Configuring a VMware Intelligent Policy
- About the Reuse VM selection query results option
- Use Accelerator to back up virtual machines
- Configuring protection plans for VMware
- Malware scan
- Instant access
- Instant rollback
- Continuous data protection
- Backing up virtual machines
- VM recovery
- VMware agentless restore
- Restoring Individual files and folders from VMware backups
- Using NetBackup to back up Cloud Director environments
- Recover VMware Cloud Director virtual machines
- Restore virtual machines with Instant Recovery
- Protecting VMs using hardware snapshots and replication
- Best practices and more information
- Troubleshooting VMware operations
- NetBackup logging for VMware
- Snapshot error encountered (status code 156)
- Appendix A. Configuring services for NFS on Windows
- About configuring services for NFS on Windows 2012 or 2016 (NetBackup for VMware)
- Appendix B. Backups of VMware raw devices (RDM)
Limiting concurrent CDP backup jobs
You can set a limit for the simultaneous CDP snapshot jobs that can run on the CDP gateway at a time. For example, if you protect 20 VMs and you set a limit of 5, then only 5 VMs can run simultaneous backups, and 15 VMs stay in queue. This setting is required for optimized use of your system and network resources. By default, the resource limit value is 0, representing no limit.
See Defining the CDP gateway . for information on how to do it on NetBackup version 10.0 onwards. For NetBackup 9.1 follow the procedure described below.
To set a resource limit, we have the following API:
POST /config/resource-limits
{ "data": [ { "type": "resource-limits", "id": "string", "attributes": { "resources": [ { "resourceType": "string", "resourceName": "string", "resourceLimit": 0, "additionalData": "string" } ] } } ] }
Here,
Id
represents the workload, which isCdp
resourceType
should beCdp-Backup
resourceName
represents the CDP gateway host name. It should be the same as specified in the protection plan. If you keep an empty string forresourceName
, theresourceLimit
value is set as a global limit, which is applicable to all the configured CDP gateways.The
resourceLimit
value sets the value of backup jobs for that gateway.
To retrieve the list of resource limits for a CDP workload type, use:
GET - /config/resource-limits/cdp
To update the value of resourceLimit
for particular gateway, hit the POST API with the change in resourceLimit
for the same record.
To delete the specified granular resource limits, use:
DELETE - /config/resource-limits
Only the resource limit set for a particular resource can be deleted. Provide both the resource type and the specific resource of that type.