-
Notifications
You must be signed in to change notification settings - Fork 4
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 "vmbench" program #248
base: master
Are you sure you want to change the base?
Conversation
vmbench.py
Outdated
|
||
def start_cratedb(self): | ||
# TODO: Make version and heap size configurable. | ||
run_crate(version="4.7", env=["CRATE_HEAP_SIZE=14G"], keep_data=True) |
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.
@WalBeh told me that assigning 14G of heap space would be too much. While they used to assign 50% of system memory to CrateDB's heap, they are only assigning 20% these days. That would be 3.2G for a machine with 16G of system memory, so assigning CRATE_HEAP_SIZE=4G
might be just right?
What would be your advice here, @mfussenegger?
Also output the daytime the program was started. Example: # variability,runtime,daytime 0.0195,00:00:04,12:42:11
vmbench
is a program for conducting benchmarks on virtual machines by recording results from runs under different Linux kernel parameters usingcr8
'srun_crate
andrun_spec
. Feedback on adjustments of parameters, results formatting and aggregations on report outcomes is very welcome.