Open
Description
Every time I used the "file_append" parameter in fio with "sync" ioengine and "loops", I get the following error:
"No I/O performed by sync, perhaps try --debug=io option for details?"
What I am trying to do is to emulate writes being appended to a single file. I want the writes to be buffered until they are flushed every 500th I/O. I have included the job file that fails. If I remove the "file_append" parameter, it works fine.
[global]
[test]
filename=/data/128mb
bs=4k
size=128m
rw=write
file_append=1
ioengine=sync
fsync=500
loops=100