Return-Path: X-Original-To: apmail-cloudstack-issues-archive@www.apache.org Delivered-To: apmail-cloudstack-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AFF6910A42 for ; Wed, 24 Jul 2013 16:17:55 +0000 (UTC) Received: (qmail 78981 invoked by uid 500); 24 Jul 2013 16:17:53 -0000 Delivered-To: apmail-cloudstack-issues-archive@cloudstack.apache.org Received: (qmail 78884 invoked by uid 500); 24 Jul 2013 16:17:53 -0000 Mailing-List: contact issues-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list issues@cloudstack.apache.org Received: (qmail 78862 invoked by uid 500); 24 Jul 2013 16:17:52 -0000 Delivered-To: apmail-incubator-cloudstack-issues@incubator.apache.org Received: (qmail 78856 invoked by uid 99); 24 Jul 2013 16:17:52 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Jul 2013 16:17:52 +0000 Date: Wed, 24 Jul 2013 16:17:52 +0000 (UTC) From: "Rajesh Battala (JIRA)" To: cloudstack-issues@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CLOUDSTACK-3781) Unable to resize disk on VmWare with Zone wide storage MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CLOUDSTACK-3781?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13718529#comment-13718529 ] Rajesh Battala commented on CLOUDSTACK-3781: -------------------------------------------- Nice question Swamy garu, while adding the ZWPS, we have to definitely choose one hypervisor(KVM, VmWare) [assuming kvm is selected]. then the created zwps pool will be added to all the KVM hosts present in the zone. id: 2 name: zwps1 uuid: f0802731-62fe-3a85-b81a-98ae47e845cf pool_type: NetworkFilesystem port: 2049 data_center_id: 1 pod_id: NULL cluster_id: NULL used_bytes: 580405100544 capacity_bytes: 879609315328 host_address: 10.102.192.100 user_info: NULL path: /cpg_vol/rajesh/zwps1 created: 2013-07-24 16:11:44 removed: NULL update_time: NULL status: Up storage_provider_name: DefaultPrimary scope: ZONE hypervisor: KVM managed: 0 capacity_iops: NULL 2 rows in set (0.00 sec) zwps1 is a primary storage added with ZONE scope, while creating it I have choosen KVM as hypervisor. At any time ZWPS will be set to only one type of Hypervisor. > Unable to resize disk on VmWare with Zone wide storage > ------------------------------------------------------ > > Key: CLOUDSTACK-3781 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-3781 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the default.) > Components: Volumes > Affects Versions: 4.2.0 > Environment: Cloudstack build : 257 [http://repo-ccp.citrix.com/releases/ASF/rhel/6.3/4.2/CloudPlatform-4.2-257-rhel6.3.tar.gz] > Hypervisor: Vmware Esxi 5.1 > Storage: NFS for both primary and secondary > Reporter: Pavan Kumar Bandarupally > Priority: Blocker > Fix For: 4.2.0 > > Attachments: MS Log.rar > > > When we create an instance on vmware and try to resize the data disk , it gives an error saying "Can't resize a volume that has never been attached, not sure which hypervisor type. Recreate volume to resize" > An InvalidParameterValueException is being thrown as the hypervisor is getting selected as none. The problem is when the storage is added at zone level. The cluster_id is getting selected as NULL in this case. If the storage is added at cluster level, things work fine. Please see the db query below: > mysql> SELECT c.hypervisor_type from volumes v, storage_pool s, cluster c where v.pool_id = s.id and s.cluster_id = c.id and v.id = 9; > Empty set (0.00 sec) > mysql> select * from storage_pool; > +----+-------------+--------------------------------------+-------------------+------+----------------+--------+------------+---------------+----------------+--------------+-----------+----------------------------+---------------------+---------+-------------+--------+-----------------------+-------+------------+---------+---------------+ > | id | name | uuid | pool_type | port | data_center_id | pod_id | cluster_id | used_bytes | capacity_bytes | host_address | user_info | path | created | removed | update_time | status | storage_provider_name | scope | hypervisor | managed | capacity_iops | > +----+-------------+--------------------------------------+-------------------+------+----------------+--------+------------+---------------+----------------+--------------+-----------+----------------------------+---------------------+---------+-------------+--------+-----------------------+-------+------------+---------+---------------+ > | 1 | TeamStorage | 0f658e18-7e6a-3442-9c36-de5c56926e26 | NetworkFilesystem | 2049 | 1 | NULL | NULL | 2001531498496 | 5902284800000 | 10.147.28.7 | NULL | /export/home/pavan/primary | 2013-07-24 15:53:00 | NULL | NULL | Up | DefaultPrimary | ZONE | VMware | 0 | NULL | > +----+-------------+--------------------------------------+-------------------+------+----------------+--------+------------+---------------+----------------+--------------+-----------+----------------------------+---------------------+---------+-------------+--------+-----------------------+-------+------------+---------+---------------+ > 1 row in set (0.00 sec) > mysql> select * from storage_pool\G > *************************** 1. row *************************** > id: 1 > name: TeamStorage > uuid: 0f658e18-7e6a-3442-9c36-de5c56926e26 > pool_type: NetworkFilesystem > port: 2049 > data_center_id: 1 > pod_id: NULL > cluster_id: NULL > used_bytes: 2001531498496 > capacity_bytes: 5902284800000 > host_address: 10.147.28.7 > user_info: NULL > path: /export/home/pavan/primary > created: 2013-07-24 15:53:00 > removed: NULL > update_time: NULL > status: Up > storage_provider_name: DefaultPrimary > scope: ZONE > hypervisor: VMware > managed: 0 > capacity_iops: NULL > 1 row in set (0.00 sec) > Repro Steps: > ---------------- > Create an instance with a data disk attached. > Go to the data disk and try to resize (increase) it. > An error will be thrown. > Note: Marking it as a blocker as we can't test Disk Re-size feature on VmWare because of this. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira