Changes between Version 9 and Version 10 of GEC18Agenda/LabWikiAndOEDL/Experiment2


Ignore:
Timestamp:
10/21/13 01:50:54 (10 years ago)
Author:
thierry.rakotoarivelo@nicta.com.au
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GEC18Agenda/LabWikiAndOEDL/Experiment2

    v9 v10  
    176176end
    177177    }}}
    178  4. Walk-through the above OEDL experiment description:
    179    {{{
     178
     179Walk-through the above OEDL experiment description:
     180
     181   * Here we define some experiment properties, which will allow us to parameterize the values for the slice, the resources, and the application settings used in the experiment. As mentioned earlier, these values may be customized for each experiment run. We further declare variables (internal to the experiment descriptions), which facilitate our specific use of properties within this given experiment example.
     182 {{{
    180183defProperty('slice', 'oedl-', "slice name")
    181184...
     
    183186tracker = property.tracker.to_s.split(',').map { |x| "#{x}-#{property.slice}" }
    184187...
    185    }}}
    186    * Here we define some experiment properties, which will allow us to parameterize the values for the slice, the resources, and the application settings used in the experiment. As mentioned earlier, these values may be customized for each experiment run. We further declare variables (internal to the experiment descriptions), which facilitate our specific use of properties within this given experiment example.
    187    {{{
     188 }}}
     189   * Below we declare the applications that we will use in this experiment. The first two applications are bundles of command lines which ensure that no processes or created files from previous experiment runs remain. The third application is the !BitTorrent we use. The following application is the modified and instrumented !BitTorrent prototype which we would like to evaluate. Finally the last application is the instrumented VLC player, which we will use to assess the efficiency of the prototype.
     190 {{{
    188191defApplication('clean_all') do |app|
    189192...
     
    205208...
    206209end
    207    }}}
     210 }}}
    208211
    209212