VM placement optimization

1,307 views
Skip to first unread message

sagana

unread,
Feb 27, 2013, 9:02:48 AM2/27/13
to clou...@googlegroups.com
in which class we can place the "vm placement optimization" or its already in any class . If it means anbody tell me the clss name that vode is present

Alessandro Leite

unread,
Feb 27, 2013, 9:18:25 AM2/27/13
to clou...@googlegroups.com
Sagana,


On Wed, Feb 27, 2013 at 3:02 PM, sagana <saga...@gmail.com> wrote:
in which class we can place the "vm placement optimization" or its already in any class . If it means anbody tell me the clss name that vode is present

--
 
---
You received this message because you are subscribed to the Google Groups "cloudsim" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cloudsim+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

madhu

unread,
Feb 27, 2013, 11:07:05 AM2/27/13
to clou...@googlegroups.com
It is in Vm allocationpolicy or in its derived classes

pallavi gupta

unread,
Jul 1, 2013, 12:04:00 AM7/1/13
to clou...@googlegroups.com
Is Power aware best fit decreasing vm placement policy implemented in cloudsim? if yes then in which class?
 thanks and regard.

杨振兴

unread,
Jul 1, 2013, 7:40:24 AM7/1/13
to clou...@googlegroups.com
The Power Aware Best Fit Decreasing(PABFD) policy cannot be found in cloudsim, it is first described in this paper "Energy-aware resource allocation heuristics for efficient management of data centers for cloud computing" .

Best Regards.


2013/7/1 pallavi gupta <23gpa...@gmail.com>
--

pallavi gupta

unread,
Jul 4, 2013, 2:38:19 AM7/4/13
to clou...@googlegroups.com
then whats this?

protected List<Map<String, Object>> getNewVmPlacement(
List<? extends Vm> vmsToMigrate,
Set<? extends Host> excludedHosts) {
List<Map<String, Object>> migrationMap = new LinkedList<Map<String, Object>>();
PowerVmList.sortByCpuUtilization(vmsToMigrate);
for (Vm vm : vmsToMigrate) {
PowerHost allocatedHost = findHostForVm(vm, excludedHosts);
if (allocatedHost != null) {
allocatedHost.vmCreate(vm);
Log.printLine("VM #" + vm.getId() + " allocated to host #" + allocatedHost.getId());

Map<String, Object> migrate = new HashMap<String, Object>();
migrate.put("vm", vm);
migrate.put("host", allocatedHost);
migrationMap.add(migrate);
}
}
return migrationMap;

Regards,

杨振兴

unread,
Jul 6, 2013, 1:13:04 AM7/6/13
to clou...@googlegroups.com
Yes, the code is the implementation of VM Placement Pseudo Code of Section 6.3 Algorithm 2(PABFD) in the paper "Energy-aware resource allocation heuristics for efficient management of data centers for cloud computing".
 but in CloudSim the function is called <getNewVmPlacement> instead of <PABFD>, so the searching of "PABFD" is null.


2013/7/4 pallavi gupta <23gpa...@gmail.com>

Rathod Chirag

unread,
Jan 10, 2014, 8:56:01 AM1/10/14
to clou...@googlegroups.com
hi pallavi
can you suggest me exact path of Power Aware Best Fit Decreasing(PABFD) policy in cloudsim

n a

unread,
Mar 20, 2014, 5:07:25 AM3/20/14
to clou...@googlegroups.com

Hi
l want to change vm placement method in cloudsim.what class implement vm placement?
tanks alot
در ۶ ژوئیهٔ ۲۰۱۳ ۹:۴۳، "杨振兴" <yang...@gmail.com> نوشت:

sudha hemnani

unread,
Jun 26, 2014, 9:29:03 AM6/26/14
to clou...@googlegroups.com
Hi n s,

The above code is implemented in PowerVmAllocationPolicyMigrationAbstract.java

thanks,
Sudha
Reply all
Reply to author
Forward
0 new messages