Requested memory is more than the available memory placement: 8,800 MBVMware Aria Automation 8.18.x
The error is caused by an enforced memory limit configured under Group Resource Placement (GRP) associated with the project. Although vCenter has available memory, Aria Automation evaluates memory placement against this limit. If active deployments under the same GRP exceed or nearly reach the configured memory limit, new memory allocations such as during a resize, will fail.
vracli dev psql provisioning-dbSELECT custom_properties->>'__groupResourcePlacementLink' AS grp_link, id, nameFROM compute_stateWHERE id = '<VM_UUID>';/provisioning/resources/group-placements/################-####-####-####-####################SELECT memory_limitFROM group_resource_placement_stateWHERE document_self_link = '<GRP_LINK>';
Note: Replace <GRP_LINK> with the actualy value pulled from Step #1.SELECT SUM(cd.total_memory_bytes)FROM compute_description cdINNER JOIN compute_state cs ON cd.document_self_link = cs.description_linkWHERE cs.type = 'VM_GUEST' AND cs.lifecycle_state != 'RETIRED' AND cs.document_update_action IN ('POST', 'PUT', 'PATCH') AND cs.custom_properties->>'__groupResourcePlacementLink' = '<GRP_LINK>' AND (cs.document_expiration_time_micros = 0 OR cs.document_expiration_time_micros > (EXTRACT(EPOCH FROM NOW()) * 1000000)::BIGINT);
Note: This will return the current memory in bytes) consumed under this Project.Increase the memory allocation within the Project configuration, then retry the resize request.