Host how can we execute according to the cloudlets arrival time when there are multiple VMs

192 Views Asked by At

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

1

There are 1 best solutions below

0
On

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.