0

我想推迟 Cloudlet 的到来,以便他们稍后到达。我知道,setSubmissionDelay()但我想要一个与当前模拟时间无关的提交延迟setSubmissionDelay()。例如,如果一个 cloudlet 有 5 秒的延迟,它将恰好在那个时间创建,而不是在 5.10 秒(0.10 秒是从事件之间的最短时间开始)。我考虑过使用侦听器来侦听和拦截 Cloudlet 即将提交给 VM 的时间(可能是 0.10 或一些较小的时间值),然后减去我的延迟时间那个时间(cloudlet的当前延迟-当前模拟时间=非相对提交延迟)。

问题是我找不到这样做的听众。查看下面的控制台输出让我觉得可能是使用了侦听器或某种方法来打印,在它之前发送了一个 cloudlet。如果存在这样的东西,我想使用它。任何访问类似目标的文档或存储库都将受到高度赞赏。

参考:https ://github.com/manoelcampos/cloudsim-plus/tree/master/cloudsim-plus/src/main/java/org/cloudbus/cloudsim

[0;39m[34mINFO  0.10: DatacenterBrokerSimple2: Sending Cloudlet 0 to Vm 0 in Host 0/DC 1 with a requested delay of 9 seconds.
4

1 回答 1

2

你真的需要这样的精度吗?0.1 秒是一个非常小的值。无论如何,您可以将数据中心设置为schedulingInterval您想要的最小间隔(例如,1 秒),然后使用 CloudSim Plus'onClockTickListener来跟踪模拟时间并在需要时提交您的小云。请参阅下面的代码片段,但您不能保证该事件会在您想要的时间准确触发。


public class Example{
    private static final int SCHEDULING_INTERVAL = 1; //in seconds

    public Example(){
       //.......... instantiate simulation objects here

       datacenter0.setSchedulingInterval(SCHEDULING_INTERVAL); 
       simulation.addOnClockTickListener(this::clockTickListener);

       //.......... the rest of the simulation code here
    }

    private void clockTickListener(final EventInfo info) {
        final int seconds = (int)info.getTime();

        if(seconds == 5) {
           //create and submit your cloudlets
        }
    }
}

检查RandomCloudletsArrivalExample.java了解更多详细信息。

于 2020-03-19T12:14:24.037 回答