Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yzxlr/4077054 to your computer and use it in GitHub Desktop.
Save yzxlr/4077054 to your computer and use it in GitHub Desktop.
CloudSim DatacenterBroker implementation using the Round-Robin scheduling policy
package org.cloudbus.cloudsim.examples;
import java.util.List;
import org.cloudbus.cloudsim.DatacenterBroker;
import org.cloudbus.cloudsim.DatacenterCharacteristics;
import org.cloudbus.cloudsim.Log;
import org.cloudbus.cloudsim.Vm;
import org.cloudbus.cloudsim.core.CloudSim;
import org.cloudbus.cloudsim.core.CloudSimTags;
import org.cloudbus.cloudsim.core.SimEvent;
public class RoundRobinDatacenterBroker extends DatacenterBroker {
public RoundRobinDatacenterBroker(String name) throws Exception {
super(name);
}
@Override
protected void processResourceCharacteristics(SimEvent ev) {
DatacenterCharacteristics characteristics = (DatacenterCharacteristics) ev.getData();
getDatacenterCharacteristicsList().put(characteristics.getId(), characteristics);
if (getDatacenterCharacteristicsList().size() == getDatacenterIdsList().size()) {
createVmsInDatacenter(getDatacenterIdsList());
}
};
protected void createVmsInDatacenter(List<Integer> datacenterIds) {
// send as much vms as possible for this datacenter before trying the next one
int requestedVms = 0;
int i = 0;
for (Vm vm : getVmList()) {
int datacenterId = datacenterIds.get(i++ % datacenterIds.size());
String datacenterName = CloudSim.getEntityName(datacenterId);
if (!getVmsToDatacentersMap().containsKey(vm.getId())) {
Log.printLine(CloudSim.clock() + ": " + getName() + ": Trying to Create VM #" + vm.getId() + " in " + datacenterName);
sendNow(datacenterId, CloudSimTags.VM_CREATE_ACK, vm);
requestedVms++;
}
}
setVmsRequested(requestedVms);
setVmsAcks(0);
};
}
@cloudsimcenter
Copy link

I want to know in which location I have to add main method because when i am running this code in cloudsim it gives error..

@Ahmed-Fathalla
Copy link

put that file in this path org.cloudbus.cloudsim.core.CloudSim
in the same path for DataCenterBroker

@mokhtaralworafi
Copy link

pls how can put this path bcz i got error

@shivbasav
Copy link

where do i put the file i mean the location ?

@somyamahajan18
Copy link

I am getting error of main method , please tell how to resolve

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment