1 package at.ac.tuwien.lsdc.sched;
4 import java.io.IOException;
5 import java.util.LinkedList;
8 import org.slf4j.Logger;
9 import org.slf4j.LoggerFactory;
11 import at.ac.tuwien.lsdc.exception.OutOfPMsException;
12 import at.ac.tuwien.lsdc.types.Application;
13 import at.ac.tuwien.lsdc.types.PhysicalMachine;
14 import at.ac.tuwien.lsdc.types.ScenarioType;
15 import at.ac.tuwien.lsdc.types.SchedulerEvent;
16 import at.ac.tuwien.lsdc.types.SchedulerType;
17 import at.ac.tuwien.lsdc.types.VirtualMachine;
18 import at.ac.tuwien.lsdc.types.VirtualMachine.VMType;
20 public class SchedulerC extends AbstractSchedulerWithMigration {
22 private static final Logger LOG = LoggerFactory.getLogger(SchedulerC.class);
24 public SchedulerC(int numPMs, int numCloudPartners, File schedulerLog, ScenarioType scenario)
26 super(numPMs, numCloudPartners, schedulerLog, scenario);
28 this.vmType = VMType.NonResizable;
32 protected boolean deployApp(VirtualMachine vm, Application app) {
33 boolean deployed = false;
34 if (!vm.enoughResources(app))
37 deployed = vm.startApplication(app);
44 * Cleanup completed apps. If an VM becomes empty, shut down VM + PM.
46 * @param events list of all events that happened in this timeslot.
49 protected void handleEndEvents(LinkedList<SchedulerEvent> events) {
50 // LOG.debug("stopApps():" + events);
51 for (SchedulerEvent evt : events) {
52 VirtualMachine vm = evt.getApp().getRunningOn();
53 evt.getApp().setRunningOn(null);
54 vm.stopApplication(evt.getApp());
58 if (vm.getApplications().size() == 0) {
59 PhysicalMachine pm = vm.getRunningOn();
60 pm.stopVirtualMachine(vm);
61 manager.stopPhysicalMachine(pm.getId());
68 * Try to start all Apps. If not enough space start another PM, if not possible,
71 * @param events list of all events that happened in this timeslot.
74 protected void handleStartEvents(LinkedList<SchedulerEvent> events) {
75 // LOG.debug("startApps():" + events);
76 boolean deployed = false;
77 for (SchedulerEvent evt : events) {
79 VirtualMachine vm = null;
80 List<PhysicalMachine> sortedPMs = manager.getRevSortedPMs();
82 for (PhysicalMachine pm : sortedPMs) {
83 if (pm.isRunning() && (pm.countCurrentlyRunningVMs() > 0)) {
84 vm = pm.getVirtualMachines().values().iterator().next();
85 deployed = deployApp(vm, evt.getApp());
92 vm = manager.startPhysicalMachine().startVirtualMachine(vmType);
93 deployed = deployApp(vm, evt.getApp());
94 } catch (OutOfPMsException e) {
95 if (federation.askToOutsource(evt.getApp())) {
96 insertOutsourcedStartEvent(currTime + 1, evt.getApp());
98 // LOG.info("delaying the start of:" + evt.getApp());
99 delayedApps.add(evt.getApp());
104 insertStopEvent(currTime + evt.getApp().getDuration(), evt.getApp());
108 if(manager.countCurrentlyRunningPMs() < manager.getMaxPMs()) {
109 Application app = federation.askToInsource();
111 insertInsourcedStartEvent(currTime + 1, evt.getApp());
119 protected String getSchedulerType() {
120 return SchedulerType.C.toString();