source: xssim/branches/tpiontek/example/experiment4.properties @ 104

Revision 104, 1.8 KB checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1# Workload description consists of *.swf file and set of xml files. Xml files
2# contains additional information which is essential to pursue resource
3# advance reservation scheduling model.
4
5# Grid plugin choose randomly between offers returned by local resources/plugins.
6# All offers must satisfy task resource requirements.
7# Network reservation is based on Dijkstra algorithm, which
8# finds the best(shortest) path between two nodes according to time and bandwidth requirements.
9# Task 2_0 is not executed due to failure during network reservation(couldn't satisfy bandwidth requirements)
10gridschedulingpluginname=example.gridplugin.GridARNRDijkstra
11
12# Local plugin starts task execution in FCFS order and returns offers which
13# exactly satisfies task resource requirements.
14localallocpolicypluginname=example.localplugin.ARFirstFit
15
16# Linear model of cpu processing power is used for task execution time estimations.
17exectimeestimationpluginname=example.timeestimation.ExecTimeEstimationPlugin
18
19# Path to xml file which describes resource characteristics.
20resdesc=example/workloadARNR/HostParameters.xml
21
22# Path to txt file which describes network topology.
23networktopologyfilename=example/workloadARNR/network.txt
24
25# Path to directory which contains workload description. In this experiment workload
26# consists of set of xml files, which should be placed directly in readscenario.inputfolder
27readscenario.inputfolder=example/workloadARNR
28# and swf file, which name is declared by readscenario.workloadfilename parameter.
29# Swf file must be placed in readscenario.inputfolder directory. 
30readscenario.workloadfilename=workload.swf
31
32# Choose if files with task processing history should be created.
33printhistory=true
34
35# Choose directory where all result files should be placed.
36stats.outputfolder=../experiment4_result
Note: See TracBrowser for help on using the repository browser.