Virtual Machine Limits |
|
CPU | Limits |
Virtual CPUs per Virtual Machine | 16 |
Memory | |
RAM per Virtual Machine | 128 GB |
Storage | |
Virtual disks (including CD-ROM) per Virtual Machine | 16 |
Virtual CD-ROM drives per Virtual Machine | 1 |
Virtual Disk Size (NFS) | 2TB minus 4 MB |
Virtual Disk Size (LVM) | 2TB minus 4 MB |
Networking | |
Virtual NICs per Virtual Machine | 7 |
XenServer Host Limits |
|
CPU | |
Logical processors per host | 160 |
Virtual CPUs per host | 900 |
Concurrent VMs per host | 150 |
Concurrent XenDesktop VMs per host | 150 |
Concurrent PVS VMs per host | 150 |
Concurrent XenDesktop VMs using IntelliCache per host | 150 |
Concurrent protected VMs per host with HA enabled | 60 |
Memory | |
RAM per host | 1 TB |
Storage | |
Concurrent active virtual discs per host | 512 |
Networking | |
Physical NICs per host | 16 |
Physical NICs per network bond | 4 |
Virtual NICs per host | 512 |
VLANs per host | 800 |
Pass-through | |
GPUs per host | 4 |
Resource Pool Limits |
|
CPU | |
Hosts per resource pool | 16 |
Networking | |
VLANS per resource pool | 800 |
Active hosts per cross-server private network | 16 |
Cross-server private networks per resource pool | 16 |
Virtual NICs per cross-server private network | 16 |
Cross-server private network virtual NICs per resource pool | 256 |
Hosts per vSwitch controller | 64 |
Virtual NICs per vSwitch controller | 1024 |
Virtual machines per vSwitch controller | 1024 |
Disaster Recovery | |
Concurrent exports via Virtual Machine Protection Recovery | 2 |
Integrated Site Recovery storage repositories per resource pool | 8 |
Storage | |
Paths to a LUN | 8 |
Multi-pathed LUNs per host | 150 |
VDIs per SR | 600 |
Storage XenMotion | |
(non-CDROM) VDIs per VM | 6 |
Snapshots per VM | 1 |
Concurrent transfers | 3 |
XenCenter | |
Concurrent operations per pool | 25 |
Hi and thanks for bloggin!
Do you know if it’s possible to get greater VMs then 2 TB?
Is it possible to bypass this limit? If not: Is it possible to
merge several disks within a VM?
What I need is a VM with one Volume and 5.5 TB.
Best regards
Marco
Marco,
Although it is possible to create VMs greater than 2TB it is not officially supported. The way to bypass this limit is by using the following procedure:
Find the uuid of the SR:
root@xen~]# xe sr-list
uuid ( RO) : a55e5f09-8fef-4b5d-8dae-9410d630f205
name-label ( RW): SATA Drive1
name-description ( RW): Hardware HBA SR
host ( RO):
type ( RO): lvmohba
content-type ( RO):
Get the volume group device name:
root@xen~]# vgs | awk ‘{print $1}’ | grep a55e5f09-8fef-4b5d-8dae-9410d630f205
VG_XenStorage-a55e5f09-8fef-4b5d-8dae-9410d630f205
Create a new logical volume, with a proper name:
Change the volume size (5T in example below) to specify the size of your VDI
root@xen~]# lvcreate -L5T -n”LV-“$(uuidgen) VG_XenStorage-a55e5f09-8fef-4b5d-8dae-9410d630f205
Logical volume “LV-4e3da1e4-9e1a-4e12-96a1-d3c233efc0d5” created
Scan the SR:
root@xen~]# xe sr-scan uuid=a55e5f09-8fef-4b5d-8dae-9410d630f205
I am not aware of any way to merge multiple disks within a VM.
Hi Pablo
Big thx for your help 🙂
It was not so easy to say the vm, that it have to use the new volume now,
but with a small workaround I shaked the baby.
I think it’s fair to post here the important steps, so further visitors
with the same problem can access this info directly.
Okay let’s start, after creation of the new volume with steps above I did this:
1:
– Create new VM in XenCenter
– Choose small disk
– Insert OS-install-cd
– Start VM, wait till setup-screen appears
2:
– Choose storage-tab for the new vm -> attach the big disk
– Delete the small setup-disk
3:
Now we’re not able to start the VM again, because the bootloader does not
find the correct disk. Make sure the DVD-Option is still selected in Bootmenu
for the new VM.
4:
– Change to the console of the xenserver and execute:
# xe vm-param-set HVM-boot-policy=BIOS\ order uuid=UUID-OF-YOUR-NEW-VM
5:
Start your VM and install the new OS by using the new big disk
Best regards
Marco