|
| 1 | +menu "Configure SSD steady state workflow" |
| 2 | + |
| 3 | +config SSD_STEADY_STATE_DEVICE |
| 4 | + string "Device to pre-condition" |
| 5 | + output yaml |
| 6 | + default "/dev/disk/by-id/nvme-QEMU_NVMe_Ctrl_kdevops1" if LIBVIRT && LIBVIRT_EXTRA_STORAGE_DRIVE_NVME |
| 7 | + default "/dev/disk/by-id/virtio-kdevops1" if LIBVIRT && LIBVIRT_EXTRA_STORAGE_DRIVE_VIRTIO |
| 8 | + default "/dev/disk/by-id/ata-QEMU_HARDDISK_kdevops1" if LIBVIRT && LIBVIRT_EXTRA_STORAGE_DRIVE_IDE |
| 9 | + default "/dev/nvme2n1" if TERRAFORM_AWS_INSTANCE_M5AD_4XLARGE |
| 10 | + default "/dev/nvme1n1" if TERRAFORM_GCE |
| 11 | + default "/dev/sdd" if TERRAFORM_AZURE |
| 12 | + default TERRAFORM_OCI_SPARSE_VOLUME_DEVICE_FILE_NAME if TERRAFORM_OCI |
| 13 | + help |
| 14 | + Block device to operate on for steady state. |
| 15 | + |
| 16 | +config SSD_STEADY_STATE_PREFILL_BLOCKSIZE |
| 17 | + string "Prefill blocksize" |
| 18 | + output yaml |
| 19 | + default "128k" |
| 20 | + help |
| 21 | + Block size used during the prefill step before steady |
| 22 | + state verification. |
| 23 | + |
| 24 | +config SSD_STEADY_STATE_IODEPTH |
| 25 | + string "Prefill iodepth" |
| 26 | + output yaml |
| 27 | + default "32" |
| 28 | + help |
| 29 | + Queue depth used for the prefill workload. |
| 30 | + |
| 31 | +config SSD_STEADY_STATE_NUMJOBS |
| 32 | + string "Prefill number jobs" |
| 33 | + output yaml |
| 34 | + default "4" |
| 35 | + help |
| 36 | + Number of fio jobs to spawn for the prefill step. |
| 37 | + |
| 38 | +config SSD_STEADY_STATE_PREFILL_LOOP |
| 39 | + int "Prefill loop count" |
| 40 | + output yaml |
| 41 | + default 2 |
| 42 | + help |
| 43 | + How many iterations of the prefill helper to run. |
| 44 | + |
| 45 | +config SSD_STEADY_STATE_RUNTIME |
| 46 | + string "Steady state runtime" |
| 47 | + output yaml |
| 48 | + default "6h" |
| 49 | + help |
| 50 | + Maximum runtime allowed for each steady state check. |
| 51 | + |
| 52 | +config SSD_STEADY_STATE_IOPS_MEAN_LIMIT |
| 53 | + string "IOPS steady state mean limit" |
| 54 | + output yaml |
| 55 | + default "20%" |
| 56 | + help |
| 57 | + fio ss=iops value defining the IOPS mean limit criteria. |
| 58 | + |
| 59 | +config SSD_STEADY_STATE_IOPS_MEAN_DUR |
| 60 | + string "IOPS steady state mean duration" |
| 61 | + output yaml |
| 62 | + default "4h" |
| 63 | + help |
| 64 | + Duration the IOPS mean limit must be sustained. |
| 65 | + |
| 66 | +config SSD_STEADY_STATE_IOPS_SLOPE |
| 67 | + string "IOPS steady state slope" |
| 68 | + output yaml |
| 69 | + default "10%" |
| 70 | + help |
| 71 | + fio ss=iops_slope percentage for slope detection. |
| 72 | + |
| 73 | +config SSD_STEADY_STATE_IOPS_SLOPE_DUR |
| 74 | + string "IOPS steady state slope duration" |
| 75 | + output yaml |
| 76 | + default "4h" |
| 77 | + help |
| 78 | + Duration the IOPS slope criterion must hold. |
| 79 | + |
| 80 | +config SSD_STEADY_STATE_BW_MEAN_LIMIT |
| 81 | + string "BW steady state mean limit" |
| 82 | + output yaml |
| 83 | + default "20%" |
| 84 | + help |
| 85 | + fio ss=bw value defining the throughput mean limit. |
| 86 | + |
| 87 | +config SSD_STEADY_STATE_BW_MEAN_DUR |
| 88 | + string "BW steady state mean duration" |
| 89 | + output yaml |
| 90 | + default "2h" |
| 91 | + help |
| 92 | + Duration the throughput mean limit must be sustained. |
| 93 | + |
| 94 | +config SSD_STEADY_STATE_BW_SLOPE |
| 95 | + string "BW steady state slope" |
| 96 | + output yaml |
| 97 | + default "10%" |
| 98 | + help |
| 99 | + fio ss=bw_slope percentage for slope detection. |
| 100 | + |
| 101 | +config SSD_STEADY_STATE_BW_SLOPE_DUR |
| 102 | + string "BW steady state slope duration" |
| 103 | + output yaml |
| 104 | + default "2h" |
| 105 | + help |
| 106 | + Duration the throughput slope criterion must hold. |
| 107 | + |
| 108 | +endmenu |
0 commit comments