Cloudsim的弹性

时间:2018-11-24 12:39:55

标签: java cloud scheduled-tasks cloudsim elasticity

我正在研究一种用于云计算的任务调度方法,问题是我想在运行时创建VM以具有弹性并降低任务拒绝率,但是我不知道该怎么做以及应该在哪里进行我把创建Vms的代码放进去了:-?

1 个答案:

答案 0 :(得分:0)

使用CloudSim Plus,您可以执行此操作而无需更改框架代码。 CloudSim Plus提供了不同的事件侦听器,可用于动态创建Cloudlet或VM。它甚至使您可以提交此类对象,而无需创建新的代理。要实现此目的的代码段如下:

//Constructor of the example class
private KeepSimulationRunningExample() {
  //Initializes CloudSim Plus 
  simulation = new CloudSim();

  //The simulation startup code goes here...
  //It creates objects such as Datacenters, Hosts, etc.

  //Adds a Listener that will be notified when the simulation clock changes
  simulation.addOnClockTickListener(this::createDynamicCloudletAndVm);
  simulation.start();
}

/** Creates a new VM when the simulation reaches a defined time */
private void createDynamicCloudletAndVm(EventInfo evt) {
    if((int)evt.getTime() == TIME_TO_CREATE_NEW_VM){
        Vm vm = new VmSimple(1000, 2);
        //Configure your VM here (such as setting a CloudletScheduler)
        vmList.add(vm);
        broker0.submitVm(vm);
    }
}

完整的示例可用heredynamic package显示了使用不同侦听器创建VM和Cloudlet的其他示例。