-
Notifications
You must be signed in to change notification settings - Fork 2
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
Define fingerprint to distinguish runs #27
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,11 @@ agent_java_args: "{{ undef() }}" | |
# a known_hosts entry for each agent | ||
ssh_key: "benchmark" | ||
|
||
# Defines the description of the run on the JSON output. | ||
# We utilize this value to distinguish between server version and cache configuration on Horreum. | ||
# By default, it can be null. If running the complete test suite, it is automatically filled. | ||
hyperfoil_run_description: '' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the past I have had to put "{{ undef() }}" does it work with empty string? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was working, but I'll update it to "{{ undef() }}" for consistency. But I see this weird thing when running the |
||
|
||
# The rest are all described at https://github.com/Hyperfoil/hyperfoil_test | ||
|
||
hyperfoil_controller_group: hyperfoil_controller | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
cache_name: benchmark | ||
# Location of the cache configuration to use for the named cache | ||
cache_file: files/cache.xml | ||
# Optional way to override the server image used by the benchmar | ||
server_image: quay.io/infinispan/server | ||
# Optional way to override the server image used by the benchmark | ||
server_image: "quay.io/infinispan/server:15.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know if we want to change this default or not... User should probably override instead if they want a specific version. |
||
# Java VM arguments passed to the server image when running | ||
server_java_args: "{{ undef() }}" | ||
# Allows for automatic generation of Java Flight Recorder and download | ||
|
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.
This isn't descriptive enough, but I guess it is probably fine as a default value designed to be overridden by the user.
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.
Do we include something more here? I intended to leave this "as is" when running in the GH actions.