verify stats #1812
-
For the following linux fio command, should I see any verification stats on stdout or json file? I see the reads, but nothing at all about verify. fio --ioengine=libaio --direct=1 --group_reporting=1 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Fio will print out error messages when it encounters a verify failure. If everything completes successfully then no failures were encountered. You can test this by modifying your file and running the job again. Verify operations are reads. Your job is a randwrite job with |
Beta Was this translation helpful? Give feedback.
Fio will print out error messages when it encounters a verify failure. If everything completes successfully then no failures were encountered. You can test this by modifying your file and running the job again.
Verify operations are reads. Your job is a randwrite job with
verify_only
, so fio actually did read and verify your file. You can also run with--debug=verify,io
to gain more insight into what fio is actually doing.