问题标签 [cloudsim]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
cloud - VM provisioning and task scheduling in cloudsim
I am working on CloudSim. I am misunderstanding resource provisioning (e.g.: VMs) and task scheduling in cloud. Below are scenarios to explain my questions.
If we have 3 different types of VMs (different mips 250,500,750), and we need to schedule 3 tasks:
Case 1:
We have limited resources (5 VMs) so how each vm map to the type?
After mapping (vm - type), we will have for example:
We need to schedule these tasks to minimise the makespan:
After scheduling based on minimising makespan will have:
What is the maximum capacity of vm to run the task? In other words, when we can use another VM?
Case 2:
We have unlimited no. of VMs, how we map the VMs with its type? how we can create VMs on demand or dynamically?
I appreciate any help, thank you!
cloud - 云中任务调度的流程
在云数据中心调度用户任务的正确顺序是什么?是否正确?
云提供商有不同的 VM 模板。当用户请求服务时,调度器会根据用户的需求,为用户选择合适的虚拟机模板,然后在主机中创建该虚拟机。还是提前在hosts中创建VM,然后在上面调度任务?如果云中的任务调度以及 CloudSim 中的内容,我对真实过程感到困惑?我很感激这方面的任何帮助。谢谢
java - 包含不同文件的库,其中多个文件具有 main() 方法
我在我的 java 项目中添加了一个 jar 文件,其中包含不同的文件,其中多个文件具有 main() 方法。我想知道在运行项目时哪个 main() 首先运行。
cloud - 有没有办法在cloudsim中找出特定VM上的cloudlet数量?
有没有办法在cloudsim中找出VM上的cloudlet数量?
cloudsim - 为什么 cloudsim 中的 cloudlet.getSubmissionTime() 和 cloudlet.getExecStartTime() 返回相同的值?
我想计算所有提交的小云的响应时间。为此,我使用以下语句:
我面临的问题是两种方法 cloudlet.getSubmissionTime() 和 cloudlet.getExecStartTime() 返回相同的值。请提出相同的解决方案
cloud - 云调度的 PSO 中的单个粒子代表什么?
当我们说计算粒子的新速度和位置时。
云任务调度中的粒子代表什么。它是代表分配给 VM 的单个任务还是分配给 VM 的所有任务。我想知道的是单个粒子本身是否代表一个完整的解决方案或将单个任务分配给 VM
virtual-machine - 我们通常可以使用多少个 MIP 在 cloudsim 或 workflowsim 中创建 Vm?
我们通常可以使用多少个 MIP 在 cloudsim 或 workflowsim 中创建 Vm?
java - 我们如何在 cloudsim 中创建具有不同 MIPS 数量的 Vm?
我使用循环创建 10 个虚拟机。每个虚拟机使用相同数量的 MIPS,因为所有虚拟机的参数都相同。我如何创建具有不同 mips 的不同虚拟机?
在 main 方法中 vmNum 被初始化等于 10。
cloudsim - CloudSim - CPU 利用率
谁能解释这两种方法之间的真正区别
vm.getTotalUtilizationOfCpu(CloudSim.clock());
和
cloudlet.getUtilizationOfCpu(CloudSim.clock());
提前致谢