mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
schema: add empty DB upgrade path from 4.14.0.0 to 4.15.0.0 (#4092)
engine/schema: add empty DB upgrade path from 4.14.0.0 to 4.15.0.0 Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
38298d1d5a
commit
d0d346524b
@ -68,6 +68,7 @@ import com.cloud.upgrade.dao.Upgrade41120to41200;
|
|||||||
import com.cloud.upgrade.dao.Upgrade41200to41300;
|
import com.cloud.upgrade.dao.Upgrade41200to41300;
|
||||||
import com.cloud.upgrade.dao.Upgrade41300to41310;
|
import com.cloud.upgrade.dao.Upgrade41300to41310;
|
||||||
import com.cloud.upgrade.dao.Upgrade41310to41400;
|
import com.cloud.upgrade.dao.Upgrade41310to41400;
|
||||||
|
import com.cloud.upgrade.dao.Upgrade41400to41500;
|
||||||
import com.cloud.upgrade.dao.Upgrade420to421;
|
import com.cloud.upgrade.dao.Upgrade420to421;
|
||||||
import com.cloud.upgrade.dao.Upgrade421to430;
|
import com.cloud.upgrade.dao.Upgrade421to430;
|
||||||
import com.cloud.upgrade.dao.Upgrade430to440;
|
import com.cloud.upgrade.dao.Upgrade430to440;
|
||||||
@ -191,6 +192,7 @@ public class DatabaseUpgradeChecker implements SystemIntegrityChecker {
|
|||||||
.next("4.12.0.0", new Upgrade41200to41300())
|
.next("4.12.0.0", new Upgrade41200to41300())
|
||||||
.next("4.13.0.0", new Upgrade41300to41310())
|
.next("4.13.0.0", new Upgrade41300to41310())
|
||||||
.next("4.13.1.0", new Upgrade41310to41400())
|
.next("4.13.1.0", new Upgrade41310to41400())
|
||||||
|
.next("4.14.0.0", new Upgrade41400to41500())
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -19,17 +19,9 @@ package com.cloud.upgrade.dao;
|
|||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.PreparedStatement;
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
import com.cloud.hypervisor.Hypervisor;
|
|
||||||
import com.cloud.utils.exception.CloudRuntimeException;
|
import com.cloud.utils.exception.CloudRuntimeException;
|
||||||
|
|
||||||
public class Upgrade41310to41400 implements DbUpgrade {
|
public class Upgrade41310to41400 implements DbUpgrade {
|
||||||
@ -64,175 +56,6 @@ public class Upgrade41310to41400 implements DbUpgrade {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void performDataMigration(Connection conn) {
|
public void performDataMigration(Connection conn) {
|
||||||
updateSystemVmTemplates(conn);
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("serial")
|
|
||||||
private void updateSystemVmTemplates(final Connection conn) {
|
|
||||||
LOG.debug("Updating System Vm template IDs");
|
|
||||||
final Set<Hypervisor.HypervisorType> hypervisorsListInUse = new HashSet<Hypervisor.HypervisorType>();
|
|
||||||
try (PreparedStatement pstmt = conn.prepareStatement("select distinct(hypervisor_type) from `cloud`.`cluster` where removed is null"); ResultSet rs = pstmt.executeQuery()) {
|
|
||||||
while (rs.next()) {
|
|
||||||
switch (Hypervisor.HypervisorType.getType(rs.getString(1))) {
|
|
||||||
case XenServer:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.XenServer);
|
|
||||||
break;
|
|
||||||
case KVM:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.KVM);
|
|
||||||
break;
|
|
||||||
case VMware:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.VMware);
|
|
||||||
break;
|
|
||||||
case Hyperv:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.Hyperv);
|
|
||||||
break;
|
|
||||||
case LXC:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.LXC);
|
|
||||||
break;
|
|
||||||
case Ovm3:
|
|
||||||
hypervisorsListInUse.add(Hypervisor.HypervisorType.Ovm3);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates: Exception caught while getting hypervisor types from clusters: " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while getting hypervisor types from clusters", e);
|
|
||||||
}
|
|
||||||
|
|
||||||
final Map<Hypervisor.HypervisorType, String> NewTemplateNameList = new HashMap<Hypervisor.HypervisorType, String>() {
|
|
||||||
{
|
|
||||||
put(Hypervisor.HypervisorType.KVM, "systemvm-kvm-4.14.0");
|
|
||||||
put(Hypervisor.HypervisorType.VMware, "systemvm-vmware-4.14.0");
|
|
||||||
put(Hypervisor.HypervisorType.XenServer, "systemvm-xenserver-4.14.0");
|
|
||||||
put(Hypervisor.HypervisorType.Hyperv, "systemvm-hyperv-4.14.0");
|
|
||||||
put(Hypervisor.HypervisorType.LXC, "systemvm-lxc-4.14.0");
|
|
||||||
put(Hypervisor.HypervisorType.Ovm3, "systemvm-ovm3-4.14.0");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
final Map<Hypervisor.HypervisorType, String> routerTemplateConfigurationNames = new HashMap<Hypervisor.HypervisorType, String>() {
|
|
||||||
{
|
|
||||||
put(Hypervisor.HypervisorType.KVM, "router.template.kvm");
|
|
||||||
put(Hypervisor.HypervisorType.VMware, "router.template.vmware");
|
|
||||||
put(Hypervisor.HypervisorType.XenServer, "router.template.xenserver");
|
|
||||||
put(Hypervisor.HypervisorType.Hyperv, "router.template.hyperv");
|
|
||||||
put(Hypervisor.HypervisorType.LXC, "router.template.lxc");
|
|
||||||
put(Hypervisor.HypervisorType.Ovm3, "router.template.ovm3");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
final Map<Hypervisor.HypervisorType, String> newTemplateUrl = new HashMap<Hypervisor.HypervisorType, String>() {
|
|
||||||
{
|
|
||||||
put(Hypervisor.HypervisorType.KVM, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-kvm.qcow2.bz2");
|
|
||||||
put(Hypervisor.HypervisorType.VMware, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-vmware.ova");
|
|
||||||
put(Hypervisor.HypervisorType.XenServer, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-xen.vhd.bz2");
|
|
||||||
put(Hypervisor.HypervisorType.Hyperv, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-hyperv.vhd.zip");
|
|
||||||
put(Hypervisor.HypervisorType.LXC, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-kvm.qcow2.bz2");
|
|
||||||
put(Hypervisor.HypervisorType.Ovm3, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-ovm.raw.bz2");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
final Map<Hypervisor.HypervisorType, String> newTemplateChecksum = new HashMap<Hypervisor.HypervisorType, String>() {
|
|
||||||
{
|
|
||||||
put(Hypervisor.HypervisorType.KVM, "d15ed159be32151b07e3211caf9cb802");
|
|
||||||
put(Hypervisor.HypervisorType.XenServer, "fcaf1abc9aa62e7ed75f62b3092a01a2");
|
|
||||||
put(Hypervisor.HypervisorType.VMware, "eb39f8b5a556dfc93c6be23ae45f34e1");
|
|
||||||
put(Hypervisor.HypervisorType.Hyperv, "b4e91c14958e0fca9470695b0be05f99");
|
|
||||||
put(Hypervisor.HypervisorType.LXC, "d15ed159be32151b07e3211caf9cb802");
|
|
||||||
put(Hypervisor.HypervisorType.Ovm3, "1f97f4beb30af8cda886f1e977514704");
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
for (final Map.Entry<Hypervisor.HypervisorType, String> hypervisorAndTemplateName : NewTemplateNameList.entrySet()) {
|
|
||||||
LOG.debug("Updating " + hypervisorAndTemplateName.getKey() + " System Vms");
|
|
||||||
try (PreparedStatement pstmt = conn.prepareStatement("select id from `cloud`.`vm_template` where name = ? and removed is null order by id desc limit 1")) {
|
|
||||||
// Get 4.11 systemvm template id for corresponding hypervisor
|
|
||||||
long templateId = -1;
|
|
||||||
pstmt.setString(1, hypervisorAndTemplateName.getValue());
|
|
||||||
try (ResultSet rs = pstmt.executeQuery()) {
|
|
||||||
if (rs.next()) {
|
|
||||||
templateId = rs.getLong(1);
|
|
||||||
}
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates: Exception caught while getting ids of templates: " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates: Exception caught while getting ids of templates", e);
|
|
||||||
}
|
|
||||||
|
|
||||||
// change template type to SYSTEM
|
|
||||||
if (templateId != -1) {
|
|
||||||
try (PreparedStatement templ_type_pstmt = conn.prepareStatement("update `cloud`.`vm_template` set type='SYSTEM' where id = ?");) {
|
|
||||||
templ_type_pstmt.setLong(1, templateId);
|
|
||||||
templ_type_pstmt.executeUpdate();
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while updating template with id " + templateId + " to be marked as 'system': " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while updating template with id " + templateId + " to be marked as 'system'", e);
|
|
||||||
}
|
|
||||||
// update template ID of system Vms
|
|
||||||
try (PreparedStatement update_templ_id_pstmt = conn
|
|
||||||
.prepareStatement("update `cloud`.`vm_instance` set vm_template_id = ? where type <> 'User' and hypervisor_type = ? and removed is NULL");) {
|
|
||||||
update_templ_id_pstmt.setLong(1, templateId);
|
|
||||||
update_templ_id_pstmt.setString(2, hypervisorAndTemplateName.getKey().toString());
|
|
||||||
update_templ_id_pstmt.executeUpdate();
|
|
||||||
} catch (final Exception e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while setting template for " + hypervisorAndTemplateName.getKey().toString() + " to " + templateId
|
|
||||||
+ ": " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting template for " + hypervisorAndTemplateName.getKey().toString() + " to "
|
|
||||||
+ templateId, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Change value of global configuration parameter
|
|
||||||
// router.template.* for the corresponding hypervisor
|
|
||||||
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
|
|
||||||
update_pstmt.setString(1, hypervisorAndTemplateName.getValue());
|
|
||||||
update_pstmt.setString(2, routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()));
|
|
||||||
update_pstmt.executeUpdate();
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while setting " + routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()) + " to "
|
|
||||||
+ hypervisorAndTemplateName.getValue() + ": " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting "
|
|
||||||
+ routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()) + " to " + hypervisorAndTemplateName.getValue(), e);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Change value of global configuration parameter
|
|
||||||
// minreq.sysvmtemplate.version for the ACS version
|
|
||||||
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
|
|
||||||
update_pstmt.setString(1, "4.14.0");
|
|
||||||
update_pstmt.setString(2, "minreq.sysvmtemplate.version");
|
|
||||||
update_pstmt.executeUpdate();
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while setting 'minreq.sysvmtemplate.version' to 4.14.0: " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting 'minreq.sysvmtemplate.version' to 4.14.0", e);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (hypervisorsListInUse.contains(hypervisorAndTemplateName.getKey())) {
|
|
||||||
throw new CloudRuntimeException(getUpgradedVersion() + hypervisorAndTemplateName.getKey() + " SystemVm template not found. Cannot upgrade system Vms");
|
|
||||||
} else {
|
|
||||||
LOG.warn(getUpgradedVersion() + hypervisorAndTemplateName.getKey() + " SystemVm template not found. " + hypervisorAndTemplateName.getKey()
|
|
||||||
+ " hypervisor is not used, so not failing upgrade");
|
|
||||||
// Update the latest template URLs for corresponding
|
|
||||||
// hypervisor
|
|
||||||
try (PreparedStatement update_templ_url_pstmt = conn
|
|
||||||
.prepareStatement("UPDATE `cloud`.`vm_template` SET url = ? , checksum = ? WHERE hypervisor_type = ? AND type = 'SYSTEM' AND removed is null order by id desc limit 1");) {
|
|
||||||
update_templ_url_pstmt.setString(1, newTemplateUrl.get(hypervisorAndTemplateName.getKey()));
|
|
||||||
update_templ_url_pstmt.setString(2, newTemplateChecksum.get(hypervisorAndTemplateName.getKey()));
|
|
||||||
update_templ_url_pstmt.setString(3, hypervisorAndTemplateName.getKey().toString());
|
|
||||||
update_templ_url_pstmt.executeUpdate();
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while updating 'url' and 'checksum' for hypervisor type "
|
|
||||||
+ hypervisorAndTemplateName.getKey().toString() + ": " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while updating 'url' and 'checksum' for hypervisor type "
|
|
||||||
+ hypervisorAndTemplateName.getKey().toString(), e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (final SQLException e) {
|
|
||||||
LOG.error("updateSystemVmTemplates:Exception while getting ids of templates: " + e.getMessage());
|
|
||||||
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while getting ids of templates", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
LOG.debug("Updating System Vm Template IDs Complete");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -0,0 +1,248 @@
|
|||||||
|
// Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
// or more contributor license agreements. See the NOTICE file
|
||||||
|
// distributed with this work for additional information
|
||||||
|
// regarding copyright ownership. The ASF licenses this file
|
||||||
|
// to you under the Apache License, Version 2.0 (the
|
||||||
|
// "License"); you may not use this file except in compliance
|
||||||
|
// with the License. You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing,
|
||||||
|
// software distributed under the License is distributed on an
|
||||||
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
// KIND, either express or implied. See the License for the
|
||||||
|
// specific language governing permissions and limitations
|
||||||
|
// under the License.
|
||||||
|
|
||||||
|
package com.cloud.upgrade.dao;
|
||||||
|
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
|
import com.cloud.hypervisor.Hypervisor;
|
||||||
|
import com.cloud.utils.exception.CloudRuntimeException;
|
||||||
|
|
||||||
|
public class Upgrade41400to41500 implements DbUpgrade {
|
||||||
|
|
||||||
|
final static Logger LOG = Logger.getLogger(Upgrade41400to41500.class);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String[] getUpgradableVersionRange() {
|
||||||
|
return new String[] {"4.14.0.0", "4.15.0.0"};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getUpgradedVersion() {
|
||||||
|
return "4.15.0.0";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean supportsRollingUpgrade() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public InputStream[] getPrepareScripts() {
|
||||||
|
final String scriptFile = "META-INF/db/schema-41400to41500.sql";
|
||||||
|
final InputStream script = Thread.currentThread().getContextClassLoader().getResourceAsStream(scriptFile);
|
||||||
|
if (script == null) {
|
||||||
|
throw new CloudRuntimeException("Unable to find " + scriptFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new InputStream[] {script};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void performDataMigration(Connection conn) {
|
||||||
|
updateSystemVmTemplates(conn);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("serial")
|
||||||
|
private void updateSystemVmTemplates(final Connection conn) {
|
||||||
|
LOG.debug("Updating System Vm template IDs");
|
||||||
|
final Set<Hypervisor.HypervisorType> hypervisorsListInUse = new HashSet<Hypervisor.HypervisorType>();
|
||||||
|
try (PreparedStatement pstmt = conn.prepareStatement("select distinct(hypervisor_type) from `cloud`.`cluster` where removed is null"); ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
while (rs.next()) {
|
||||||
|
switch (Hypervisor.HypervisorType.getType(rs.getString(1))) {
|
||||||
|
case XenServer:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.XenServer);
|
||||||
|
break;
|
||||||
|
case KVM:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.KVM);
|
||||||
|
break;
|
||||||
|
case VMware:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.VMware);
|
||||||
|
break;
|
||||||
|
case Hyperv:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.Hyperv);
|
||||||
|
break;
|
||||||
|
case LXC:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.LXC);
|
||||||
|
break;
|
||||||
|
case Ovm3:
|
||||||
|
hypervisorsListInUse.add(Hypervisor.HypervisorType.Ovm3);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates: Exception caught while getting hypervisor types from clusters: " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while getting hypervisor types from clusters", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
final Map<Hypervisor.HypervisorType, String> NewTemplateNameList = new HashMap<Hypervisor.HypervisorType, String>() {
|
||||||
|
{
|
||||||
|
put(Hypervisor.HypervisorType.KVM, "systemvm-kvm-4.14.0");
|
||||||
|
put(Hypervisor.HypervisorType.VMware, "systemvm-vmware-4.14.0");
|
||||||
|
put(Hypervisor.HypervisorType.XenServer, "systemvm-xenserver-4.14.0");
|
||||||
|
put(Hypervisor.HypervisorType.Hyperv, "systemvm-hyperv-4.14.0");
|
||||||
|
put(Hypervisor.HypervisorType.LXC, "systemvm-lxc-4.14.0");
|
||||||
|
put(Hypervisor.HypervisorType.Ovm3, "systemvm-ovm3-4.14.0");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
final Map<Hypervisor.HypervisorType, String> routerTemplateConfigurationNames = new HashMap<Hypervisor.HypervisorType, String>() {
|
||||||
|
{
|
||||||
|
put(Hypervisor.HypervisorType.KVM, "router.template.kvm");
|
||||||
|
put(Hypervisor.HypervisorType.VMware, "router.template.vmware");
|
||||||
|
put(Hypervisor.HypervisorType.XenServer, "router.template.xenserver");
|
||||||
|
put(Hypervisor.HypervisorType.Hyperv, "router.template.hyperv");
|
||||||
|
put(Hypervisor.HypervisorType.LXC, "router.template.lxc");
|
||||||
|
put(Hypervisor.HypervisorType.Ovm3, "router.template.ovm3");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
final Map<Hypervisor.HypervisorType, String> newTemplateUrl = new HashMap<Hypervisor.HypervisorType, String>() {
|
||||||
|
{
|
||||||
|
put(Hypervisor.HypervisorType.KVM, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-kvm.qcow2.bz2");
|
||||||
|
put(Hypervisor.HypervisorType.VMware, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-vmware.ova");
|
||||||
|
put(Hypervisor.HypervisorType.XenServer, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-xen.vhd.bz2");
|
||||||
|
put(Hypervisor.HypervisorType.Hyperv, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-hyperv.vhd.zip");
|
||||||
|
put(Hypervisor.HypervisorType.LXC, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-kvm.qcow2.bz2");
|
||||||
|
put(Hypervisor.HypervisorType.Ovm3, "https://download.cloudstack.org/systemvm/4.14/systemvmtemplate-4.14.0-ovm.raw.bz2");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
final Map<Hypervisor.HypervisorType, String> newTemplateChecksum = new HashMap<Hypervisor.HypervisorType, String>() {
|
||||||
|
{
|
||||||
|
put(Hypervisor.HypervisorType.KVM, "d15ed159be32151b07e3211caf9cb802");
|
||||||
|
put(Hypervisor.HypervisorType.XenServer, "fcaf1abc9aa62e7ed75f62b3092a01a2");
|
||||||
|
put(Hypervisor.HypervisorType.VMware, "eb39f8b5a556dfc93c6be23ae45f34e1");
|
||||||
|
put(Hypervisor.HypervisorType.Hyperv, "b4e91c14958e0fca9470695b0be05f99");
|
||||||
|
put(Hypervisor.HypervisorType.LXC, "d15ed159be32151b07e3211caf9cb802");
|
||||||
|
put(Hypervisor.HypervisorType.Ovm3, "1f97f4beb30af8cda886f1e977514704");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
for (final Map.Entry<Hypervisor.HypervisorType, String> hypervisorAndTemplateName : NewTemplateNameList.entrySet()) {
|
||||||
|
LOG.debug("Updating " + hypervisorAndTemplateName.getKey() + " System Vms");
|
||||||
|
try (PreparedStatement pstmt = conn.prepareStatement("select id from `cloud`.`vm_template` where name = ? and removed is null order by id desc limit 1")) {
|
||||||
|
// Get 4.11 systemvm template id for corresponding hypervisor
|
||||||
|
long templateId = -1;
|
||||||
|
pstmt.setString(1, hypervisorAndTemplateName.getValue());
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
if (rs.next()) {
|
||||||
|
templateId = rs.getLong(1);
|
||||||
|
}
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates: Exception caught while getting ids of templates: " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates: Exception caught while getting ids of templates", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// change template type to SYSTEM
|
||||||
|
if (templateId != -1) {
|
||||||
|
try (PreparedStatement templ_type_pstmt = conn.prepareStatement("update `cloud`.`vm_template` set type='SYSTEM' where id = ?");) {
|
||||||
|
templ_type_pstmt.setLong(1, templateId);
|
||||||
|
templ_type_pstmt.executeUpdate();
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while updating template with id " + templateId + " to be marked as 'system': " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while updating template with id " + templateId + " to be marked as 'system'", e);
|
||||||
|
}
|
||||||
|
// update template ID of system Vms
|
||||||
|
try (PreparedStatement update_templ_id_pstmt = conn
|
||||||
|
.prepareStatement("update `cloud`.`vm_instance` set vm_template_id = ? where type <> 'User' and hypervisor_type = ? and removed is NULL");) {
|
||||||
|
update_templ_id_pstmt.setLong(1, templateId);
|
||||||
|
update_templ_id_pstmt.setString(2, hypervisorAndTemplateName.getKey().toString());
|
||||||
|
update_templ_id_pstmt.executeUpdate();
|
||||||
|
} catch (final Exception e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while setting template for " + hypervisorAndTemplateName.getKey().toString() + " to " + templateId
|
||||||
|
+ ": " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting template for " + hypervisorAndTemplateName.getKey().toString() + " to "
|
||||||
|
+ templateId, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Change value of global configuration parameter
|
||||||
|
// router.template.* for the corresponding hypervisor
|
||||||
|
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
|
||||||
|
update_pstmt.setString(1, hypervisorAndTemplateName.getValue());
|
||||||
|
update_pstmt.setString(2, routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()));
|
||||||
|
update_pstmt.executeUpdate();
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while setting " + routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()) + " to "
|
||||||
|
+ hypervisorAndTemplateName.getValue() + ": " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting "
|
||||||
|
+ routerTemplateConfigurationNames.get(hypervisorAndTemplateName.getKey()) + " to " + hypervisorAndTemplateName.getValue(), e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Change value of global configuration parameter
|
||||||
|
// minreq.sysvmtemplate.version for the ACS version
|
||||||
|
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
|
||||||
|
update_pstmt.setString(1, "4.14.0");
|
||||||
|
update_pstmt.setString(2, "minreq.sysvmtemplate.version");
|
||||||
|
update_pstmt.executeUpdate();
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while setting 'minreq.sysvmtemplate.version' to 4.14.0: " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while setting 'minreq.sysvmtemplate.version' to 4.14.0", e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (hypervisorsListInUse.contains(hypervisorAndTemplateName.getKey())) {
|
||||||
|
throw new CloudRuntimeException(getUpgradedVersion() + hypervisorAndTemplateName.getKey() + " SystemVm template not found. Cannot upgrade system Vms");
|
||||||
|
} else {
|
||||||
|
LOG.warn(getUpgradedVersion() + hypervisorAndTemplateName.getKey() + " SystemVm template not found. " + hypervisorAndTemplateName.getKey()
|
||||||
|
+ " hypervisor is not used, so not failing upgrade");
|
||||||
|
// Update the latest template URLs for corresponding
|
||||||
|
// hypervisor
|
||||||
|
try (PreparedStatement update_templ_url_pstmt = conn
|
||||||
|
.prepareStatement("UPDATE `cloud`.`vm_template` SET url = ? , checksum = ? WHERE hypervisor_type = ? AND type = 'SYSTEM' AND removed is null order by id desc limit 1");) {
|
||||||
|
update_templ_url_pstmt.setString(1, newTemplateUrl.get(hypervisorAndTemplateName.getKey()));
|
||||||
|
update_templ_url_pstmt.setString(2, newTemplateChecksum.get(hypervisorAndTemplateName.getKey()));
|
||||||
|
update_templ_url_pstmt.setString(3, hypervisorAndTemplateName.getKey().toString());
|
||||||
|
update_templ_url_pstmt.executeUpdate();
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while updating 'url' and 'checksum' for hypervisor type "
|
||||||
|
+ hypervisorAndTemplateName.getKey().toString() + ": " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while updating 'url' and 'checksum' for hypervisor type "
|
||||||
|
+ hypervisorAndTemplateName.getKey().toString(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (final SQLException e) {
|
||||||
|
LOG.error("updateSystemVmTemplates:Exception while getting ids of templates: " + e.getMessage());
|
||||||
|
throw new CloudRuntimeException("updateSystemVmTemplates:Exception while getting ids of templates", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LOG.debug("Updating System Vm Template IDs Complete");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public InputStream[] getCleanupScripts() {
|
||||||
|
final String scriptFile = "META-INF/db/schema-41400to41500-cleanup.sql";
|
||||||
|
final InputStream script = Thread.currentThread().getContextClassLoader().getResourceAsStream(scriptFile);
|
||||||
|
if (script == null) {
|
||||||
|
throw new CloudRuntimeException("Unable to find " + scriptFile);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new InputStream[] {script};
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
-- Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
-- or more contributor license agreements. See the NOTICE file
|
||||||
|
-- distributed with this work for additional information
|
||||||
|
-- regarding copyright ownership. The ASF licenses this file
|
||||||
|
-- to you under the Apache License, Version 2.0 (the
|
||||||
|
-- "License"); you may not use this file except in compliance
|
||||||
|
-- with the License. You may obtain a copy of the License at
|
||||||
|
--
|
||||||
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
--
|
||||||
|
-- Unless required by applicable law or agreed to in writing,
|
||||||
|
-- software distributed under the License is distributed on an
|
||||||
|
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
-- KIND, either express or implied. See the License for the
|
||||||
|
-- specific language governing permissions and limitations
|
||||||
|
-- under the License.
|
||||||
|
|
||||||
|
--;
|
||||||
|
-- Schema upgrade cleanup from 4.14.0.0 to 4.15.0.0
|
||||||
|
--;
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
-- Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
-- or more contributor license agreements. See the NOTICE file
|
||||||
|
-- distributed with this work for additional information
|
||||||
|
-- regarding copyright ownership. The ASF licenses this file
|
||||||
|
-- to you under the Apache License, Version 2.0 (the
|
||||||
|
-- "License"); you may not use this file except in compliance
|
||||||
|
-- with the License. You may obtain a copy of the License at
|
||||||
|
--
|
||||||
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
--
|
||||||
|
-- Unless required by applicable law or agreed to in writing,
|
||||||
|
-- software distributed under the License is distributed on an
|
||||||
|
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
-- KIND, either express or implied. See the License for the
|
||||||
|
-- specific language governing permissions and limitations
|
||||||
|
-- under the License.
|
||||||
|
|
||||||
|
--;
|
||||||
|
-- Schema upgrade from 4.14.0.0 to 4.15.0.0
|
||||||
|
--;
|
||||||
Loading…
x
Reference in New Issue
Block a user