-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
startdelay not working #1164
Comments
@thaotran9 Hello! We can only look into an issue when we have all the information requested in https://github.com/axboe/fio/blob/master/.github/SUPPORT.md#reporting-bugs / https://github.com/axboe/fio/blob/master/REPORTING-BUGS#L12 . Could you edit all this information into your comment above? Thank you! |
Issue: I observed that startdelay option did not delay the starting time of a job. FIO version: 3.25 on Windows 10 Reproduction steps and minimal job file/command line parameters: |
I see my issue, startdelay delays the starting time of a job from the beginning not from the previous job. Does it make more sense to delay from previous job though? |
Yes, it looks like that's the case. See the following:
While I don't think it makes sense to redefine the existing option it could be done as a new parameter ( Whichever approach is taken, this is a new feature request so I'll label it up as such. Please be aware that most new feature requests are only completed through the work of new contributors (the fio developers are busy with non-fio work). Would you like to take an attempt to code this up so we can review it? |
What you described is great for the new parameter. There is a workaround when previous job's runtime is specified, we can keep track of how many seconds the workload has passed but when io_size is used instead of runtime, we don't have a way to know in advance which value to use for startdelay. |
I have noticed that a job did not delay the starting time when using startdelay option. I wonder if I missed anything or this is a bug.
Here is my fio file:
[global]
filename=C:\test_file
cpus_allowed=0-2
cpumask=7
direct=1
time_based=1
runtime=30
thread=1
[test]
stonewall
rw=randrw
blockalign=512B
rwmixread=80
rwmixwrite=20
percentage_random=50
bssplit=4k/15:8k/20:16k/20:32k/15:64k/15:128k/10:256k/5
[test]
stonewall
startdelay=30
rw=randrw
blockalign=512B
rwmixread=80
rwmixwrite=20
percentage_random=50
bssplit=4k/15:8k/20:16k/20:32k/15:64k/15:128k/10:256k/5
The text was updated successfully, but these errors were encountered: