Research breakthrough possible @S-Logix pro@slogix.in

Office Address

  • 2nd Floor, #7a, High School Road, Secretariat Colony Ambattur, Chennai-600053 (Landmark: SRM School) Tamil Nadu, India
  • pro@slogix.in
  • +91- 81240 01111

Social List

What are the default VM schedulers available in cloudsim?

  • The default VM schedulers available in cloudsim are:
    a. VmSchedulerSpaceShared
    b. VmSchedulerTimeShared
  • VmSchedulerSpaceShared:

    VmSchedulerSpaceShared is an allocation policy that allocates one or more Pe to a VM, and doesn't allow sharing of PEs. If there is no free PEs to the VM, allocation fails.
    VmSchedulerSpaceShared share=new VmSchedulerSpaceShared();

  • VmSchedulerTimeShared:

    VmSchedulerTimeShared is a VMM allocation policy that allocates one or more Pe to a VM, and allows sharing of PEs by multiple VMs.
    VmSchedulerTimeShared time=new VmSchedulerTimeShared();