Skip to content
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

Expose P99 latency and support customizable IO testing with selective IO types and metrics #9

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions deploy/fio-cmp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ spec:
value: "30G" # must be smaller or match the PVC size
- name: CPU_IDLE_PROF
value: "disabled" # must be "enabled" or "disabled"
- name: IO_TYPES
value: "seqread,seqwrite,randread,randwrite"
- name: METRICS
value: "bandwidth,iops,latency"
volumeMounts:
- name: vol1
mountPath: /volume1/
Expand Down
4 changes: 4 additions & 0 deletions deploy/fio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ spec:
value: "30G" # must be 10% smaller than the PVC size due to filesystem also took space
- name: CPU_IDLE_PROF
value: "disabled" # must be "enabled" or "disabled"
- name: IO_TYPES
value: "seqread,seqwrite,randread,randwrite"
- name: METRICS
value: "bandwidth,iops,latency"
volumeMounts:
- name: vol
mountPath: /volume/
Expand Down
19 changes: 0 additions & 19 deletions fio/bandwidth-quick.fio

This file was deleted.

19 changes: 0 additions & 19 deletions fio/bandwidth.fio

This file was deleted.

Loading