-1

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

4

1 回答 1

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);
    }
}

完整的示例可在此处获得。动态包显示了使用不同侦听器创建 VM 和 Cloudlet 的其他示例。

于 2018-12-07T11:20:18.760 回答