Research Article

[Retracted] Sustainable Technical Debt-Aware Computing Model for Virtual Machine Migration (TD4VM) in IaaS Cloud

Algorithm 3

Migrate.
Input: Current timestamp
Average of Current Utility group (cuavg)
Average combination of Predicted Utilitygroup (T1, T2, T3)
Migrate (t, cuavg, T1, T2, T3)
1. Initialize: mig= n+1
2. if (cuavg≤ T3)
3.  No need to migrate
4. else if (cuavg≤ T2)
5.   mig= t+3
6. else if (cuavg≤ T1)
7.  mig= t+2
8. else
9.  mig= t+1
10. end if
11. if (mig ≤ n)
12.  ‘migrate at timestamp’ mig
13. end if