-
Notifications
You must be signed in to change notification settings - Fork 90
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
Add distribution version in workload parameters #752
base: main
Are you sure you want to change the base?
Add distribution version in workload parameters #752
Conversation
a201912
to
0cc6946
Compare
@bowenlan-amzn Can you rebase the latest main changes onto this branch? This should address the ARM build |
Enhance workload configuration by automatically adding the cluster distribution version to workload parameters if not explicitly provided. This ensures that the distribution version is always available for workload json. Signed-off-by: bowenlan-amzn <[email protected]>
0cc6946
to
d5f3a2a
Compare
@@ -115,3 +115,5 @@ recipes/ccr/ccr-target-hosts.json | |||
|
|||
# Tracker tracks | |||
tracks/ |
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.
Nit: "Tracks" can be removed, and a comment can be added for the Visual Studio suffix like with the other entries.
workload_params = self.cfg.opts("workload", "params", mandatory=False) | ||
if "distribution_version" not in workload_params: # if not provided by user, we add the one we just got | ||
workload_params["distribution_version"] = distribution_version | ||
self.cfg.add(config.Scope.applicationOverride, "workload", "params", workload_params) |
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.
Please add tests for this feature, perhaps a couple of unit tests. Thanks.
Description
Enhance workload configuration by automatically adding the cluster distribution version to workload parameters if not explicitly provided. This ensures that the distribution version is always available for workload json.
Apart from adding it, I have to exclude it from the check, some history from here
elastic/rally#478
Issues Resolved
opensearch-project/opensearch-benchmark-workloads#574
Testing
[Describe how this change was tested]
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.