Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove lap feature and all references. #739

Merged
merged 11 commits into from
Aug 14, 2019
17 changes: 7 additions & 10 deletions docs/migrate.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ This means that on disk, a given race will be found at ``benchmarks/races/62d1e9

Laps feature removed
^^^^^^^^^^^^^^^^^^^^
The --laps parameter and corresponding multi-run trial functionality has been removed from execution and reporting.
If you need lap functionality, the following shell script can be used instead:
The ```--laps``` parameter and corresponding multi-run trial functionality has been removed from execution and reporting.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be enclosed in double-backticks, not triple-backticks.

If you need lap functionality, the following shell script can be used instead::

```bash
RALLY_LAPS=3
RALLY_LAPS=3

for lap in $(seq 1 ${RALLY_LAPS})
do
esrally --pipeline=benchmark-only --user-tag lap:$lap
done

```
for lap in $(seq 1 ${RALLY_LAPS})
do
esrally --pipeline=benchmark-only --user-tag lap:$lap
done


Migrating to Rally 1.2.1
Expand Down