Changeset 529 for DCWoRMS/trunk/example/experiment2/resources2.xml
- Timestamp:
- 10/29/12 14:02:14 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/example/experiment2/resources2.xml
r526 r529 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <environment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/ WormsResSchema.xsd">3 xsi:noNamespaceSchemaLocation="../../simulator/schemas/resources/DCWormsResSchema.xsd"> 4 4 5 5 <!-- Data center description with some basic characteristics --> 6 6 <resources> 7 7 <computingResource class="DataCenter" name="compRes"> 8 <!-- Defined data center contains only 1 rack (if count attribute is not specified a default value=1 is assumed)--> 8 9 <computingResource class="Rack"> 10 <!-- Rack contains storage device with capacity=1000000 (unit according to the user interpretation)--> 9 11 <resourceUnit class="storage"> 10 12 <amount>1000000</amount> 11 13 </resourceUnit> 14 <!-- Rack consists of 12 computing nodes, 8 of one type and 4 of another --> 12 15 <computingResource class="ComputingNode" count="8"> 16 <!-- Each of 8 computing nodes contains memory unit=16384 (unit according to the user interpretation)--> 13 17 <resourceUnit class="memory"> 14 18 <amount>16384</amount> 15 19 </resourceUnit> 20 <!-- Each of 8 computing nodes contains 2 processors with processing speed=1 MIPS--> 16 21 <computingResource class="Processor" count="2"> 17 22 <parameter name="speed"> … … 21 26 </computingResource> 22 27 <computingResource class="ComputingNode" count="4"> 28 <!-- Each of 4 computing nodes contains memory unit=65536(unit according to the user interpretation)--> 23 29 <resourceUnit class="memory"> 24 30 <amount>65536</amount> 25 31 </resourceUnit> 32 <!-- Each of 4 computing nodes contains 2 processors with processing speed=2 MIPS--> 26 33 <computingResource class="Processor" count="2"> 27 34 <parameter name="speed"> … … 33 40 </computingResource> 34 41 <scheduler class="Cluster" name="cluster"> 42 <!-- Definition of scheduling plugin at cluster level --> 35 43 <schedulingPlugin> 36 44 <name>example.localplugin.FCFSBF_ClusterPlugin</name> 37 45 </schedulingPlugin> 46 <!-- Definition of available queues--> 38 47 <queues> 39 48 <queue> … … 46 55 </queue> 47 56 </queues> 57 <!-- Reference to managed resources - cluster manages defined rack and all resources belonging to it --> 48 58 <managedComputingResources include="true"> 49 59 <resourceName>Rack_0</resourceName>
Note: See TracChangeset
for help on using the changeset viewer.