source: DCWoRMS/branches/coolemall/example/experiment6/resources6.xml @ 1223

Revision 1223, 1.5 KB checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<environment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3        xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/DCwormsResSchemaNew.xsd">
4       
5               
6        <timeEstimationPlugin>
7                <name>example.timeestimation.coolemall.PhaseTimeEstimationPlugin</name>
8        </timeEstimationPlugin>
9        <!-- Simple data center description -->
10        <resources>
11                <computingResource class="DataCenter" name="compRes">
12                        <profile>
13                                <powerProfile>
14                                        <energyEstimationPlugin>
15                                                <name>example.energy.DataCenterEnergyEstimationPlugin</name>
16                                        </energyEstimationPlugin>                               
17                                </powerProfile>
18                        </profile>
19                        <!-- Defined data center contains only 6 processors -->
20                        <computingResource class="Processor" count="6">
21                                <profile>
22                                        <powerProfile>
23                                                <energyEstimationPlugin>
24                                                        <name>example.energy.coolemall.ProcessorEnergyEstimationPlugin</name>
25                                                </energyEstimationPlugin>                               
26                                        </powerProfile>
27                                </profile>
28                        </computingResource>
29                </computingResource>
30                <scheduler class="Cluster" name="cluster">
31                        <!-- Definition of scheduling plugin at cluster level -->
32                        <schedulingPlugin>
33                                <name>example.localplugin.FCFSBF_LocalPlugin</name>
34                        </schedulingPlugin>     
35                        <!-- Reference to managed resources - cluster manages resources belonging to the defined data center -->
36                        <managedComputingResources include="false">
37                                <resourceName>compRes</resourceName>
38                        </managedComputingResources>
39                </scheduler>   
40        </resources>
41
42</environment>
Note: See TracBrowser for help on using the repository browser.