Skip to content

Commit

Permalink
Update h5py in dockerfile: Prevents bottleneck at build release. Also…
Browse files Browse the repository at this point in the history
… added some misc. doc edits

Signed-off-by: Ian Hoang <hoangia@amazon.com>
  • Loading branch information
Ian Hoang committed Apr 25, 2024
1 parent f0e522d commit 2dbd89e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Add backport labels to PRs and commits so that changes can be added to `main` b
```
OpenSearch Benchmark release is scheduled for 1/25 and a code freeze will be put in place starting on 1/23.
```
* Maintainers should create a release issue before each release. These issues should contain important dates related to announcement for code freeze and release dates on the public slack channel, freeze date, and release date. It should also include a list of features issues and bug issues that are labeled with the same release version.
* Ensure that version.txt matches the new release version before proceeding. If not, open a PR that updates the version in version.txt and merge it in before proceeding with the following steps. For example, if OSB is currently at version `0.3.0` and we want to release the next version as `0.4.0`, update `version.txt` from `0.3.0` to `0.4.0`.
* Ensure you have cloned the official OpenSearch Benchmark git repository with the ssh address.
* Ensure that all new committed changes in OSB that are visible by users are added to the documentation
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ RUN apt-get -y update && \
RUN groupadd --gid 1000 opensearch-benchmark && \
useradd -d /opensearch-benchmark -m -k /dev/null -g 1000 -N -u 1000 -l -s /bin/bash benchmark

RUN python3 -m pip install h5py==3.10.0

RUN if [ -z "$VERSION" ] ; then python3 -m pip install opensearch-benchmark ; else python3 -m pip install opensearch-benchmark==$VERSION ; fi

WORKDIR /opensearch-benchmark
Expand Down
2 changes: 1 addition & 1 deletion osbenchmark/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def add_workload_source(subparser):
default="right")
test_execution_parser.add_argument(
"--show-in-results",
help="Define which values are shown in the summary publish (default: available).",
help="Define which values are shown in the summary results published (default: available).",
choices=["available", "all-percentiles", "all"],
default="available")
test_execution_parser.add_argument(
Expand Down

0 comments on commit 2dbd89e

Please sign in to comment.