14

该方法getNextAvailableVm()以循环方式为特定数据中心分配虚拟机。(此方法返回的整数是分配的机器)

在数据中心中,可能存在具有不同配置集的虚拟机。例如 :

5 VMs with 1024 memory
4 VMs with 512 memory

Total : 9 VMs

对于这个数据中心,1024 内存的机器将比 512 内存的机器获得 2 倍的任务。

因此,该数据中心的机器通过getNextAvailableVm()以下方式返回:

0 0 1 1 2 2 3 3 4 4 5 6 7 8

这是目前的方式,机器正在被退回。但是有一个问题。

在某些情况下,当一台特定的机器很忙并且无法分配任务时。相反,必须为具有最高内存的下一台可用机器分配任务。我无法实现这一点。

例如 :

0 (allotted first time)
0 (to be allotted the second time)
but if 0 is busy..
allot 1 if 1 is not busy
next circle check if 0 is busy
if not busy allot 0  (only when machine numbered 0 has not handled the requests it is entitled to handle)
if busy, allot the next

cloudSimEventFired当机器被释放或分配时,将调用以下类中的方法。

    public class TempAlgo extends VmLoadBalancer implements CloudSimEventListener {

    /**
     * Key : Name of the data center
     * Value : List of objects of class 'VmAllocationUIElement'.
     */
    private  Map<String,LinkedList<DepConfAttr>> confMap = new HashMap<String,LinkedList<DepConfAttr>>();
    private Iterator<Integer> availableVms = null;
    private DatacenterController dcc;
    private boolean sorted = false;
    private int currentVM;
    private boolean calledOnce = false;
    private boolean indexChanged = false;
    private LinkedList<Integer> busyList = new LinkedList<Integer>();

    private Map<String,LinkedList<AlgoAttr>> algoMap = new HashMap<String, LinkedList<AlgoAttr>>();
    private Map<String,AlgoHelper> map = new HashMap<String,AlgoHelper>();  
    private Map<String,Integer> vmCountMap = new HashMap<String,Integer>();

    public TempAlgo(DatacenterController dcb) {
        confMap = DepConfList.dcConfMap;
        this.dcc = dcb;
        dcc.addCloudSimEventListener(this);
        if(!this.calledOnce) {
            this.calledOnce = true;
            // Make a new map using dcConfMap that lists 'DataCenter' as a 'key' and 'LinkedList<AlgoAttr>' as 'value'.
            Set<String> keyst =DepConfList.dcConfMap.keySet();
            for(String dataCenter : keyst) {
                LinkedList<AlgoAttr> tmpList = new LinkedList<AlgoAttr>();
                LinkedList<DepConfAttr> list = dcConfMap.get(dataCenter);
                int totalVms = 0;
                for(DepConfAttr o : list) {
                    tmpList.add(new AlgoAttr(o.getVmCount(), o.getMemory()/512, 0));
                    totalVms = totalVms + o.getVmCount();
                }
                Temp_Algo_Static_Var.algoMap.put(dataCenter, tmpList);
                Temp_Algo_Static_Var.vmCountMap.put(dataCenter, totalVms);
            }
            this.algoMap = new HashMap<String, LinkedList<AlgoAttr>>(Temp_Algo_Static_Var.algoMap);
            this.vmCountMap = new HashMap<String,Integer>(Temp_Algo_Static_Var.vmCountMap);
            this.map = new HashMap<String,AlgoHelper>(Temp_Algo_Static_Var.map);
        }
    }

    @Override
    public int getNextAvailableVm() {
        synchronized(this) {
            String dataCenter = this.dcc.getDataCenterName();
            int totalVMs = this.vmCountMap.get(dataCenter);
            AlgoHelper ah = (AlgoHelper)this.map.get(dataCenter);
            int lastIndex = ah.getIndex();
            int lastCount = ah.getLastCount();
            LinkedList<AlgoAttr> list = this.algoMap.get(dataCenter);
            AlgoAttr aAtr = (AlgoAttr)list.get(lastIndex);
            indexChanged = false;
            if(lastCount < totalVMs)  {
                if(aAtr.getRequestAllocated() % aAtr.getWeightCount() == 0) {
                    lastCount = lastCount + 1;
                    this.currentVM = lastCount;
                    if(aAtr.getRequestAllocated() == aAtr.getVmCount() * aAtr.getWeightCount()) {
                        lastIndex++;
                        if(lastIndex != list.size()) {
                            AlgoAttr aAtr_N = (AlgoAttr)list.get(lastIndex);
                            aAtr_N.setRequestAllocated(1);
                            this.indexChanged = true;
                        }
                        if(lastIndex == list.size()) {
                            lastIndex = 0;
                            lastCount = 0;
                            this.currentVM = lastCount;
                            AlgoAttr aAtr_N = (AlgoAttr)list.get(lastIndex);
                            aAtr_N.setRequestAllocated(1);
                            this.indexChanged = true;

                        }
                    }
                }
                if(!this.indexChanged) {
                    aAtr.setRequestAllocated(aAtr.getRequestAllocated() + 1);
                }

                this.map.put(dataCenter, new AlgoHelper(lastIndex, lastCount)); 

                //System.out.println("Current VM : " + this.currentVM + " for data center : " + dataCenter);
                return this.currentVM;
            }}

            System.out.println("--------Before final return statement---------");
            return 0;

    }   

    @Override
    public void cloudSimEventFired(CloudSimEvent e) {
        if(e.getId() == CloudSimEvents.EVENT_CLOUDLET_ALLOCATED_TO_VM) {
            int vmId = (Integer) e.getParameter(Constants.PARAM_VM_ID);
                    busyList.add(vmId);

            System.out.println("+++++++++++++++++++Machine with vmID : " + vmId + " attached");
        }else if(e.getId() == CloudSimEvents.EVENT_VM_FINISHED_CLOUDLET) {
            int vmId = (Integer) e.getParameter(Constants.PARAM_VM_ID);
                            busyList.remove(vmId);
            //System.out.println("+++++++++++++++++++Machine with vmID : " + vmId + " freed");
        }
    }
}

在上面的代码中,所有的列表都已经按照内存最高的优先排序了。整个想法是通过将更多的任务分配给内存更高的机器来平衡内存。

每次分配机器时,分配的请求都会增加一个。每组机器都有一个附加的权重计数,通过除以来memory_allotted计算512

该方法getNextAvailableVm()由多个线程一次调用。对于 3 个数据中心,3 个线程会同时调用getNextAva...(),但在不同的类对象上。同方法中语句this.dcc.getDataCenterName()返回的数据中心是根据之前选择的数据中心代理策略返回的。

如何确保我当前返回的机器是空闲的,如果机器不是空闲的,我分配下一台可用内存最高的机器。我还必须确保有权处理X任务的机器确实处理X任务甚至那台机器目前也很忙。

这是这里使用的数据结构的一般描述:

在此处输入图像描述

此类的代码托管在 github 上

这是github 上完整项目的链接。

这里使用的大部分数据结构/类都在这个包中

4

1 回答 1

1

也许你是在思考这个问题。一个简单的策略是让代理知道所有待处理的任务。每个任务工作者或线程都向代理询问要处理的新消息/任务。经纪人按照要求的顺序分配工作。这就是 JMS 队列的工作方式。对于可以处理两个任务的 JVM,您可以启动两个线程。

有许多标准 JMS 可以做到这一点,但我建议查看 ActiveMQ,因为它很容易上手。

请注意,在您的情况下,更简单的解决方案是拥有一台具有 8 GB 内存的机器。您可以花很少的钱(40 - 150 美元,具体取决于供应商)购买 8 GB 的服务器,并且通过共享资源在一个实例中可以更有效地使用它。我假设您正在查看更大的实例。小于 8 GB 的实例最好只升级它。

如何确保我当前退回的机器是免费的

这是您的情况,如果您不知道如何判断机器是否免费,我看不出有人会对您的应用程序有更多了解。

如果机器不是空闲的,我会分配下一台具有最高可用内存的机器。

您需要查看空闲机器并选择具有最多可用内存的机器。除了按照您所说的进行操作外,我看不出这里有什么问题。

我还必须确保有权处理 X 个任务的机器,即使该机器当前很忙,也能处理 X 个任务。

您需要数据源或存储来获取此信息。什么允许在哪里运行。在 JMS 中,您将有多个队列,并且仅将某些队列传递给可以处理这些队列的机器。

于 2013-09-14T06:59:34.797 回答