16
16
// under the License.
17
17
package com .cloud .upgrade .dao ;
18
18
19
+ import com .cloud .upgrade .SystemVmTemplateRegistration ;
19
20
import com .cloud .utils .exception .CloudRuntimeException ;
20
21
21
22
import java .io .InputStream ;
22
23
import java .sql .Connection ;
23
24
24
- public class Upgrade41900to41910 implements DbUpgrade {
25
+ public class Upgrade41900to41910 extends DbUpgradeAbstractImpl implements DbUpgrade , DbUpgradeSystemVmTemplate {
26
+ private SystemVmTemplateRegistration systemVmTemplateRegistration ;
25
27
26
28
@ Override
27
29
public String [] getUpgradableVersionRange () {
28
- return new String [] {"4.19.0.0" , "4.19.1.0" };
30
+ return new String []{"4.19.0.0" , "4.19.1.0" };
29
31
}
30
32
31
33
@ Override
@@ -46,11 +48,12 @@ public InputStream[] getPrepareScripts() {
46
48
throw new CloudRuntimeException ("Unable to find " + scriptFile );
47
49
}
48
50
49
- return new InputStream [] {script };
51
+ return new InputStream []{script };
50
52
}
51
53
52
54
@ Override
53
55
public void performDataMigration (Connection conn ) {
56
+ addIndexes (conn );
54
57
}
55
58
56
59
@ Override
@@ -61,6 +64,25 @@ public InputStream[] getCleanupScripts() {
61
64
throw new CloudRuntimeException ("Unable to find " + scriptFile );
62
65
}
63
66
64
- return new InputStream [] {script };
67
+ return new InputStream []{script };
68
+ }
69
+
70
+ private void addIndexes (Connection conn ) {
71
+ DbUpgradeUtils .addIndexIfNeeded (conn , "vm_stats" , "vm_id" );
72
+ }
73
+
74
+ @ Override
75
+ public void updateSystemVmTemplates (Connection conn ) {
76
+ logger .debug ("Updating System Vm template IDs" );
77
+ initSystemVmTemplateRegistration ();
78
+ try {
79
+ systemVmTemplateRegistration .updateSystemVmTemplates (conn );
80
+ } catch (Exception e ) {
81
+ throw new CloudRuntimeException ("Failed to find / register SystemVM template(s)" );
82
+ }
83
+ }
84
+
85
+ private void initSystemVmTemplateRegistration () {
86
+ systemVmTemplateRegistration = new SystemVmTemplateRegistration ("" );
65
87
}
66
88
}
0 commit comments