You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cloudstack.apache.org by "Sudhansu Sahu (JIRA)" <ji...@apache.org> on 2016/12/29 08:53:58 UTC

[jira] [Created] (CLOUDSTACK-9714) Previous pod_id still remains in the vm_instance table after VM migration with migrateVirtualMachineWithVolume

Sudhansu Sahu created CLOUDSTACK-9714:
-----------------------------------------

             Summary: Previous pod_id still remains in the vm_instance table after VM migration with migrateVirtualMachineWithVolume
                 Key: CLOUDSTACK-9714
                 URL: https://issues.apache.org/jira/browse/CLOUDSTACK-9714
             Project: CloudStack
          Issue Type: Bug
      Security Level: Public (Anyone can view this level - this is the default.)
          Components: Management Server
            Reporter: Sudhansu Sahu
            Assignee: Sudhansu Sahu


Issue Description:

Previous pod_id still remains in the vm_instance table after VM migration with migrateVirtualMachineWithVolume

Before migrateVirtualMachineWithVolume
{noformat}
mysql> select v.id,v.instance_name,h.name,v.pod_id as pod_id_from_instance_tb,h.pod_id as pod_id_from_host_tb from vm_instance v, host h where v.host_id=h.id and v.id=27;
+--------+-----------------+---------------------------------------+-------------------------+---------------------+
| id | instance_name | name | pod_id_from_instance_tb | pod_id_from_host_tb |
+--------+-----------------+---------------------------------------+-------------------------+---------------------+
| 27 | i-3-27-VM | xenserver-nvjxksqs | 104 | 104 |
+--------+-----------------+---------------------------------------+-------------------------+---------------------+
1 row in set (0.00 sec)
{noformat}
After migrateVirtualMachineWithVolume
{noformat}
mysql> select v.id,v.instance_name,h.name,v.pod_id as pod_id_from_instance_tb,h.pod_id as pod_id_from_host_tb from vm_instance v, host h where v.host_id=h.id and v.id=27;
+--------+-----------------+--------------------------------------+-------------------------+---------------------+
| id | instance_name | name | pod_id_from_instance_tb | pod_id_from_host_tb |
+--------+-----------------+--------------------------------------+-------------------------+---------------------+
| 27 | i-3-27-VM | xenserver-hnkwhblp | 104 | 63 |
+--------+-----------------+--------------------------------------+-------------------------+---------------------+
1 row in set (0.00 sec)​
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)