NetBackup™ Web UI VMware Administrator's Guide
- Introducing the NetBackup web user interface
- Monitoring NetBackup
- Managing VMware servers
- Protecting VMs
- Instant access
- Instant rollback
- Continuous data protection
- VM recovery
- Troubleshooting VMware operations
Limiting concurrent CDP backup jobs
You can set a limit for the simultaneous CDP snapshot jobs that can run in the CDP gateway at a time. For example, if you protect 20 VMs, and you have set a limit of 5, then only 5 VMs can run simultaneous backups, and 15 VMs will be 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.
To set value to 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 that isCdp
resourceType
should beCdp-Backup
resourceName
represents the CDP gateway host name. It should be 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 POST API with 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.