XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    VMware migration tool: we need your feedback!

    Scheduled Pinned Locked Moved Migrate to XCP-ng
    318 Posts 37 Posters 174.7k Views 30 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • K Offline
      KPS Top contributor @KPS
      last edited by

      Hi!

      I am still struggeling with the VMWare migration tool.

      According to the docs, it should be possible to "warm-migrate" a VM, but when I try to, I am getting errors:

      "message": "500 Internal Server Error https://vcenter/folder/InetTS00_U20.04/InetTS00_U20.04-flat.vmdk?dcPath=HZ&dsName=OpenE-2_vmware-1_LUN2",
      

      What is the "right" way to migrate a running VM?

      florentF 1 Reply Last reply Reply Quote 0
      • florentF Offline
        florent Vates 🪐 XO Team @KPS
        last edited by florent

        @KPS It should, but there are some case where the esxi lock all the files of a VM, and other where it only locks the last snapshot. We're still working on the exact limit, what is the version of esxi used ? what storage do you use ( local VMFS, iscsi, NFS, ... ) ?

        In parallel we're putting the finishing touch of a huge change that give a big speedup. that way the penalty of stopping the VM will be lighter. You can test by switching to the branch xva_generation
        https://github.com/vatesfr/xen-orchestra/pull/7323

        fbeauchamp opened this pull request in vatesfr/xen-orchestra

        closed Import disks from ESXi to XCP-ng using XVA format #7323

        K 1 Reply Last reply Reply Quote 0
        • K Offline
          KPS Top contributor @florent
          last edited by

          @florent
          Thank you for your answer. I am using vSphere 7 with iSCSI-storage.
          Can you give me a hint on the "most stable" way to migrate?

          florentF 1 Reply Last reply Reply Quote 0
          • florentF Offline
            florent Vates 🪐 XO Team @KPS
            last edited by

            @KPS the most stable is always to stop the VMs
            Trying to warm migrate a running VM between different hypervisor is always tricky, if not brittle, and we work to harden this process, define more clearly the limits and extends the possibilty (for example vsan)

            What are the rough sizes of the VMs ? how many VM ? What is the timeframe of the full migration ?

            Do you think you can give a try to the xva import on a stopped VM ? on some of my tests, this migration is completely saturating my network link and my disks, as shown in the PR. The fastest way is to have the XO doing the migration directly in the ESXI. As an additional bonus, the disk produced is thin

            1 Reply Last reply Reply Quote 1
            • N Offline
              neologic
              last edited by

              When migrating VMs from ESXi, the CPU count and Memory allocation is taken over to XCP-ng.
              That's all fine for me.
              However, after import, the static min memory allocation cannot be reduced.
              Is there a workaround?

              [02:56 xcp01 ~]# xe vm-param-get uuid=... param-name=memory-static-min
              8589934592
              [02:57 xcp01 ~]# xe vm-memory-static-range-set uuid=... min=4294967296 max=8589934592
              The dynamic memory range violates constraint static_min <= dynamic_min <= dynamic_max <= static_max.

              1 Reply Last reply Reply Quote 0
              • olivierlambertO Offline
                olivierlambert Vates 🪐 Co-Founder CEO
                last edited by

                If you want to change the min, just change the min not the whole range 🙂

                1 Reply Last reply Reply Quote 0
                • N Offline
                  neologic
                  last edited by

                  Hello Olivier

                  Min value is deactivated and not changeable via GUI.

                  However, I found out, that the static max value can be changed below the currently set static min value. (looks a bit strange to me?)

                  Example:
                  before change
                  => min 8GB max 8GB
                  change max value via GUI to 4GB
                  after change
                  => min 4GB max 4GB
                  Then change the max value to 8GB again.
                  => min 4GB max 8GB

                  Best regards
                  Thomas

                  1 Reply Last reply Reply Quote 0
                  • olivierlambertO Offline
                    olivierlambert Vates 🪐 Co-Founder CEO
                    last edited by

                    Yes, because there's no reason to modify the static min. I was asking why are you trying to change the whole range via the CLI.

                    But first, what do you want to achieve functionally speaking?

                    1 Reply Last reply Reply Quote 0
                    • N Offline
                      neologic
                      last edited by

                      To be able to start with dynamic memory at 4GB (min max) for the Windows Guest.
                      And then if needed, to be able, to expand to 8GB (min max) on the fly.
                      However, it seems, that the Windows Guest (2022 Server) always sees static max correct?

                      1 Reply Last reply Reply Quote 0
                      • olivierlambertO Offline
                        olivierlambert Vates 🪐 Co-Founder CEO
                        last edited by olivierlambert

                        Do you really need dynamic memory? I would prefer to avoid it if you can. Each migration will deflate the VM to the dynamic min, which is a cause of a lot of crashes and migration issues (if not taken into account, eg dynamic too low vs current usage). Keep it with static as far as possible.

                        1 Reply Last reply Reply Quote 0
                        • N Offline
                          neologic
                          last edited by

                          Ok. Thank you for the advise.
                          Will follow as recommended.
                          Best regards

                          1 Reply Last reply Reply Quote 0
                          • R Offline
                            Riven
                            last edited by

                            Any plans to check how many vNICs there are and allow us to map each one correctly.

                            All of our vmware VMs have multiple vNICs and are in different port-groups.

                            Its not a major hassle to change them post-migration - just a nice-to-have.

                            1 Reply Last reply Reply Quote 0
                            • olivierlambertO Offline
                              olivierlambert Vates 🪐 Co-Founder CEO
                              last edited by

                              You mean to map each VIF to each Network of your choice?

                              R 1 Reply Last reply Reply Quote 0
                              • R Offline
                                Riven @olivierlambert
                                last edited by

                                @olivierlambert - Yes, so when we do a V2V there is only 1 VIF listed to put the migrated VIFs in to, even if the VM has 5 VIFs

                                Is it possible to query each vmx and allow us to select a 'network' for each VIF that it has?

                                florentF 1 Reply Last reply Reply Quote 0
                                • olivierlambertO Offline
                                  olivierlambert Vates 🪐 Co-Founder CEO
                                  last edited by

                                  Question for @florent

                                  1 Reply Last reply Reply Quote 0
                                  • florentF Offline
                                    florent Vates 🪐 XO Team @Riven
                                    last edited by

                                    @Riven said in VMware migration tool: we need your feedback!:

                                    @olivierlambert - Yes, so when we do a V2V there is only 1 VIF listed to put the migrated VIFs in to, even if the VM has 5 VIFs

                                    Is it possible to query each vmx and allow us to select a 'network' for each VIF that it has?

                                    not for now

                                    1 Reply Last reply Reply Quote 0
                                    • R Offline
                                      rtjdamen @olivierlambert
                                      last edited by

                                      @olivierlambert I wanted to comment on this topic, we have migrated around 450 vms in 3 months using this feature, it really was a game changer and without it we were never able to make the step to XCP-NG. during the migration process we saw the feature being improved, overall speed and reliability were great. Compliments on this feature and i think it will help a lot of future customers migrating to XCP-NG.

                                      1 Reply Last reply Reply Quote 1
                                      • T Offline
                                        tcp_len
                                        last edited by olivierlambert

                                        Migration fails, here is the raw log;

                                        {
                                          "id": "0lxdi3kqv",
                                          "properties": {
                                            "name": "importing vms 14",
                                            "userId": "9045a9e7-f9b2-44fd-81e9-02c1ea88b37b",
                                            "total": 1,
                                            "done": 0,
                                            "progress": 0
                                          },
                                          "start": 1718297723335,
                                          "status": "interrupted",
                                          "updatedAt": 1718298405138,
                                          "tasks": [
                                            {
                                              "id": "c3bsox2ydxp",
                                              "properties": {
                                                "name": "importing vm 14"
                                              },
                                              "start": 1718297723339,
                                              "status": "pending",
                                              "tasks": [
                                                {
                                                  "id": "lvtzb0k3sc9",
                                                  "properties": {
                                                    "name": "connecting to 10.x.x.12"
                                                  },
                                                  "start": 1718297723341,
                                                  "status": "success",
                                                  "end": 1718297723756,
                                                  "result": {
                                                    "_events": {},
                                                    "_eventsCount": 0
                                                  }
                                                },
                                                {
                                                  "id": "n6tsha4ebu",
                                                  "properties": {
                                                    "name": "get metadata of 14"
                                                  },
                                                  "start": 1718297723756,
                                                  "status": "pending"
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                        
                                        DanpD 1 Reply Last reply Reply Quote 0
                                        • DanpD Offline
                                          Danp Pro Support Team @tcp_len
                                          last edited by

                                          @tcp_len We recently released a Vmware migration checklist that you can view here -- https://help.vates.tech/kb/en-us/37/133

                                          Frankly, that log doesn't give us much to go on so you will need to provide more details if you want further assistance, ie:

                                          • ESXi version
                                          • Type of datastore
                                          • Version of XOA or current commit if using XO from sources
                                          • XCP host version; fully patched?
                                          • Warm or cold migration?
                                          • Does the VM have any snapshots?
                                          • etc
                                          T 1 Reply Last reply Reply Quote 1
                                          • T Offline
                                            tcp_len @Danp
                                            last edited by

                                            @Danp

                                            1. ESXI version 6.5
                                            2. Data Store - VMFS5
                                            3. XOA f7220852-f0c4-4319-874d-f45b20ce911b-image.png
                                            4. XCP - Welcome To XCP-Ng 8.2.1
                                            5. Cold Migraration
                                            6. No Snapshots

                                            From the checklist posted, I should uninstall the Vmware tools before I attempt migration as well as run #yum update on the XCP host.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post