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) |
---|
10 | gridschedulingpluginname=example.gridplugin.GridARNRDijkstra |
---|
11 | |
---|
12 | # Local plugin starts task execution in FCFS order and returns offers which |
---|
13 | # exactly satisfies task resource requirements. |
---|
14 | localallocpolicypluginname=example.localplugin.ARFirstFit |
---|
15 | |
---|
16 | # Linear model of cpu processing power is used for task execution time estimations. |
---|
17 | exectimeestimationpluginname=example.timeestimation.ExecTimeEstimationPlugin |
---|
18 | |
---|
19 | # Path to xml file which describes resource characteristics. |
---|
20 | resdesc=example/workloadARNR/HostParameters.xml |
---|
21 | |
---|
22 | # Path to txt file which describes network topology. |
---|
23 | networktopologyfilename=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 |
---|
27 | readscenario.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. |
---|
30 | readscenario.workloadfilename=workload.swf |
---|
31 | |
---|
32 | # Choose if files with task processing history should be created. |
---|
33 | printhistory=true |
---|
34 | |
---|
35 | # Choose directory where all result files should be placed. |
---|
36 | stats.outputfolder=../experiment4_result |
---|