== C. Orchestrate/Run Experiment == {{{ #!html
Image Map
}}} === C.1 Initial Setup === === C.1.1 Starting the OML Server (if needed) === For this tutorial we have an OML server running on emmy9.casa.umass.edu, which collects the measurement data in an sqlite3 database and at the end of the experiment it pushes the data to IRODS. * Here is how you would have to start an OML server if you wanted to run this on a different machine (OML2.8 is required.) {{{ #!html DO NOT perform this task in the tutorial. }}} This is explained the [OML installation file]. {{{ $ /usr/bin/oml2-server -l 3003 --logfile=/var/log/oml2-server-2.9.log --user=oml2 --group=oml2 -H /usr/share/oml2-server/oml2-server-hook.sh }}} The latest version of OML offers the capability of executing a script after the measurement has finished. In OML terminology this is called a "hook". The hook script we use is attached at the bottom of this wiki page (oml2-server-hook.sh). {{{ List and explain final hook script here! }}} ---- === C.1.2 Verification of Topology === After establishing the slice on which the experiment will be executed, the experimenter will be most likely be interested in verifying if the slice has been initiated correctly. In this tutorial, we use an [[http://emmy9.casa.umass.edu/GEC15-GIMI-Tutorial/step1-ping_all.rb OMF experiment script]] that executes pings between neighboring nodes. [BR] The following figure shows that a total of 12 (between each pair of nodes and in each direction) ping are performed. [Image(ping.png)] {{{ defProperty('source1', "nodeA", "ID of a resource") defProperty('source2', "nodeB", "ID of a resource") defProperty('source3', "nodeC", "ID of a resource") defProperty('source4', "nodeD", "ID of a resource") defProperty('source5', "nodeE", "ID of a resource") #defProperty('sink1', "nodeA", "ID of a sink") #defProperty('sink2', "nodeB", "ID of a sink") #defProperty('sink3', "nodeC", "ID of a sink") #defProperty('sink4', "nodeD", "ID of a sink") #defProperty('sink5', "nodeE", "ID of a sink") defProperty('sinkaddr11', '192.168.4.10', "Ping destination address") defProperty('sinkaddr12', '192.168.5.12', "Ping destination address") defProperty('sinkaddr21', '192.168.4.11', "Ping destination address") defProperty('sinkaddr22', '192.168.2.12', "Ping destination address") defProperty('sinkaddr23', '192.168.1.13', "Ping destination address") defProperty('sinkaddr31', '192.168.5.11', "Ping destination address") defProperty('sinkaddr32', '192.168.2.10', "Ping destination address") defProperty('sinkaddr33', '192.168.3.13', "Ping destination address") defProperty('sinkaddr34', '192.168.6.14', "Ping destination address") defProperty('sinkaddr41', '192.168.1.10', "Ping destination address") defProperty('sinkaddr42', '192.168.3.12', "Ping destination address") defProperty('sinkaddr51', '192.168.6.12', "Ping destination address") defApplication('ping_app', 'pingmonitor') do |a| a.path = "/root/pingWrap.rb" a.version(1, 2, 0) a.shortDescription = "Wrapper around ping" a.description = "ping application" a.defProperty('dest_addr', 'Address to ping', '-a', {:type => :string, :dynamic => false}) a.defProperty('count', 'Number of times to ping', '-c', {:type => :integer, :dynamic => false}) a.defProperty('interval', 'Interval between pings in s', '-i', {:type => :integer, :dynamic => false}) a.defMeasurement('myping') do |m| m.defMetric('dest_addr',:string) m.defMetric('ttl',:int) m.defMetric('rtt',:float) m.defMetric('rtt_unit',:string) end end defGroup('Source1', property.source1) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr11) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr12) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source2', property.source2) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr21) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr22) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr23) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source3', property.source3) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr31) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr32) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr33) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr34) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source4', property.source4) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr41) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr42) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source5', property.source5) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr51) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end onEvent(:ALL_UP_AND_INSTALLED) do |event| info "Starting the ping" allGroups.startApplications wait 5 info "Stopping the ping" allGroups.stopApplications Experiment.done end }}} The script is executed from the user workspace as follows: {{{ $ cd ~/Tutorials/GIMI/common/ $ omf-5.4 exec --no-am -S gimiXX step1-ping_all.rb }}} Where gimiXX has to be replaced by the slice name you are using for your experiment. You should see the following output after executing the omf command. {{{ INFO NodeHandler: OMF Experiment Controller 5.4 (git e0eefcf) INFO NodeHandler: Slice ID: gimi20 INFO NodeHandler: Experiment ID: gimi20-2012-10-18t14.03.42-04.00 INFO NodeHandler: Message authentication is disabled WARN NodeHandler: AM support disabled - any service calls will fail! INFO Experiment: load system:exp:stdlib INFO property.resetDelay: resetDelay = 210 (Fixnum) INFO property.resetTries: resetTries = 1 (Fixnum) INFO Experiment: load system:exp:eventlib INFO Experiment: load ping_all.rb INFO property.source1: source1 = "nodeA" (String) INFO property.source2: source2 = "nodeB" (String) INFO property.source3: source3 = "nodeC" (String) INFO property.source4: source4 = "nodeD" (String) INFO property.source5: source5 = "nodeE" (String) INFO property.sinkaddr11: sinkaddr11 = "192.168.4.10" (String) INFO property.sinkaddr12: sinkaddr12 = "192.168.5.12" (String) INFO property.sinkaddr21: sinkaddr21 = "192.168.4.11" (String) INFO property.sinkaddr22: sinkaddr22 = "192.168.2.12" (String) INFO property.sinkaddr23: sinkaddr23 = "192.168.1.13" (String) INFO property.sinkaddr31: sinkaddr31 = "192.168.5.11" (String) INFO property.sinkaddr32: sinkaddr32 = "192.168.2.10" (String) INFO property.sinkaddr33: sinkaddr33 = "192.168.3.13" (String) INFO property.sinkaddr34: sinkaddr34 = "192.168.6.14" (String) INFO property.sinkaddr41: sinkaddr41 = "192.168.1.10" (String) INFO property.sinkaddr42: sinkaddr42 = "192.168.3.12" (String) INFO property.sinkaddr51: sinkaddr51 = "192.168.6.12" (String) INFO Topology: Loading topology 'nodeA'. INFO Topology: Loading topology 'nodeB'. INFO Topology: Loading topology 'nodeC'. INFO Topology: Loading topology 'nodeD'. INFO Topology: Loading topology 'nodeE'. INFO Experiment: Switching ON resources which are OFF INFO ALL_UP_AND_INSTALLED: Event triggered. Starting the associated tasks. INFO exp: Starting the ping INFO exp: Request from Experiment Script: Wait for 5s.... INFO exp: Stopping the ping INFO EXPERIMENT_DONE: Event triggered. Starting the associated tasks. INFO NodeHandler: INFO NodeHandler: Shutting down experiment, please wait... INFO NodeHandler: INFO run: Experiment gimi20-2012-10-18t14.03.42-04.00 finished after 0:16 }}} ---- === C.1.3 Setup Routing in Experiment Topology === In more complex topologies routing has to be set up. In our case, this is achieved with the aid of an [[http://emmy9.casa.umass.edu/GEC15-GIMI-Tutorial/step2-routing.rb OMF experiment script]]. The one we use for this tutorial is shown below. {{{ defGroup('Node1', "nodeA") defGroup('Node2', "nodeB") defGroup('Node3', "nodeC") defGroup('Node4', "nodeD") defGroup('Node5', "nodeE") onEvent(:ALL_UP) do |event| wait 1 info 'Changing routing setup' group('Node1').exec("route add -net 192.168.1.0/24 gw 192.168.4.10") group('Node1').exec("route add -net 192.168.2.0/24 gw 192.168.4.10") group('Node1').exec("route add -net 192.168.3.0/24 gw 192.168.5.12") group('Node1').exec("route add -net 192.168.6.0/24 gw 192.168.5.12") group('Node1').exec("echo 1 > /proc/sys/net/ipv4/ip_forward") group('Node2').exec("route add -net 192.168.3.0/24 gw 192.168.1.13") group('Node2').exec("route add -net 192.168.5.0/24 gw 192.168.4.11") group('Node2').exec("route add -net 192.168.6.0/24 gw 192.168.2.12") group('Node2').exec("echo 1 > /proc/sys/net/ipv4/ip_forward") group('Node3').exec("route add -net 192.168.1.0/24 gw 192.168.3.13") group('Node3').exec("route add -net 192.168.4.0/24 gw 192.168.5.11") group('Node3').exec("echo 1 > /proc/sys/net/ipv4/ip_forward") group('Node4').exec("route add -net 192.168.2.0/24 gw 192.168.3.12") group('Node4').exec("route add -net 192.168.4.0/24 gw 192.168.1.10") group('Node4').exec("route add -net 192.168.5.0/24 gw 192.168.3.12") group('Node4').exec("route add -net 192.168.6.0/24 gw 192.168.3.12") group('Node4').exec("echo 1 > /proc/sys/net/ipv4/ip_forward") group('Node5').exec("route add -net 192.168.2.0/24 gw 192.168.6.12") group('Node5').exec("route add -net 192.168.1.0/24 gw 192.168.6.12") group('Node5').exec("route add -net 192.168.3.0/24 gw 192.168.6.12") group('Node5').exec("route add -net 192.168.4.0/24 gw 192.168.6.12") group('Node5').exec("route add -net 192.168.5.0/24 gw 192.168.6.12") info 'Routing setup finished' wait 5 info 'Stopping applications' allGroups.stopApplications wait 1 Experiment.done end }}} This script can be easily adapted if the experimenter wishes to set up the routing between the nodes differently. The script is executed from the user workspace as follows: {{{ $ cd ~/Tutorials/GIMI/common/ $ omf-5.4 exec --no-am -S gimiXX step2-routing.rb }}} Where gimiXX has to be replaced by the slice name you are using for your experiment. You should see the following output after executing the omf command. {{{ INFO NodeHandler: OMF Experiment Controller 5.4 (git e0eefcf) INFO NodeHandler: Slice ID: gimi20 INFO NodeHandler: Experiment ID: gimi20-2012-10-18t14.14.10-04.00 INFO NodeHandler: Message authentication is disabled WARN NodeHandler: AM support disabled - any service calls will fail! INFO Experiment: load system:exp:stdlib INFO property.resetDelay: resetDelay = 210 (Fixnum) INFO property.resetTries: resetTries = 1 (Fixnum) INFO Experiment: load system:exp:eventlib INFO Experiment: load routing.rb INFO Topology: Loading topology 'nodeA'. INFO Topology: Loading topology 'nodeB'. INFO Topology: Loading topology 'nodeC'. INFO Topology: Loading topology 'nodeD'. INFO Topology: Loading topology 'nodeE'. INFO Experiment: Switching ON resources which are OFF INFO ALL_UP: Event triggered. Starting the associated tasks. INFO exp: Request from Experiment Script: Wait for 1s.... INFO exp: Changing routing setup INFO exp: Routing setup finished INFO exp: Request from Experiment Script: Wait for 5s.... INFO exp: Stopping applications INFO exp: Request from Experiment Script: Wait for 1s.... INFO EXPERIMENT_DONE: Event triggered. Starting the associated tasks. INFO NodeHandler: INFO NodeHandler: Shutting down experiment, please wait... INFO NodeHandler: INFO run: Experiment gimi20-2012-10-18t14.14.10-04.00 finished after 0:16 }}} ---- === C.1.4 Verification of Routing === After establishing the routing, we use an [[http://emmy9.casa.umass.edu/GEC15-GIMI-Tutorial/step3-ping_e2e.rb OMF experiment script]] that executes pings between each pair of nodes that contains one hop, to verify the correctness of routing setup. {{{ defProperty('source1', "nodeA", "ID of a resource") defProperty('source2', "nodeB", "ID of a resource") defProperty('source3', "nodeC", "ID of a resource") defProperty('source4', "nodeD", "ID of a resource") defProperty('source5', "nodeE", "ID of a resource") defProperty('sinkaddr11', '192.168.1.13', "Ping destination address") defProperty('sinkaddr12', '192.168.3.13', "Ping destination address") defProperty('sinkaddr13', '192.168.6.14', "Ping destination address") defProperty('sinkaddr21', '192.168.6.14', "Ping destination address") defProperty('sinkaddr41', '192.168.4.11', "Ping destination address") defProperty('sinkaddr42', '192.168.5.11', "Ping destination address") defProperty('sinkaddr43', '192.168.6.14', "Ping destination address") defProperty('sinkaddr51', '192.168.5.11', "Ping destination address") defProperty('sinkaddr52', '192.168.2.10', "Ping destination address") defProperty('sinkaddr53', '192.168.3.13', "Ping destination address") defApplication('ping_app', 'pingmonitor') do |a| a.path = "/root/pingWrap.rb" a.version(1, 2, 0) a.shortDescription = "Wrapper around ping" a.description = "ping application" a.defProperty('dest_addr', 'Address to ping', '-a', {:type => :string, :dynamic => false}) a.defProperty('count', 'Number of times to ping', '-c', {:type => :integer, :dynamic => false}) a.defProperty('interval', 'Interval between pings in s', '-i', {:type => :integer, :dynamic => false}) a.defMeasurement('myping') do |m| m.defMetric('dest_addr',:string) m.defMetric('ttl',:int) m.defMetric('rtt',:float) m.defMetric('rtt_unit',:string) end end defGroup('Source1', property.source1) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr11) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr12) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr13) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source2', property.source1) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr21) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source4', property.source3) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr41) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr42) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr43) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end defGroup('Source5', property.source3) do |node| node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr51) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr52) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end node.addApplication("ping_app") do |app| app.setProperty('dest_addr', property.sinkaddr53) app.setProperty('count', 30) app.setProperty('interval', 1) app.measure('myping', :samples => 1) end end onEvent(:ALL_UP_AND_INSTALLED) do |event| info "Starting the ping" allGroups.startApplications wait 5 info "Stopping the ping" allGroups.stopApplications Experiment.done end }}} The script is executed from the user workspace as follows: {{{ $ cd ~/Tutorials/GIMI/common/ $ omf-5.4 exec --no-am -S gimiXX step3-ping_e2e.rb }}} Where gimiXX has to be replaced by the slice name you are using for your experiment. You should see the following output after executing the omf command. {{{ INFO NodeHandler: OMF Experiment Controller 5.4 (git e0eefcf) INFO NodeHandler: Slice ID: gimi20 INFO NodeHandler: Experiment ID: gimi20-2012-10-18t14.03.42-04.00 INFO NodeHandler: Message authentication is disabled WARN NodeHandler: AM support disabled - any service calls will fail! INFO Experiment: load system:exp:stdlib INFO property.resetDelay: resetDelay = 210 (Fixnum) INFO property.resetTries: resetTries = 1 (Fixnum) INFO Experiment: load system:exp:eventlib INFO Experiment: load ping_all.rb INFO property.source1: source1 = "nodeA" (String) INFO property.source2: source2 = "nodeB" (String) INFO property.source3: source3 = "nodeC" (String) INFO property.source4: source4 = "nodeD" (String) INFO property.source5: source5 = "nodeE" (String) INFO property.sinkaddr11: sinkaddr11 = "192.168.4.10" (String) INFO property.sinkaddr12: sinkaddr12 = "192.168.5.12" (String) INFO property.sinkaddr21: sinkaddr21 = "192.168.4.11" (String) INFO property.sinkaddr22: sinkaddr22 = "192.168.2.12" (String) INFO property.sinkaddr23: sinkaddr23 = "192.168.1.13" (String) INFO property.sinkaddr31: sinkaddr31 = "192.168.5.11" (String) INFO property.sinkaddr32: sinkaddr32 = "192.168.2.10" (String) INFO property.sinkaddr33: sinkaddr33 = "192.168.3.13" (String) INFO property.sinkaddr34: sinkaddr34 = "192.168.6.14" (String) INFO property.sinkaddr41: sinkaddr41 = "192.168.1.10" (String) INFO property.sinkaddr42: sinkaddr42 = "192.168.3.12" (String) INFO property.sinkaddr51: sinkaddr51 = "192.168.6.12" (String) INFO Topology: Loading topology 'nodeA'. INFO Topology: Loading topology 'nodeB'. INFO Topology: Loading topology 'nodeC'. INFO Topology: Loading topology 'nodeD'. INFO Topology: Loading topology 'nodeE'. INFO Experiment: Switching ON resources which are OFF INFO ALL_UP_AND_INSTALLED: Event triggered. Starting the associated tasks. INFO exp: Starting the ping INFO exp: Request from Experiment Script: Wait for 5s.... INFO exp: Stopping the ping INFO EXPERIMENT_DONE: Event triggered. Starting the associated tasks. INFO NodeHandler: INFO NodeHandler: Shutting down experiment, please wait... INFO NodeHandler: INFO run: Experiment gimi20-2012-10-18t14.03.42-04.00 finished after 0:16 }}} ---- === C.2 Running Actual Experiment === We will use an [[http://emmy9.casa.umass.edu/GEC15-GIMI-Tutorial/step4-otg_nmetrics.rb OMF experiment script]] to execute oml enabled traffic generator and receiver (otg and otr) to simulate network traffic, and use oml enabled nmetrics to measure the system usage (e.g., CUP, memory) and network interface usage on each of the participated ExoGENI nodes. The one we use for this tutorial is shown below. {{{ defProperty('theSender','nodeB','ID of sender node') defProperty('theReceiver1', 'nodeE', "ID of receiver node") defProperty('theReceiver2', 'nodeA', "ID of receiver node") defProperty('theReceiver3', 'nodeD', "ID of receiver node") defProperty('packetsize', 128, "Packet size (byte) from the sender node") defProperty('bitrate', 2048, "Bitrate (bit/s) from the sender node") defProperty('runtime', 40, "Time in second for the experiment is to run") defGroup('Sender',property.theSender) do |node| options = { 'sample-interval' => 2 } node.addPrototype("system_monitor", options) node.addApplication("test:app:otg2") do |app| app.setProperty('udp:local_host', '192.168.2.10') app.setProperty('udp:dst_host', '192.168.6.14') app.setProperty('udp:dst_port', 3000) app.setProperty('cbr:size', property.packetsize) app.setProperty('cbr:rate', property.bitrate * 2) app.measure('udp_out', :samples => 1) end node.addApplication("test:app:otg2") do |app| app.setProperty('udp:local_host', '192.168.4.10') app.setProperty('udp:dst_host', '192.168.4.11') app.setProperty('udp:dst_port', 3000) app.setProperty('cbr:size', property.packetsize) app.setProperty('cbr:rate', property.bitrate * 2) app.measure('udp_out', :samples => 1) end node.addApplication("test:app:otg2") do |app| app.setProperty('udp:local_host', '192.168.1.10') app.setProperty('udp:dst_host', '192.168.1.13') app.setProperty('udp:dst_port', 3000) app.setProperty('cbr:size', property.packetsize) app.setProperty('cbr:rate', property.bitrate * 2) app.measure('udp_out', :samples => 1) end end defGroup('Receiver1',property.theReceiver1) do |node| options = { 'sample-interval' => 2 } node.addPrototype("system_monitor", options) node.addApplication("test:app:otr2") do |app| app.setProperty('udp:local_host', '192.168.6.14') app.setProperty('udp:local_port', 3000) app.measure('udp_in', :samples => 1) end end defGroup('Receiver2',property.theReceiver2) do |node| options = { 'sample-interval' => 2 } node.addPrototype("system_monitor", options) node.addApplication("test:app:otr2") do |app| app.setProperty('udp:local_host', '192.168.4.11') app.setProperty('udp:local_port', 3000) app.measure('udp_in', :samples => 1) end end defGroup('Receiver3',property.theReceiver3) do |node| options = { 'sample-interval' => 2 } node.addPrototype("system_monitor", options) node.addApplication("test:app:otr2") do |app| app.setProperty('udp:local_host', '192.168.1.13') app.setProperty('udp:local_port', 3000) app.measure('udp_in', :samples => 1) end end onEvent(:ALL_UP_AND_INSTALLED) do |event| info "starting" wait 5 allGroups.exec("ln -s /usr/local/bin/otr2 /usr/bin/otr2") allGroups.exec("ln -s /usr/local/bin/otg2 /usr/bin/otg2") allGroups.exec("ln -s /usr/local/bin/oml2-nmetrics /usr/bin/oml2-nmetrics") allGroups.startApplications info "All applications started..." wait property.runtime / 4 property.packetsize = 256 wait property.runtime / 4 property.packetsize = 512 wait property.runtime / 4 property.packetsize = 1024 wait property.runtime / 4 allGroups.stopApplications info "All applications stopped." Experiment.done end }}} The script is executed from the user workspace as follows: {{{ $ cd ~/Tutorials/GIMI/common/ $ omf-5.4 exec --no-am -S gimiXX step4-otg_nmetrics.rb }}} Where gimiXX has to be replaced by the slice name you are using for your experiment. You should see the following output (or similar) after executing the omf command. {{{ INFO NodeHandler: OMF Experiment Controller 5.4 (git e0eefcf) INFO NodeHandler: Slice ID: gimi20 INFO NodeHandler: Experiment ID: gimi20-2012-10-18t13.51.41-04.00 INFO NodeHandler: Message authentication is disabled WARN NodeHandler: AM support disabled - any service calls will fail! INFO Experiment: load system:exp:stdlib INFO property.resetDelay: resetDelay = 210 (Fixnum) INFO property.resetTries: resetTries = 1 (Fixnum) INFO Experiment: load system:exp:eventlib INFO Experiment: load otg_nmetrics.rb INFO property.theSender: theSender = "nodeB" (String) INFO property.theReceiver1: theReceiver1 = "nodeE" (String) INFO property.theReceiver2: theReceiver2 = "nodeA" (String) INFO property.theReceiver3: theReceiver3 = "nodeD" (String) INFO property.packetsize: packetsize = 128 (Fixnum) INFO property.bitrate: bitrate = 2048 (Fixnum) INFO property.runtime: runtime = 40 (Fixnum) INFO Topology: Loading topology 'nodeB'. INFO Topology: Loading topology 'nodeE'. INFO Topology: Loading topology 'nodeA'. INFO Topology: Loading topology 'nodeD'. INFO Experiment: Switching ON resources which are OFF INFO ALL_UP_AND_INSTALLED: Event triggered. Starting the associated tasks. INFO exp: starting INFO exp: Request from Experiment Script: Wait for 5s.... INFO exp: All applications started... INFO exp: Request from Experiment Script: Wait for 10s.... INFO property.packetsize: packetsize = 256 (Fixnum) INFO exp: Request from Experiment Script: Wait for 10s.... INFO property.packetsize: packetsize = 512 (Fixnum) INFO exp: Request from Experiment Script: Wait for 10s.... INFO property.packetsize: packetsize = 1024 (Fixnum) INFO exp: Request from Experiment Script: Wait for 10s.... INFO exp: All applications stopped. INFO EXPERIMENT_DONE: Event triggered. Starting the associated tasks. INFO NodeHandler: INFO NodeHandler: Shutting down experiment, please wait... INFO NodeHandler: INFO run: Experiment gimi20-2012-10-18t13.51.41-04.00 finished after 0:56 }}} ---- === 4) Run and orchestrate I&M services and experiment services to complete run of experiment === 4.1) Initial setup: start basic host measurements and basic ping active network measurements - objectives: - verify functionality of hosts - verify topology of slice - observe measurements with a real-time presentation service - continue measurements throughout duration of the test/tutorial/experiment - at completion: - functionality of hosts and topology of slice has been verified throughout duration of the experiment 4.2) Continuity test: for a limited time, run iperf active network measurements - objectives: - verify ability of slice to carry traffic expected from experiment - observe measurements with a real-time presentation service - once satisfactory measurements have been observed, stop continuity test - at completion: - capability of slice to carry traffic expected from experiment has been verified 4.3) Instrument and run experiment: - objectives: - gather measurements during experiment that allow experiment goals to be met - include desired measurement points within hosts and/or experiment services to instrument test/tutorial/experiment - begin to run and orchestrate measurement services - begin to run and orchestrate experiment services - observe measurements with a real-time presentation service, to verify expected operation of experiment - collect all measurements for duration of experiment - stop experiment services, when this run of the experiment has been completed - stop measurement services - at completion: - one run of experiment has been completed - real-time look at measurements has verfied expected operation of experiment - a full set of measurements has been collected, for later analysis and presentation - collected measurments have been transfered to storage service, so that slice resources can be released (if desired) 4.4) Store collected measurements and other artifacts from test/tutorial/experiment in storage service - at completion: - collected measurements and other artifacts have been transfered to storage service - collected measurements and other artifacts are available for later analysis - slice resources can then be released at any time, without loss of any measurements or artifacts [[BR]] [[BR]] [[http://groups.geni.net/geni/wiki/GIMIv1.1Tutorial/Slice Back to previous step]] [[http://groups.geni.net/geni/wiki/GIMIv1.1Tutorial/Observe Forward to next step]] [[http://groups.geni.net/geni/wiki/GIMIv1.1Tutorial/ Back to tutorial main page]]