本文介绍了托管当有多个VM时如何根据cloudlets的到达时间执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我们有50个cloudlet,10个VM和1个主机,我们如何根据cloudlets的到达时间而不是按照主机中的VM订单执行它们。请注意,我使用cloudsim模拟器

If we have 50 cloudlets,10 VMs and one Host how can we execute them according to the cloudlets arrival time, not to the VM orders in the host. note that I using cloudsim simulator

推荐答案

Cloudlets是根据到达的时间而不是基于VM进行调度的。第一个cloudlet绑定到第一个VM,第二个到第二个VM,依此类推。如果要将cloudlet绑定到特定的VM,请使用broker.bindCloudletToVm(cloudlet id,vm id)函数。

Cloudlets are scheduled on the base of arrival, not on the base of VMs. 1st cloudlet is bound to the first VM and second to 2nd VM and so on. If you want to bound cloudlet to specific VM use broker.bindCloudletToVm(cloudlet id, vm id) function.

这篇关于托管当有多个VM时如何根据cloudlets的到达时间执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 07:48