Jump to: navigation, search

Difference between revisions of "Rally/BenchmarkScenarios"

(Added configuration examples)
m (Fix broken link)
 
(18 intermediate revisions by 4 users not shown)
Line 1: Line 1:
=Available Benchmark Scenarios=
+
=Available Benchmarks=
  
==Nova==
+
Available benchmarks: scenarios, context, sla can be found here https://github.com/stackforge/rally/tree/master/samples/tasks
 
 
===NovaServers===
 
This scenario class contains procedures concentrated on calling the Nova servers API.
 
 
 
 
 
====boot_and_delete_server====
 
Boots and deletes one server.
 
=====Configuration example=====
 
    {
 
        "NovaServers.boot_and_delete_server": [
 
          {"args": {"flavor_id": 1, "image_id": "498c94c1-2547-4ddd-bea2-c5fc881b989f"},
 
          "times": 50, "concurrent": 10}
 
        ]
 
    }
 
 
 
 
 
====snapshot_server====
 
Boots a server, makes its snapshot, then deletes the server and tries to boot it again from the saved snapshot. Finally deletes both the server and its snapshot.
 
=====Configuration example=====
 
    {
 
        "NovaServers.snapshot_server": [
 
          {"args": {"flavor_id": 1, "image_id": "498c94c1-2547-4ddd-bea2-c5fc881b989f"},
 
          "times": 50, "concurrent": 10}
 
        ]
 
    }
 

Latest revision as of 12:37, 14 September 2016

Available Benchmarks

Available benchmarks: scenarios, context, sla can be found here https://github.com/stackforge/rally/tree/master/samples/tasks