Skip to content

Commit 5006fb3

Browse files
committed
Changed occurrences of "Benchmark", which is a historical artifact, to "OSB".
Signed-off-by: Govind Kamat <govkamat@amazon.com>
1 parent 477aad9 commit 5006fb3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+197
-197
lines changed

.fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
cli:
33
server: https://app.fossa.com
44
fetcher: custom
5-
project: Benchmark
5+
project: OSB
66
analyze:
77
modules:
88
- name: .

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ target/
100100
# pyenv
101101
.python-version
102102

103-
# Benchmark specific
103+
# OSB specific
104104
.benchmark_it/
105105
# Virtualenv for development
106106
.venv*/

benchmark

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set -u
2424
# fail on pipeline errors, e.g. when grepping
2525
set -o pipefail
2626

27-
# We assume here that this script will stay in the Benchmark git root directory (it does not make sense in any other place anyway)
27+
# We assume here that this script will stay in the OSB git root directory (it does not make sense in any other place anyway)
2828

2929
SOURCE="${BASH_SOURCE[0]}"
3030
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
@@ -40,7 +40,7 @@ cd "${BENCHMARK_SRC_HOME}" >/dev/null 2>&1
4040

4141
# set variables that are needed for run.sh
4242
__BENCHMARK_INTERNAL_BINARY_NAME="osbenchmark"
43-
__BENCHMARK_INTERNAL_HUMAN_NAME="Benchmark"
43+
__BENCHMARK_INTERNAL_HUMAN_NAME="OpenSearch Benchmark"
4444

4545
source run.sh
4646

benchmarkd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set -u
2424
# fail on pipeline errors, e.g. when grepping
2525
set -o pipefail
2626

27-
# We assume here that this script will stay in the Benchmark git root directory (it does not make sense in any other place anyway)
27+
# We assume here that this script will stay in the OSB git root directory (it does not make sense in any other place anyway)
2828

2929
SOURCE="${BASH_SOURCE[0]}"
3030
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
@@ -37,11 +37,11 @@ BENCHMARK_SRC_HOME="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
3737
pushd . >/dev/null 2>&1
3838
cd "${BENCHMARK_SRC_HOME}" >/dev/null 2>&1
3939

40-
# ensure the Actor system can find Benchmark sources (it is ok if PYTHONPATH is undefined yet. Hence we define an empty default).
40+
# ensure the Actor system can find OSB sources (it is ok if PYTHONPATH is undefined yet. Hence we define an empty default).
4141
export PYTHONPATH="${BENCHMARK_SRC_HOME}:${PYTHONPATH:-}"
4242

4343
# set variables that are needed for run.sh
4444
__BENCHMARK_INTERNAL_BINARY_NAME="osbenchmarkd"
45-
__BENCHMARK_INTERNAL_HUMAN_NAME="Benchmark daemon"
45+
__BENCHMARK_INTERNAL_HUMAN_NAME="OpenSearch Benchmark Daemon"
4646

4747
source run.sh

docs/api/client-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
33
title: Client Options
4-
parent: Benchmark API
4+
parent: OSB API
55
nav_order: 12
66
---

docs/api/execute-test.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: Execute Test
4-
parent: Benchmark API
4+
parent: OSB API
55
nav_order: 10
66
---
77

@@ -23,10 +23,10 @@ Argument | Description | Required
2323
:--- | :--- |:---
2424
`workload` | The dataset and operations that execute during a test. See [OpenSearch Benchmark Workloads repository](https://github.com/opensearch-project/opensearch-benchmark-workloads) for more details on workloads. | Yes
2525
`workload-params` | Parameters defined within each workload that can be overwritten. These parameters are outlined in the README of each workload. You can find an example of the parameters for the eventdata workload [here](https://github.com/opensearch-project/opensearch-benchmark-workloads/tree/main/eventdata#parameters). | No
26-
`test_procedure` | Test Procedures define the sequence of operations and parameters for a specific workload. When no `test_procedure` is specified, Benchmark selects the default for the workload. You can find an example test procedure [here](https://github.com/opensearch-project/opensearch-benchmark-workloads/blob/main/eventdata/test_procedures/default.json). | No
26+
`test_procedure` | Test Procedures define the sequence of operations and parameters for a specific workload. When no `test_procedure` is specified, OSB selects the default for the workload. You can find an example test procedure [here](https://github.com/opensearch-project/opensearch-benchmark-workloads/blob/main/eventdata/test_procedures/default.json). | No
2727
`client-options` | Options for the [OpenSearch Python client](https://opensearch.org/docs/latest/clients/python/). Required if testing against a cluster with security enabled. | No
2828
`pipeline` | Steps required to execute a test, including provisioning an OpenSearch from source code or a specified distribution. Defaults to `from-sources` which provisions an OpenSearch cluster from source code. | No
29-
`distribution-version` | The OpenSearch version to use for a given test. Defining a version can be useful when using a `pipeline` that includes provisioning. When using a `pipeline` without provisioning, Benchmark will automatically determine the version | No
29+
`distribution-version` | The OpenSearch version to use for a given test. Defining a version can be useful when using a `pipeline` that includes provisioning. When using a `pipeline` without provisioning, OSB will automatically determine the version | No
3030
`target-hosts` | The OpenSearch endpoint(s) to execute a test against. This should only be specified with `--pipeline=benchmark-only` | No
3131
`test-mode` | Run a single iteration of each operation in the test procedure. The test provides a quick way for sanity checking a testing configuration. Therefore, do not use `test-mode` for actual benchmarking. | No
3232
`kill-running-processes` | Kill any running OpenSearch Benchmark processes on the local machine before the test executes. | No
@@ -62,14 +62,14 @@ Argument | Description | Required
6262
:--- | :--- |:---
6363
`distribution-version` | Define the version of the OpenSearch distribution to download. Check https://opensearch.org/docs/version-history/ for released versions. | No
6464
`provision-config-path` | Define the path to the provision_config_instance and plugin configurations to use. | No
65-
`provision-config-repository` | Define repository from where Benchmark will load provision_configs and provision_config_instances (default: `default`). | No
66-
`provision-config-revision` | Define a specific revision in the provision_config repository that Benchmark should use. | No
65+
`provision-config-repository` | Define repository from where OSB will load provision_configs and provision_config_instances (default: `default`). | No
66+
`provision-config-revision` | Define a specific revision in the provision_config repository that OSB should use. | No
6767
`test-execution-id` | Define a unique id for this test_execution. | No
6868
`pipeline` | Select the pipeline to run. | No
6969
`revision` | Define the source code revision for building the benchmark candidate. 'current' uses the source tree as is, 'latest' fetches the latest version on main. It is also possible to specify a commit id or an ISO timestamp. The timestamp must be specified as: "@ts" where "ts" must be a valid ISO 8601 timestamp, e.g. "@2013-07-27T10:37:00Z" (default: `current`). | No
70-
`workload-repository` | Define the repository from where Benchmark will load workloads (default: `default`). | No
70+
`workload-repository` | Define the repository from where OSB will load workloads (default: `default`). | No
7171
`workload-path` | Define the path to a workload. | No
72-
`workload-revision` | Define a specific revision in the workload repository that Benchmark should use. | No
72+
`workload-revision` | Define a specific revision in the workload repository that OSB should use. | No
7373
`workload` | Define the workload to use. List possible workloads with `opensearch-benchmark list workloads`. | No
7474
`workload-params` | Define a comma-separated list of key:value pairs that are injected verbatim to the workload as variables. | No
7575
`test-procedure` | Define the test_procedure to use. List possible test_procedures for workloads with `opensearch-benchmark list workloads`. | No
@@ -81,7 +81,7 @@ Argument | Description | Required
8181
`target-hosts` | Define a comma-separated list of host:port pairs which should be targeted if using the pipeline 'benchmark-only' (default: `localhost:9200`). | No
8282
`load-worker-coordinator-hosts` | Define a comma-separated list of hosts which should generate load (default: `localhost`). | No
8383
`client-options` | Define a comma-separated list of client options to use. The options will be passed to the OpenSearch Python client (default: `timeout:60`). | No
84-
`on-error` | Controls how Benchmark behaves on response errors. Options are `continue` and `abort` (default: `continue`). | No
84+
`on-error` | Controls how OSB behaves on response errors. Options are `continue` and `abort` (default: `continue`). | No
8585
`telemetry` | Enable the provided telemetry devices, provided as a comma-separated list. List possible telemetry devices with `opensearch-benchmark list telemetry`. | No
8686
`telemetry-params` | Define a comma-separated list of key:value pairs that are injected verbatim to the telemetry devices as parameters. | No
8787
`distribution-repository` | Define the repository from where the OpenSearch distribution should be downloaded (default: `release`). | No
@@ -94,9 +94,9 @@ Argument | Description | Required
9494
`results-file` | Write the command line results also to the provided file. | No
9595
`preserve-install` | Keep the benchmark candidate and its index. (default: false). | No
9696
`test-mode` | Runs the given workload in 'test mode'. Meant to check a workload for errors but not for real benchmarks (default: false). | No
97-
`enable-worker-coordinator-profiling` | Enables a profiler for analyzing the performance of calls in Benchmark's worker coordinator (default: false). | No
97+
`enable-worker-coordinator-profiling` | Enables a profiler for analyzing the performance of calls in OSB's worker coordinator (default: false). | No
9898
`enable-assertions` | Enables assertion checks for tasks (default: false). | No
99-
`kill-running-processes` | If any processes is running, it is going to kill them and allow Benchmark to continue to run. | No
99+
`kill-running-processes` | If any processes is running, it is going to kill them and allow OSB to continue to run. | No
100100
`quiet` | Suppress as much as output as possible (default: false). | No
101-
`offline` | Assume that Benchmark has no connection to the Internet (default: false). | No
101+
`offline` | Assume that OSB has no connection to the Internet (default: false). | No
102102

docs/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
3-
title: Benchmark API
3+
title: OSB API
44
nav_order: 2
55
has_children: true
66
---

docs/api/kill-running-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
33
title: Kill Running Process
4-
parent: Benchmark API
4+
parent: OSB API
55
nav_order: 14
66
---

docs/api/pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
33
title: Pipeline
4-
parent: Benchmark API
4+
parent: OSB API
55
nav_order: 11
66
---

docs/api/target-hosts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
33
title: Target Hosts
4-
parent: Benchmark API
4+
parent: OSB API
55
nav_order: 15
66
---

0 commit comments

Comments
 (0)