Jump to: navigation, search

Difference between revisions of "Rally"

(Weekly update)
(Replaced content with " The page has been moved to https://rally.readthedocs.io")
 
(60 intermediate revisions by 9 users not shown)
Line 1: Line 1:
  
 
+
The page has been moved to https://rally.readthedocs.io
== What is Rally? ==
 
 
 
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.
 
 
 
<center>[[File:Rally-Actions.png|850px]]</center>
 
 
 
* '''''Deploy engine''''' is not ''yet another deployer of OpenStack'', but just a pluggable mechanism that allows to unify & simplify work with different deployers like: DevStack, Fuel, Anvil on hardware/VMs that you have.
 
* '''''Verification''''' - ''(work in progress)'' uses tempest to verify the functionality of a deployed OpenStack cloud. In future Rally will support other OS verifiers.
 
* '''''Benchmark engine''''' - allows to create parameterized load on the cloud based on a big repository of benchmarks.
 
 
 
For more information about how it works take a look at [[Rally#Architecture|Rally Architecture]]
 
 
 
 
 
== Use Cases ==
 
 
Before diving deep in Rally architecture let's take a look at 3 major high level Rally Use Cases:
 
 
 
<center>[[File:Rally-UseCases.png|850px]] </center>
 
 
 
 
 
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.
 
 
 
 
 
== Architecture ==
 
 
 
Usually OpenStack projects are as-a-Service, so Rally provides this approach and a CLI driven approach that does not require a daemon:
 
# Rally as-a-Service: Run rally as a set of daemons that present Web UI ''(work in progress)'' so 1 RaaS could be used by whole team.
 
# Rally as-an-App: Rally as a just lightweight CLI app (without any daemons), that makes it simple to develop & much more portable.
 
 
 
 
 
How is this possible? Take a look at diagram below:
 
<center>
 
[[File:Rally_Architecture.png|750px]]
 
</center>
 
 
 
So what is behind Rally?
 
 
 
 
 
=== Rally Components ===
 
 
 
Rally consists of 4 main components:
 
 
 
# '''''Server Providers''''' - provide servers (virtual servers), with ssh access, in one L3 network.
 
# '''''Deploy Engines''''' - deploy OpenStack cloud on servers that are presented by '''''Server Providers'''''
 
# '''''Verification''''' - component that runs tempest (or another pecific set of tests) against a deployed cloud, collects results & presents them in human readable form.
 
# '''''Benchmark engine''''' - allows to write parameterized benchmark scenarios & run them against the cloud.
 
 
 
 
 
But '''why''' does Rally need these components?<br />
 
It becomes really clear if we try to imagine: ''how I will benchmark cloud at Scale, if ...''<br />
 
<center>
 
[[File:Rally QA.png|750px|center]]
 
</center>
 
 
 
 
 
TO BE CONTINUED
 
 
 
== Rally in action ==
 
 
 
=== How amqp_rpc_single_reply_queue affects performance ===
 
 
 
To show Rally's capabilities and potential we used ''NovaServers.boot_and_destroy'' scenario to see how ''amqp_rpc_single_reply_queue'' option affects VM bootup time. Some time ago it was [https://docs.google.com/file/d/0B-droFdkDaVhVzhsN3RKRlFLODQ/edit?pli=1 shown] that cloud performance can be boosted by setting it on so naturally we decided to check this result. To make this test we issued requests for booting up and deleting VMs for different number of concurrent users ranging from one to 30 with and without this option set. For each group of users a total number of 200 requests was issued. Averaged time per request is shown below:
 
 
 
<center>[[File:Amqp rpc single reply queue.png| amqp_rpc_single_replya_queue]]</center>
 
 
 
So apparently this option affects cloud performance, but not in the way it was thought before.
 
 
 
 
 
=== Performance of Nova instance list command ===
 
 
 
'''Context:'''
 
1 OpenStack user
 
 
 
'''Scenario:'''
 
1) boot VM from this user
 
2) list VM
 
 
 
'''Runner:'''
 
Repeat 200 times.
 
 
 
As a result, on every next iteration user has more and more VMs and performance of VM list is degrading quite fast:
 
<center> [[File:Rally_VM_list.png| nova vm list performance|800px|center]]</center>
 
 
 
=== Complex scenarios & detailed information ===
 
 
 
For example NovaServers.snapshot contains a lot of "atomic" actions:
 
# boot VM
 
# snapshot VM
 
# delete VM
 
# boot VM from snapshot
 
# delete VM
 
# delete snapshot
 
 
 
Fortunately Rally collects information about duration of all these operation for every iteration.
 
 
 
As a result we are generating beautiful graphs:
 
 
 
<center> [[File:Rally_snapshot_vm.png| snapshot detailed performance|800px|center]]</center>
 
 
 
== How To ==
 
 
 
Actually there are only 3 steps that should be interesting for you:
 
 
 
<big>
 
# [[Rally/installation|Install Rally]]
 
# [[Rally/HowTo|Use Rally]]
 
# [[Rally/Develop|Improve Rally]]
 
</big>
 
 
 
 
 
== Weekly updates ==
 
 
 
'''Each week we write up on a special [[Rally/Updates|weekly updates page]] what sort of things have been accomplished in Rally during the past week and what are our plans for the next one. Below you can find the most recent report.'''
 
 
 
With great pleasure we've been observing the high rate at which the number of patches pending for review grew over the past week in Rally. Indeed, our community constantly becomes larger and larger (including one new core developer this week), and much more active as well. The highlights of our recent efforts are as follows:
 
* '''''New benchmark scenarios''''', including those for testing the [https://review.openstack.org/#/c/81718/| tenant creation performance in keystone] and also for [https://review.openstack.org/#/c/82428/| booting a server and then issuing the "servers list" command];
 
* Introduction of the [https://review.openstack.org/#/c/66788/| Rally REST API basics] which ultimately will make it possible to use '''''Rally as a Service''''';
 
* A wide range of nice '''''local code improvements''''' that bring more consistency and simplicity to it: among others, let's mention:
 
:* a patch that [https://review.openstack.org/#/c/81514/| removed quite a lot of unused code in server providers];
 
:* [https://review.openstack.org/#/c/81731/| reducing code duplicate in logging wrappers] via their unification
 
:* [https://review.openstack.org/#/c/81970/| standartizing the scenario runner output] by switching from the simple dictionaries usage to a bit more involved ''ScenarioRunnerResult'' class which atomatically performs the ''format correctness'' tests, thus making the code much more reliable.
 
 
 
 
 
This week, we are going to invest a lot of time in further code refactoring (in a range of areas), as well as in implementing new benchmark scnearios to make Rally applicable for more and more testing use cases.
 
 
 
 
 
We encourage you to take a look at new patches in Rally pending for review and to help us making Rally better.
 
 
 
Source code for Rally is hosted at GitHub: https://github.com/stackforge/rally<br />
 
You can track the overall progress in Rally via Stackalytics: http://stackalytics.com/?release=icehouse&metric=commits&project_type=all&module=rally <br/>
 
Open reviews for Rally: https://review.openstack.org/#/q/status:open+rally,n,z
 
 
 
 
 
Stay tuned.
 
 
 
 
 
Regards,<br />
 
The Rally team
 
 
 
 
 
'''[[Rally/Updates|Weekly Updates Archives]] '''
 
 
 
== Rally in the World ==
 
 
 
{| class="wikitable sortable"
 
|-
 
! Date !! Authors !! Title !! Location
 
|-
 
| 01/Mar/2014 ||  <ol><li> Bangalore C.B. Ananth (cbpadman at cisco.com)</li><li> Rahul Upadhyaya (rahuupad at cisco.com)</li></ol> ||  [http://www.slideshare.net/sliderakrup/rally-baa-s-os-meetup-31864829 Benchmark as a Service OpenStack-Rally] || OpenStack Meetup Bangalore
 
|-
 
| 28/Feb/2014 || <ol><li> Peeyush Gupta </li></ol> || [http://www.thegeekyway.com/benchmarking-openstack-rally/ Benchmarking OpenStack With Rally] || http://www.thegeekyway.com/
 
|-
 
| 26/Feb/2014 || <ol><li> Oleg Gelbukh </li></ol> || [http://www.mirantis.com/blog/benchmarking-openstack-megascale-tested-mirantis-openstack-softlayer/ Benchmarking OpenStack at megascale: How we tested Mirantis OpenStack at SoftLayer] || http://www.mirantis.com/blog/
 
|-
 
| 07/Nov/2013 || <ol><li> Boris Pavlovic </li></ol> ||  [http://www.slideshare.net/mirantis/rally-benchmarkingatscale Benchmark OpenStack at Scale] || Openstack summit Hong Kong
 
|}
 
 
 
 
 
== Project Info ==
 
 
 
=== Useful links ===
 
* [https://github.com/stackforge/rally Source code]
 
* [https://trello.com/b/DoD8aeZy/rally Rally trello board]
 
* [http://launchpad.net/rally Project space]
 
* [http://blueprints.launchpad.net/rally Blueprints]
 
* [https://bugs.launchpad.net/rally Bugs]
 
* [https://review.openstack.org/#/q/status:open+rally,n,z Patches on review ]
 
* [http://eavesdrop.openstack.org/meetings/rally/2014/ Meeting logs]
 
* IRC server:  '''irc.freenode.net''' channel:  '''#openstack-rally'''
 
 
 
'''NOTE:''' To be a member of trello board please write email to (boris at pavlovic.me) or ping in IRC boris-42
 
 
 
=== How to track project status? ===
 
 
 
TO BE DONE
 
 
 
=== Where can I discuss & propose changes? ===
 
 
 
TO BE DONE
 
 
 
=== Weekly meetings ===
 
The Rally project team holds weekly meetings on Tuesdays at [http://www.timeanddate.com/worldclock/fixedtime.html?msg=OpenStack+Rally+meeting&iso=20131029T21&p1=166&am=30 1700 UTC] in IRC, at the <code><nowiki>#openstack-meeting</nowiki></code> channel.
 

Latest revision as of 12:59, 30 October 2017

The page has been moved to https://rally.readthedocs.io