Roughly 2 weeks ago one of our vCloud Director tenants reported an error when attempting to increase a disk on their VM. They were told to contact their cloud administrator (yay). When we tried to perform the increase, we received an error we’d never seen before: “java.lang.NullPointerException”.
Here is what we checked:
- Confirm the tenant Org vDC has the appropriate resources available (this was an ‘Allocation’ style vDC).
- Check the status of vCloud to vCenter connection and perform a vCenter Reconnect followed by a Refresh. This actually exposed another issue written about.
- Check Log Insight for entries similar to this. We found the entries, but even after viewing the log in context we couldn’t find a cause or correlated action.
- We tested the same changes against other Org vDCs. We found that newly created test Org vDCs were fine and unaffected by whatever the root issue was. Only some of our existing Org vDCs experienced these issues.
- We found that it wasn’t limited to disk changes. Performing any action on infrastructure within these affected Org vDCs resulted in the same error.
We spent longer than we should’ve trawling through the vCloud logs, and ended up logging an SR with VMware.
After going through the intricate details of what we were experiencing and the testing we’d performed, VMware requested a copy of our vCloud databases and a list of affected VMs, vApps and Org vDCs.
It was a nail biting few days, but eventually our assigned tech got back to us and found the cause of this error. There was a stale resgroup-id record in the org_prov_vdc table. Let me explain…
Cause
There are 3 tables in the vCloud Director database that track Org vDC entities and their corresponding Org vDC resource pool and the parent vCenter resource pool. These 3 are supposed to be kept up to date/in sync by vCD:
- vrp – this tracks Org vDC resource pool names in vCenter that correspond to Org vDCs. It also tracks the resource model (allocated, PAYG) and any compute resource settings that are applied to the resource pool.
- vrp_rp – stores the vrp_id from the vrp table, along with the sub_rp_moref value for that vrp.
- org_prov_vdc – stores data related more to the Org vDC entity itself (name, description, network pools, VM folder Moref IDs, resource pool Moref IDs etc)
Notice the bolded “resource pool Moref IDs” comment above. This is important, as this value should be the same as what’s stored in the sub_rp_moref column in the vrp_rp table.
Disclaimer: all of the steps below were performed with VMware support.
You can find out if a particular Org vDC has a stale record in the org_prov_vdc table by performing the following queries against your vCloud Director database:
|
|
This will return the vrp ID for your Org vDC. Replace the bold ID in the following query with the ID you received in the last step:
|
|
Note; this ID has been changed to protect the innocent. Yours will differ.
From the above SELECT query, you’ll get a resource group ID similar to this:
|
|
Run this query to find out what the current value is in org_prov_vdc table. Make sure to change the Org vDC name inside the percent signs.
|
|
If the values from the vrp_rp table and the org_prov_vdc table do not match, then you’ve got a stale moref in the org_prov_vdc table.
Fix
To fix this stale record take the resgroup ID, and the Org vDC name and run the following query:
|
|
All done. You should now be able to make changes to your vCloud objects.
If you’d like to find all Org vDCs with stale moref IDs in the database, I’ve written a small query that can do that for you:
|
|
The root cause for all of this has not been found. I’m hoping VMware support can provide us with a little more information so I can update this post.
Update
VMware were not able to provide us with a root cause, but we suspect our merging of multiple provider vDCs was the problem. It’s very possible we had stale records or misconfigured tables. This deployment had been around since vCloud Director v1.0.