VMware VM import fails when primary storage is a datastore cluster with multiple LUNs
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 ngày
- Mức phù hợp với người mới
- 48/100
- Loại issue
- Lỗi
- Độ rõ ràng
- Khá rõ ràng
- Mức độ hoạt động
- Sôi nổi
- Công nghệ
- java
- Lĩnh vực
- cloud, infrastructure
Hướng nghiên cứu
Bắt đầu bằng cách lần theo syncStoragePool và syncDatastoreClusterStoragePool trong server/src/main/java/com/cloud/storage/StorageManagerImpl.java, sau đó kiểm tra việc xử lý ModifyStoragePoolCommand trong VmwareResource.java và getDatastoresInDatastoreCluster() trong StoragepodMO.java. So sánh đường dẫn kết nối host trong DefaultHostListener.java với việc tra cứu VM không được quản lý trong UnmanagedVMsManagerImpl.java. Được xem là hoàn tất khi kết quả datastore-cluster không đầy đủ không còn được chấp nhận một cách âm thầm và đường dẫn đồng bộ hóa/nhập bị ảnh hưởng có bước xác minh.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
The required feature described as a wish
claude generated description for problem asked about in #12561
problem
VMware "Datastore Cluster" (Storage DRS pod) primary storage pools can end up with zero child-datastore entries in the storage_pool table, even though syncStoragePool reports success. When this happens, importing an existing/unmanaged VM whose disk lives on one of the cluster's underlying datastores fails with:
Storage pool for disk Hard disk 1 (460-2000) with datastore: <datastore-name> not found in zone ID: <zone-uuid>
Originally reported at: https://github.com/apache/cloudstack/discussions/12561
Root cause (from code inspection)
Child storage_pool rows for a datastore-cluster pool are only created when a live ModifyStoragePoolCommand round-trip to a connected ESXi host returns a non-empty datastoreClusterChildren list:
plugins/hypervisors/vmware/src/main/java/com/cloud/hypervisor/vmware/resource/VmwareResource.java(execute(ModifyStoragePoolCommand), around line 5291) callsStoragepodMO.getDatastoresInDatastoreCluster()to enumerate child datastores.vmware-base/src/main/java/com/cloud/hypervisor/vmware/mo/StoragepodMO.java(getDatastoresInDatastoreCluster(), lines ~41-44) reads thechildEntityproperty with no validation or retry — if vCenter's property collector returns an empty/partial list (e.g. permissions/RBAC restricting which datastores the CloudStack service account can see on that specific pod, or a transient inventory glitch), no exception is raised.server/src/main/java/com/cloud/storage/StorageManagerImpl.java(syncDatastoreClusterStoragePool(...), lines ~2760-2815) persists whatever child list comes back. An empty list simply results in "0 added, 0 removed" — there is no check that the returned child count is non-zero or matches expectations.- This sync path is triggered by host-connect events (
DefaultHostListener.hostConnect,engine/storage/volume/src/main/java/org/apache/cloudstack/storage/datastore/provider/DefaultHostListener.java, lines ~136-186) and by the explicitsyncStoragePoolAPI (StorageManagerImpl.syncStoragePool, lines ~2643-2699), which also only samples one arbitrary connected host to answer.
Net effect: if the first (and every subsequent) sync attempt for this specific pod happens to get an empty answer from whichever host was asked, the pool is silently left with no child rows forever, while the API/UI report the sync as successful. Other datastore clusters in the same environment are unaffected because their sync happened to succeed.
Downstream, getStoragePool(...) in server/src/main/java/org/apache/cloudstack/vm/UnmanagedVMsManagerImpl.java (lines ~516-551) does a generic path/name substring match over all pools in the cluster/zone — it works fine for datastore-cluster children when their row exists, so this is not a separate bug in the import code; it's a downstream symptom of the missing storage_pool row.
What versions of cloudstack and any infra components are you using
- CloudStack: 4.20.0.0
- Hypervisor: VMware (vCenter, ESXi)
- Primary storage: Datastore Cluster (Storage DRS pod) containing 4 LUNs
- Storage: HPE Alletra 5050 (FC/iSCSI LUNs presented as VMFS datastores)
The steps to reproduce the bug
- Create a VMware Datastore Cluster (Storage DRS pod) in vCenter containing multiple LUNs/datastores.
- Add the datastore cluster as CloudStack primary storage.
- Confirm in the
storage_pooltable that no child rows were created for the individual datastores (parent= the cluster pool's ID) — only the single parent/cluster row exists. - Run
syncStoragePoolagainst the pool — it completes successfully but still does not populate child rows. - Attempt to import an existing/unmanaged VM whose disk resides on one of the underlying datastores in that cluster.
- Import fails:
Storage pool for disk <disk> with datastore: <name> not found in zone ID: <zone>.
Note: other datastore clusters in the same environment, added the same way, do have correctly populated child rows — the failure appears to depend on whether the very first sync happened to get a complete answer from vCenter.
What to do about it?
Suggested fix directions:
- In
StoragepodMO.getDatastoresInDatastoreCluster()/VmwareResource.execute(ModifyStoragePoolCommand), treat an empty (or unexpectedly short)childEntity/datastoreClusterChildrenresult as suspicious rather than a normal success — e.g. log a warning, or retry against a different host before persisting. - In
StorageManagerImpl.syncDatastoreClusterStoragePool(...)/syncStoragePool(...), surface a warning (API response and/or logs) when a datastore-cluster sync returns zero child datastores for a pool that previously had none, instead of silently reporting success. - Consider having
syncStoragePooltry more than one connected host when the first host's answer looks incomplete, since host-level permissions/visibility to the storage pod can vary.
As a workaround, users can try re-triggering sync from a different host in the cluster, verify the vCenter service account's permissions on the affected storage pod/datastores, or remove and re-add the primary storage pool to force a fresh full discovery.
- Ngôn ngữ chính
- Java
- Star
- 3.1k
- Fork
- 1.4k
- Merge trung bình
- 6 ngày 20 giờ
- Pull request đã merge (30 ngày)
- 27
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Issue khác của apache/cloudstack
-
bug
Độ khó 1/5 Dưới một giờ Mức phù hợp với người mới 90/100
apache/cloudstack#14222 ·
-
create-kubernetes-binaries-iso.sh builds the ISO without setting a volume ID on EL8 based os's Đang mởbug component:kubernetes
Độ khó 1/5 Dưới một giờ Mức phù hợp với người mới 88/100
apache/cloudstack#14180 ·
-
bug component:projects component:UI
Độ khó 1/5 Dưới một giờ Mức phù hợp với người mới 88/100
apache/cloudstack#14070 · 5 bình luận ·
-
component:backup
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 76/100
apache/cloudstack#14013 ·
-
KVM agent fails to connect to Ceph RBD storage pool after upgrading Ceph client to Tentacle 20.2.4 Đang mởbug component:ceph
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
apache/cloudstack#13989 · 3 bình luận ·
Tất cả issue của apache/cloudstack
Issue tương tự
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 65/100
-
bug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
elastic/gradle-plugins#157 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
cryptomator/hub#497 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
johanhaleby/occurrent#1120 ·