rally-openstack/samples/tasks
Om Prakash Pandey 8ea006dd0d Fix six typos and grammar inaccuracies in Rally Readme Files
It affects three files
https://github.com/openstack/rally/tree/master/tests/README.rst
1. directiry => directory
2. automaticaly => automatically
3. throw => through

https://github.com/openstack/rally/tree/master/samples/tasks/scenarios/README.rst
1. conficuration => configuration

https://github.com/openstack/rally/tree/master/samples/tasks/support/README.rst
1. intesnive => intensive
2. a => an

Change-Id: Ief5946258de1d5a1661965e3fc1d81dbba8c4871
Closes-Bug: #1484880
2015-08-14 16:18:40 +05:30
..
contexts Moving rally/doc/samples to rally/samples 2015-01-16 05:54:09 -08:00
runners Update stackforge to openstack 2015-04-20 14:02:43 +05:30
scenarios Fix six typos and grammar inaccuracies in Rally Readme Files 2015-08-14 16:18:40 +05:30
sla Add streaming algorithms and SLA to check for outliers 2015-04-29 14:23:35 +03:00
support Fix six typos and grammar inaccuracies in Rally Readme Files 2015-08-14 16:18:40 +05:30
README.rst Update stackforge to openstack 2015-04-20 14:02:43 +05:30

Tasks Configuration Samples

To specify your tasks, use configuration files in json or yaml format.

JSON schema of input task format:

:

{
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema",
    "patternProperties": {
        ".*": {
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "args": {
                        "type": "object"
                    },
                    "runner": {
                        "type": "object",
                        "properties": {
                            "type": {"type": "string"}
                        },
                        "required": ["type"]
                    },
                    "context": {
                        "type": "object"
                    },
                    "sla": {
                        "type": "object"
                    },
                },
                "additionalProperties": False
            }
        }
    }
}

For humans:

::
{
"ScenarioClass.scenario_method": [
{
"args": {

...

}, "runner": { ... }, "context": { ... }, "sla": { ... }

}

]

}

ScanarioClass should be a subclass of the base Scenario class and scenario_method specifies what benchmark task should be run. Section "args" is also related to scenario. To learn more about scenarios configuration, see samples in samples/tasks/scenarios.

Section "runners" specifies the way, how task should be run. To learn more about runners configurations, see samples in samples/tasks/runners.

Section "context" defines different types of environments in which task can be launched. Look at samples/tasks/contexts for samples.

Section "sla" defines details for determining compliance with contracted values such as maximum error rate or minimum response time. Look at samples/tasks/sla for samples.

See a detailed description of benchmark scenarios, contexts & runners.