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 47B5710701 for ; Thu, 10 Apr 2014 10:00:24 +0000 (UTC) Received: (qmail 10743 invoked by uid 500); 10 Apr 2014 10:00:23 -0000 Delivered-To: apmail-cloudstack-issues-archive@cloudstack.apache.org Received: (qmail 9677 invoked by uid 500); 10 Apr 2014 10:00:21 -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 8519 invoked by uid 500); 10 Apr 2014 10:00:19 -0000 Delivered-To: apmail-incubator-cloudstack-issues@incubator.apache.org Received: (qmail 8395 invoked by uid 99); 10 Apr 2014 10:00:18 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Apr 2014 10:00:18 +0000 Date: Thu, 10 Apr 2014 10:00:18 +0000 (UTC) From: "ASF subversion and git services (JIRA)" To: cloudstack-issues@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CLOUDSTACK-6371) KVM - secondary_storage count for account does not get incremted when snapshots are created. Count increases to the virtual size of snapshot when snapshot is in progress and then resets to 0 when snapshot is done. 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-6371?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13965188#comment-13965188 ] ASF subversion and git services commented on CLOUDSTACK-6371: ------------------------------------------------------------- Commit 85072cb6b9c33cb14b6d211935a1d2a557b02f69 in cloudstack's branch refs/heads/master from [~kishan] [ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=85072cb ] CLOUDSTACK-6371: Set snapshot size in copycommand answer during snapshot backup > KVM - secondary_storage count for account does not get incremted when snapshots are created. Count increases to the virtual size of snapshot when snapshot is in progress and then resets to 0 when snapshot is done. > --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: CLOUDSTACK-6371 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-6371 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the default.) > Affects Versions: 4.3.0 > Reporter: Kishan Kavala > Assignee: Kishan Kavala > Fix For: 4.4.0, 4.5.0 > > > Steps to reproduce the problem: > Set - Advanced zone set up with KVM (Rhel 6.3) hosts. > Create an account. > Deploy few Vms. > Take snapshots of "ROOT" volumes of few of the Vms. > Check the resource_count for "secondary_storage" for this account. > It is always set to 0. > Notice that this value gets set to the virtual size of the the Volume when snapshot is in Progress. > Once snapshot is done , it gets updated to 0. > mysql> select * from resource_count where account_id=4; > ---------------------------------------------------- > id account_id domain_id type count > ---------------------------------------------------- > 53 4 NULL user_vm 12 > 54 4 NULL public_ip 13 > 55 4 NULL volume 12 > 56 4 NULL snapshot 5 > 57 4 NULL template 0 > 58 4 NULL project 0 > 59 4 NULL network 1 > 60 4 NULL vpc 0 > 61 4 NULL cpu 12 > 62 4 NULL memory 1536 > 63 4 NULL primary_storage 103079215104 > 64 4 NULL secondary_storage 0 > ---------------------------------------------------- > 12 rows in set (0.00 sec) > mysql> select * from snapshots where account_id=4; > ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ > id data_center_id account_id domain_id volume_id disk_offering_id status path name uuid snapshot_type type_description size created removed backup_snap_id swift_id sechost_id prev_snap_id hypervisor_type version s3_id > ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ > 750 1 4 1 40 16 BackedUp NULL TestVM-tiny-host-1ps-0-4_ROOT-40_20140113223219 0696a291-7fe6-47d6-b4d4-0d489d7ddb3e 0 MANUAL 8589934592 2014-01-13 22:32:19 NULL NULL NULL NULL NULL KVM 2.2 NULL > 751 1 4 1 41 12 BackedUp NULL testnew_ROOT-41_20140113224709 3ba19873-8a90-49f5-8a5c-58d0c980fc2b 0 MANUAL 8589934592 2014-01-13 22:47:09 NULL NULL NULL NULL NULL KVM 2.2 NULL > 752 1 4 1 41 12 BackedUp NULL testnew_ROOT-41_20140113225245 d73d8c26-4f2a-4ead-801c-8e8cee42ab70 0 MANUAL 8589934592 2014-01-13 22:52:45 NULL NULL NULL NULL NULL KVM 2.2 NULL > 755 1 4 1 38 16 BackedUp NULL TestVM-tiny-host-1ps-0-2_ROOT-38_20140114020510 80672e8b-4a45-4070-9686-c68aee9c217d 0 MANUAL 8589934592 2014-01-14 02:05:10 NULL NULL NULL NULL NULL KVM 2.2 NULL > 756 1 4 1 40 16 BackedUp NULL TestVM-tiny-host-1ps-0-4_ROOT-40_20140116234727 db0300ec-9558-40eb-8244-a8fbef7ad9b4 0 MANUAL 8589934592 2014-01-16 23:47:27 NULL NULL NULL NULL NULL KVM 2.2 NULL > ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ > 5 rows in set (0.00 sec) -- This message was sent by Atlassian JIRA (v6.2#6252)