-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Improve performance monitoring #1190
Conversation
… distro and using patched pinned v6.0.6 server version. JAVA-5065
JAVA-5065
@@ -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 |
There was a problem hiding this comment.
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.
.evergreen/.evg.yml
Outdated
- name: "perf" | ||
- name: "perf" | ||
vars: | ||
VERSION: "v6.0-perf" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Driver evergreen tools exposes the patch pinned v6 server version 6.0.6 that can be referenced via the v6.0-perf
version alias (the analogous perf-stable v7 version will be added later)
Performance trend charts can be found here: link |
JAVA-4347
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Allows viewing performance results in Trend Charts Tab
Is running on rhel90-dbx-perf-large
what enables this? Or something else?
Actually, it is neither. It is the I have removed it from the PR description:
|
This PR introduces enhancements to performance monitoring:
JAVA-5065