Rally provides a framework for performance analysis and benchmarking of individual OpenStack components as well as full production OpenStack cloud deployments
Go to file
Jean-Philippe Braun 3b82dceaa8 Fix lbaas resources cleanup
Even if the extension is not available rally tries to list lbaas resources
to delete them. This results in a 404 exception.

This commit introduces NeutronLbaasV1Mixin that checks first if the
extension is available. If it's not it returns an empty list of
resources to delete.

All lbaas resources (only pools currently) must inherit from this mixin.

Change-Id: I94a8457c3026c1859413c867369cae49889f29e1
Closes-Bug: #1470330
2015-08-31 17:31:20 +02:00
contrib/devstack Update stackforge to openstack 2015-04-20 14:02:43 +05:30
doc Set samples default flavor to m1.tiny 2015-08-24 23:11:46 -05:00
etc Expose config for timeout of resource deletion 2015-08-20 22:17:35 +08:00
rally Fix lbaas resources cleanup 2015-08-31 17:31:20 +02:00
rally-jobs Add Cinder create_and_update_volume scenario 2015-08-24 07:43:34 +00:00
samples Merge "Add Cinder create_and_update_volume scenario" 2015-08-26 01:27:46 +00:00
tests Fix lbaas resources cleanup 2015-08-31 17:31:20 +02:00
.coveragerc Make coverage job voting 2015-04-17 18:18:21 +03:00
.dockerignore Update Dockerfile to use new install_rally.sh 2015-08-07 16:25:54 -05:00
.gitignore add .eggs to git ignore file 2015-08-19 12:28:12 +03:00
.gitreview Update git review + hosting/mirroring links 2015-04-17 17:39:14 -07:00
.testr.conf Reorganize test module structure 2014-10-07 13:50:40 +00:00
Dockerfile Update Dockerfile to use new install_rally.sh 2015-08-07 16:25:54 -05:00
LICENSE Initial commit 2013-08-03 09:17:25 -07:00
README.rst Update git review + hosting/mirroring links 2015-04-17 17:39:14 -07:00
babel.cfg Add rally.sample.conf to project 2013-08-14 14:08:09 +04:00
install_rally.sh Don't overwrite existhing venv dir when using --yes 2015-08-20 14:39:36 +08:00
openstack-common.conf Remove all non-incubated oslo code 2015-02-23 14:31:36 +00:00
optional-requirements.txt Fix mistral client requirement 2015-06-26 08:31:27 -07:00
requirements.txt Updated from global requirements 2015-08-22 18:21:44 +00:00
setup.cfg Install data files in proper path 2015-06-10 18:46:43 +03:00
setup.py Updated from global requirements 2015-07-15 20:46:17 +00:00
test-requirements.txt Updated from global requirements 2015-08-04 18:19:11 +00:00
tox.ini Use config file for genconfig and update sample config 2015-08-07 14:08:43 +02:00

README.rst

Rally

What is Rally

Rally is a Benchmark-as-a-Service project for OpenStack.

Rally is intended to provide the community with a benchmarking tool that is capable of performing specific, complicated and reproducible test cases on real deployment scenarios.

If you are here, you are probably familiar with OpenStack and you also know that it's a really huge ecosystem of cooperative services. When something fails, performs slowly or doesn't scale, it's really hard to answer different questions on "what", "why" and "where" has happened. Another reason why you could be here is that you would like to build an OpenStack CI/CD system that will allow you to improve SLA, performance and stability of OpenStack continuously.

The OpenStack QA team mostly works on CI/CD that ensures that new patches don't break some specific single node installation of OpenStack. On the other hand it's clear that such CI/CD is only an indication and does not cover all cases (e.g. if a cloud works well on a single node installation it doesn't mean that it will continue to do so on a 1k servers installation under high load as well). Rally aims to fix this and help us to answer the question "How does OpenStack work at scale?". To make it possible, we are going to automate and unify all steps that are required for benchmarking OpenStack at scale: multi-node OS deployment, verification, benchmarking & profiling.

Rally workflow can be visualized by the following diagram:

Rally Architecture

Documentation

Rally documentation on ReadTheDocs is a perfect place to start learning about Rally. It provides you with an easy and illustrative guidance through this benchmarking tool. For example, check out the Rally step-by-step tutorial that explains, in a series of lessons, how to explore the power of Rally in benchmarking your OpenStack clouds.

Architecture

In terms of software architecture, Rally is built of 4 main components:

  1. Server Providers - provide servers (virtual servers), with ssh access, in one L3 network.
  2. Deploy Engines - deploy OpenStack cloud on servers that are presented by Server Providers
  3. Verification - component that runs tempest (or another specific set of tests) against a deployed cloud, collects results & presents them in human readable form.
  4. Benchmark engine - allows to write parameterized benchmark scenarios & run them against the cloud.

Use Cases

There are 3 major high level Rally Use Cases:

Rally Use Cases

Typical cases where Rally aims to help are:

  • Automate measuring & profiling focused on how new code changes affect the OS performance;
  • Using Rally profiler to detect scaling & performance issues;
  • Investigate how different deployments affect the OS performance:
    • Find the set of suitable OpenStack deployment architectures;
    • Create deployment specifications for different loads (amount of controllers, swift nodes, etc.);
  • Automate the search for hardware best suited for particular OpenStack cloud;
  • Automate the production cloud specification generation:
    • Determine terminal loads for basic cloud operations: VM start & stop, Block Device create/destroy & various OpenStack API methods;
    • Check performance of basic cloud operations in case of different loads.

Rally documentation:

http://rally.readthedocs.org/en/latest/

Rally step-by-step tutorial:

http://rally.readthedocs.org/en/latest/tutorial.html

RoadMap:

https://docs.google.com/a/mirantis.com/spreadsheets/d/16DXpfbqvlzMFaqaXAcJsBzzpowb_XpymaK2aFY2gA2g

Launchpad page:

https://launchpad.net/rally

Code is hosted on git.openstack.org:

http://git.openstack.org/cgit/openstack/rally

Code is mirrored on github:

https://github.com/openstack/rally