From issues-return-73153-apmail-cloudstack-issues-archive=cloudstack.apache.org@cloudstack.apache.org Thu Sep 1 06:09:21 2016 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 D7B00196AB for ; Thu, 1 Sep 2016 06:09:21 +0000 (UTC) Received: (qmail 69961 invoked by uid 500); 1 Sep 2016 06:09:21 -0000 Delivered-To: apmail-cloudstack-issues-archive@cloudstack.apache.org Received: (qmail 69837 invoked by uid 500); 1 Sep 2016 06:09: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 69818 invoked by uid 500); 1 Sep 2016 06:09:21 -0000 Delivered-To: apmail-incubator-cloudstack-issues@incubator.apache.org Received: (qmail 69808 invoked by uid 99); 1 Sep 2016 06:09:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Sep 2016 06:09:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 889A72C1B7D for ; Thu, 1 Sep 2016 06:09:21 +0000 (UTC) Date: Thu, 1 Sep 2016 06:09:21 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: cloudstack-issues@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CLOUDSTACK-9481) Convert MyISAM table to InnoDB for consistency 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-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15454445#comment-15454445 ] ASF GitHub Bot commented on CLOUDSTACK-9481: -------------------------------------------- Github user koushik-das commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1670#discussion_r77118387 --- Diff: setup/db/db/schema-490to491.sql --- @@ -23,3 +23,11 @@ UPDATE `cloud`.`roles` SET `description`='Default user role' WHERE `id`=4 AND `role_type`='User' AND `description`='Default Root Admin role'; +ALTER TABLE cloud.load_balancer_cert_map ENGINE=INNODB; +ALTER TABLE cloud.monitoring_services ENGINE=INNODB; +ALTER TABLE cloud.nic_ip_alias ENGINE=INNODB; +ALTER TABLE cloud.sslcerts ENGINE=INNODB; +ALTER TABLE cloud.op_lock ENGINE=INNODB; +ALTER TABLE cloud.op_nwgrp_work ENGINE=INNODB; --- End diff -- For op_lock and op_nwgrp_work tables engine is MEMORY, not sure of the reason. Was there any perf. issues addressed? These exists since the start. > Convert MyISAM table to InnoDB for consistency > ---------------------------------------------- > > Key: CLOUDSTACK-9481 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-9481 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the default.) > Components: Management Server > Affects Versions: 4.9.0 > Reporter: Abhinandan Prateek > Assignee: Abhinandan Prateek > Fix For: 4.9.1 > > > These following tables in cloud schema > load_balancer_cert_map > monitoring_services > nic_ip_alias > sslcerts > and following in cloud_usage schema > quota_account > use MyISAM. There is not reason that these few tables use MyISAM and these should be altered to use Innodb -- This message was sent by Atlassian JIRA (v6.3.4#6332)