source: DCWoRMS/branches/coolemall/example/applicationProfiles/applicationProfiles.xml @ 1477

Revision 1477, 1.4 KB checked in by wojtekp, 10 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/DCwormsResSchema.xsd">
4       
5               
6        <timeEstimationPlugin>
7                <name>example.timeestimation.coolemall.PhaseBasedTimeEstimationPlugin</name>
8        </timeEstimationPlugin>
9        <!-- Simple data center description -->
10        <resources>
11                <computingResource class="DataCenter" name="compRes">
12                        <!-- Defined data center contains only 6 processors -->
13                        <computingResource class="Processor" count="6">
14                                <profile>
15                                        <powerProfile>
16                                                <energyEstimationPlugin>
17                                                        <name>example.energy.ProcessorEnergyEstimationPlugin</name>
18                                                </energyEstimationPlugin>               
19                                                <powerStates>
20                                                        <powerState>
21                                                                <name>ON</name>
22                                                                <powerUsage>100</powerUsage>
23                                                        </powerState>
24                                                </powerStates>         
25                                        </powerProfile>
26                                </profile>
27                        </computingResource>
28                </computingResource>
29                <scheduler class="Cluster" name="cluster">
30                        <!-- Definition of scheduling plugin at cluster level -->
31                        <schedulingPlugin>
32                                <name>example.localplugin.FCFSBF_LocalPlugin</name>
33                        </schedulingPlugin>     
34                        <!-- Reference to managed resources - cluster manages resources belonging to the defined data center -->
35                        <managedComputingResources include="false">
36                                <resourceName>compRes</resourceName>
37                        </managedComputingResources>
38                </scheduler>   
39        </resources>
40
41</environment>
Note: See TracBrowser for help on using the repository browser.