https://github.com/openstack/rally
Raw File
Tip revision: df2475d27e719579dd1892d34ec2daa5363d6f6b authored by Boris Pavlovic on 12 March 2015, 12:02:43 UTC
Release 0.0.2
Tip revision: df2475d
persistence_benchmark_env.rst
================================================
Add support of persistence benchmark environment
================================================

Use Case
--------

To benchmark many of operations like show, list, detailed you need to have
already these resource in cloud. So it will be nice to be able to create
benchmark environment once before benchmarking. The run some amount of
benchmarks that are using it and at the end just delete all created resources
by benchmark environment.


Problem Description
-------------------

Fortunately Rally has already a mechanism for creating benchmark environment,
that is used to create load. Unfortunately it's atomic operation:
(create environment, make load, delete environment).
This should be split to 3 separated steps.


Possible solution
-----------------

* Add new CLI operations to work with benchmark environment:
  (show, create, delete, list)

* Allow task to start against benchmark environment (instead of deployment)
back to top