933af3fdac
Quoting the quota devref: """ For a reservation to be successful, the total amount of resources requested, plus the total amount of resources reserved, plus the total amount of resources already stored in the database should not exceed the project's quota limit. """ This means that in the absolute worst case scenario with 20 concurrent workers, 19 could have made reservations, committed resources, but not yet cleared their reservation. Because of the outstanding reservation and the resources created by the 19 workers, they will all be double-counted until their reservation is cleared (or it expires). This adjusts the rally scenarios to handle the double-count for concurrency. Related-Bug: #1623390 Change-Id: I4808a92e7e6067aeeb62fc3b3d7f7ac71b179c44 |
||
---|---|---|
.. | ||
extra | ||
plugins | ||
neutron-neutron.yaml | ||
README.rst |
Rally job related files
This directory contains rally tasks and plugins that are run by OpenStack CI.
Structure
- plugins - directory where you can add rally plugins. Almost everything in Rally is a plugin. Benchmark context, Benchmark scenario, SLA checks, Generic cleanup resources, ....
- extra - all files from this directory will be copy pasted to gates, so you are able to use absolute paths in rally tasks. Files will be located in ~/.rally/extra/*
- neutron-neutron.yaml is a task that is run in gates against OpenStack with Neutron Service deployed by DevStack
Useful links
- More about Rally: https://rally.readthedocs.org/en/latest/
- Rally release notes: https://rally.readthedocs.org/en/latest/release_notes.html
- How to add rally-gates: https://rally.readthedocs.org/en/latest/gates.html
- About plugins: https://rally.readthedocs.org/en/latest/plugins.html
- Plugin samples: https://github.com/openstack/rally/tree/master/samples/plugins