Ignore:
Timestamp:
10/29/12 14:02:14 (12 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/example/experiment2/resources2.xml

    r526 r529  
    11<?xml version="1.0" encoding="UTF-8"?> 
    22<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"> 
    44         
    55        <!-- Data center description with some basic characteristics --> 
    66        <resources> 
    77                <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)--> 
    89                        <computingResource class="Rack"> 
     10                                <!-- Rack contains storage device with capacity=1000000 (unit according to the user interpretation)--> 
    911                                <resourceUnit class="storage"> 
    1012                                        <amount>1000000</amount> 
    1113                                </resourceUnit> 
     14                                <!-- Rack consists of 12 computing nodes, 8 of one type and 4 of another --> 
    1215                                <computingResource class="ComputingNode" count="8"> 
     16                                        <!-- Each of 8 computing nodes contains memory unit=16384 (unit according to the user interpretation)--> 
    1317                                        <resourceUnit class="memory"> 
    1418                                                <amount>16384</amount> 
    1519                                        </resourceUnit> 
     20                                        <!-- Each of 8 computing nodes contains 2 processors with processing speed=1 MIPS--> 
    1621                                        <computingResource class="Processor" count="2"> 
    1722                                                <parameter name="speed"> 
     
    2126                                </computingResource>     
    2227                                <computingResource class="ComputingNode" count="4"> 
     28                                        <!-- Each of 4 computing nodes contains memory unit=65536(unit according to the user interpretation)--> 
    2329                                        <resourceUnit class="memory"> 
    2430                                                <amount>65536</amount> 
    2531                                        </resourceUnit> 
     32                                        <!-- Each of 4 computing nodes contains 2 processors with processing speed=2 MIPS--> 
    2633                                        <computingResource class="Processor" count="2"> 
    2734                                                <parameter name="speed"> 
     
    3340                </computingResource> 
    3441                <scheduler class="Cluster" name="cluster"> 
     42                        <!-- Definition of scheduling plugin at cluster level --> 
    3543                        <schedulingPlugin> 
    3644                                <name>example.localplugin.FCFSBF_ClusterPlugin</name> 
    3745                        </schedulingPlugin>              
     46                        <!-- Definition of available queues--> 
    3847                        <queues> 
    3948                                <queue> 
     
    4655                                </queue> 
    4756                        </queues>        
     57                        <!-- Reference to managed resources - cluster manages defined rack and all resources belonging to it --> 
    4858                        <managedComputingResources include="true"> 
    4959                                <resourceName>Rack_0</resourceName> 
Note: See TracChangeset for help on using the changeset viewer.