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

Minor typo #621

Merged
merged 3 commits into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This will download Elasticsearch 6.0.0 and run Rally's default track - the `geon
| Total Young Gen GC | | 16.237 | s |
| Total Old Gen GC | | 1.796 | s |
| Index size | | 2.60124 | GB |
| Totally written | | 11.8144 | GB |
| Total written | | 11.8144 | GB |
| Heap used for segments | | 14.7326 | MB |
| Heap used for doc values | | 0.115917 | MB |
| Heap used for terms | | 13.3203 | MB |
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ This will download Elasticsearch 6.5.3 and run Rally's default :doc:`track </glo
| All | Store size | | 3.17241 | GB |
| All | Translog size | | 2.62736 | GB |
| All | Index size | | 5.79977 | GB |
| All | Totally written | | 22.8536 | GB |
| All | Total written | | 22.8536 | GB |
| All | Heap used for segments | | 18.8885 | MB |
| All | Heap used for doc values | | 0.0322647 | MB |
| All | Heap used for terms | | 17.7184 | MB |
Expand Down
2 changes: 1 addition & 1 deletion docs/race.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ When the race has finished, Rally will show a summary on the command line::
| Total Young Gen GC | | 72.078 | s |
| Total Old Gen GC | | 3.426 | s |
| Index size | | 2.26661 | GB |
| Totally written | | 30.083 | GB |
| Total written | | 30.083 | GB |
| Heap used for segments | | 10.7148 | MB |
| Heap used for doc values | | 0.0135536 | MB |
| Heap used for terms | | 9.22965 | MB |
Expand Down
2 changes: 1 addition & 1 deletion docs/summary_report.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Translog size
* **Definition**: The size in bytes of the translog as reported by the indices stats API.
* **Corresponding metrics key**: ``translog_size_in_bytes``

Totally written
Total written
---------------

* **Definition**: number of bytes that have been written to disk during the benchmark. On Linux this metric reports only the bytes that have been written by Elasticsearch, on Mac OS X it reports the number of bytes written by all processes.
Expand Down
2 changes: 1 addition & 1 deletion docs/tournament.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ We can see that the user tag helps us to recognize races. We want to compare the
Total Young Gen GC [s] 39.447 40.456 +1.00900
Total Old Gen GC [s] 7.108 7.703 +0.59500
Index size [GB] 3.25475 3.25098 -0.00377
Totally written [GB] 17.8434 18.3143 +0.47083
Total written [GB] 17.8434 18.3143 +0.47083
Heap used for segments [MB] 21.7504 21.5901 -0.16037
Heap used for doc values [MB] 0.16436 0.13905 -0.02531
Heap used for terms [MB] 20.0293 19.9159 -0.11345
Expand Down
2 changes: 1 addition & 1 deletion docs/track.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ Be aware of the following case where we explicitly define that we want to run on

Rally will *not* run all three tasks in parallel because you specified that you want only two clients in total. Hence, Rally will first run "match-all" and "term" concurrently (with one client each). After they have finished, Rally will run "phrase" with one client. You could also specify more clients than there are tasks but these will then just idle.

You can also specify a number of clients on sub tasks explicitly (by default, one client is assumed per subtask). This allows to define a weight for each client operation. Note that you need to define the number of clients also on the ``parallel`` parent element, otherwise Rally would determine the number of totally needed clients again on its own::
You can also specify a number of clients on sub tasks explicitly (by default, one client is assumed per subtask). This allows to define a weight for each client operation. Note that you need to define the number of clients also on the ``parallel`` parent element, otherwise Rally would determine the number of total needed clients again on its own::

{
"parallel": {
Expand Down
4 changes: 2 additions & 2 deletions esrally/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def report_disk_usage(self, stats):
self.line("Store size", "", stats.store_size, "GB", convert.bytes_to_gb),
self.line("Translog size", "", stats.translog_size, "GB", convert.bytes_to_gb),
self.line("Index size", "", stats.index_size, "GB", convert.bytes_to_gb),
self.line("Totally written", "", stats.bytes_written, "GB", convert.bytes_to_gb)
self.line("Total written", "", stats.bytes_written, "GB", convert.bytes_to_gb)
)

def report_segment_memory(self, stats):
Expand Down Expand Up @@ -902,7 +902,7 @@ def report_disk_usage(self, baseline_stats, contender_stats):
treat_increase_as_improvement=False, formatter=convert.bytes_to_gb),
self.line("Index size", baseline_stats.index_size, contender_stats.index_size, "", "GB",
treat_increase_as_improvement=False, formatter=convert.bytes_to_gb),
self.line("Totally written", baseline_stats.bytes_written, contender_stats.bytes_written, "", "GB",
self.line("Total written", baseline_stats.bytes_written, contender_stats.bytes_written, "", "GB",
treat_increase_as_improvement=False, formatter=convert.bytes_to_gb)
)

Expand Down