Skip to content

Improve performance monitoring #1190

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

Merged
merged 3 commits into from
Sep 9, 2023
Merged
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
17 changes: 11 additions & 6 deletions .evergreen/.evg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ functions:
params:
script: |
${PREPARE_SHELL}
REQUIRE_API_VERSION=${REQUIRE_API_VERSION} LOAD_BALANCER=${LOAD_BALANCER} MONGODB_VERSION=${VERSION} TOPOLOGY=${TOPOLOGY} AUTH=${AUTH} SSL=${SSL} STORAGE_ENGINE=${STORAGE_ENGINE} ORCHESTRATION_FILE=${ORCHESTRATION_FILE} sh ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
REQUIRE_API_VERSION=${REQUIRE_API_VERSION} LOAD_BALANCER=${LOAD_BALANCER} MONGODB_VERSION=${VERSION} TOPOLOGY=${TOPOLOGY} AUTH=${AUTH} SSL=${SSL} STORAGE_ENGINE=${STORAGE_ENGINE} ORCHESTRATION_FILE=${ORCHESTRATION_FILE} SKIP_LEGACY_SHELL=${SKIP_LEGACY_SHELL} sh ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
Copy link
Member Author

@vbabanin vbabanin Sep 6, 2023

Choose a reason for hiding this comment

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

The performance test distro, linux-rhel-9*, is missing a corresponding MongoDB version 5, causing a failure in downloading the legacy shell. To address this, the SKIP_LEGACY_SHELL flag has been added to bootstrap mongo-orchestration function. This prevents the download-mongodb.sh script from prompting to download version 5.0.

List of available versions for the performance test distro

# run-orchestration generates expansion file with the MONGODB_URI for the cluster
- command: expansions.update
params:
Expand Down Expand Up @@ -1491,6 +1491,12 @@ tasks:
tags: ["perf"]
commands:
- func: "bootstrap mongo-orchestration"
vars:
VERSION: "v6.0-perf"
TOPOLOGY: "server"
SSL: "nossl"
AUTH: "noauth"
SKIP_LEGACY_SHELL: "true"
- func: "run perf tests"
- func: "send dashboard data"

Expand Down Expand Up @@ -2052,13 +2058,12 @@ buildvariants:
tasks:
- name: "gssapi-auth-test"

- matrix_name: "perf"
matrix_spec: { auth: "noauth", ssl: "nossl", jdk: "jdk17", version: ["latest"], topology: "standalone", os: "linux" }
batchtime: 1440 # run once a day
display_name: "Perf Tests ${version} "
- name: "perf"
display_name: Performance Tests
tags: ["perf-variant"]
run_on: rhel90-dbx-perf-large
tasks:
- name: "perf"
- name: "perf"

- name: plain-auth-test
display_name: "PLAIN (LDAP) Auth test"
Expand Down