qemu/tests/qemu-iotests
Kevin Wolf ffa244c84a file-posix: Mitigate file fragmentation with extent size hints
Especially when O_DIRECT is used with image files so that the page cache
indirection can't cause a merge of allocating requests, the file will
fragment on the file system layer, with a potentially very small
fragment size (this depends on the requests the guest sent).

On Linux, fragmentation can be reduced by setting an extent size hint
when creating the file (at least on XFS, it can't be set any more after
the first extent has been allocated), basically giving raw files a
"cluster size" for allocation.

This adds a create option to set the extent size hint, and changes the
default from not setting a hint to setting it to 1 MB. The main reason
why qcow2 defaults to smaller cluster sizes is that COW becomes more
expensive, which is not an issue with raw files, so we can choose a
larger size. The tradeoff here is only potentially wasted disk space.

For qcow2 (or other image formats) over file-posix, the advantage should
even be greater because they grow sequentially without leaving holes, so
there won't be wasted space. Setting even larger extent size hints for
such images may make sense. This can be done with the new option, but
let's keep the default conservative for now.

The effect is very visible with a test that intentionally creates a
badly fragmented file with qemu-img bench (the time difference while
creating the file is already remarkable) and then looks at the number of
extents and the time a simple "qemu-img map" takes.

Without an extent size hint:

    $ ./qemu-img create -f raw -o extent_size_hint=0 ~/tmp/test.raw 10G
    Formatting '/home/kwolf/tmp/test.raw', fmt=raw size=10737418240 extent_size_hint=0
    $ ./qemu-img bench -f raw -t none -n -w ~/tmp/test.raw -c 1000000 -S 8192 -o 0
    Sending 1000000 write requests, 4096 bytes each, 64 in parallel (starting at offset 0, step size 8192)
    Run completed in 25.848 seconds.
    $ ./qemu-img bench -f raw -t none -n -w ~/tmp/test.raw -c 1000000 -S 8192 -o 4096
    Sending 1000000 write requests, 4096 bytes each, 64 in parallel (starting at offset 4096, step size 8192)
    Run completed in 19.616 seconds.
    $ filefrag ~/tmp/test.raw
    /home/kwolf/tmp/test.raw: 2000000 extents found
    $ time ./qemu-img map ~/tmp/test.raw
    Offset          Length          Mapped to       File
    0               0x1e8480000     0               /home/kwolf/tmp/test.raw

    real    0m1,279s
    user    0m0,043s
    sys     0m1,226s

With the new default extent size hint of 1 MB:

    $ ./qemu-img create -f raw -o extent_size_hint=1M ~/tmp/test.raw 10G
    Formatting '/home/kwolf/tmp/test.raw', fmt=raw size=10737418240 extent_size_hint=1048576
    $ ./qemu-img bench -f raw -t none -n -w ~/tmp/test.raw -c 1000000 -S 8192 -o 0
    Sending 1000000 write requests, 4096 bytes each, 64 in parallel (starting at offset 0, step size 8192)
    Run completed in 11.833 seconds.
    $ ./qemu-img bench -f raw -t none -n -w ~/tmp/test.raw -c 1000000 -S 8192 -o 4096
    Sending 1000000 write requests, 4096 bytes each, 64 in parallel (starting at offset 4096, step size 8192)
    Run completed in 10.155 seconds.
    $ filefrag ~/tmp/test.raw
    /home/kwolf/tmp/test.raw: 178 extents found
    $ time ./qemu-img map ~/tmp/test.raw
    Offset          Length          Mapped to       File
    0               0x1e8480000     0               /home/kwolf/tmp/test.raw

    real    0m0,061s
    user    0m0,040s
    sys     0m0,014s

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20200707142329.48303-1-kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2020-07-14 15:18:59 +02:00
..
001
2020-05-05 13:17:36 +02:00
004
008
012
013
021
022
023
025
2019-10-14 17:12:48 +02:00
035
038
042
047
052
2020-05-05 13:17:36 +02:00
054
063
2020-01-06 13:43:07 +01:00
2020-01-06 13:43:07 +01:00
064
065
2020-05-13 14:20:31 +02:00
070
075
076
077
078
079
2020-01-06 13:43:07 +01:00
080
2020-05-13 14:20:31 +02:00
082
2020-05-08 13:26:35 +02:00
083
2019-10-28 11:22:31 +01:00
084
085
2020-03-24 11:57:38 +01:00
086
087
2020-07-06 08:49:28 +02:00
091
2020-05-08 13:26:35 +02:00
2020-01-06 13:43:07 +01:00
097
101
102
104
107
110
2020-01-06 13:43:07 +01:00
2020-01-06 13:43:07 +01:00
111
2020-01-06 13:43:07 +01:00
115
2020-01-06 13:43:07 +01:00
116
117
119
128
130
131
133
134
2020-05-05 13:17:36 +02:00
135
137
2020-01-06 13:43:07 +01:00
2020-01-06 13:43:07 +01:00
140
2019-10-28 11:22:31 +01:00
145
147
2020-02-20 16:43:42 +01:00
148
2020-05-08 13:26:35 +02:00
149
2020-05-05 13:17:36 +02:00
150
2020-05-05 13:17:36 +02:00
154
2020-03-11 15:54:38 +01:00
157
158
162
2019-10-10 12:13:23 +02:00
2019-10-10 12:13:23 +02:00
171
2020-06-23 16:07:07 +02:00
174
2020-01-06 13:43:07 +01:00
178
2020-07-06 08:49:28 +02:00
2020-05-28 13:15:23 -05:00
179
188
2020-07-06 08:49:28 +02:00
189
2020-07-06 08:49:28 +02:00
192
2019-10-28 11:22:31 +01:00
198
2020-07-06 08:49:28 +02:00
202
2020-05-05 13:17:36 +02:00
203
2020-05-05 13:17:36 +02:00
204
206
2020-07-06 08:49:28 +02:00
207
2020-05-05 13:17:36 +02:00
208
2020-05-05 13:17:36 +02:00
209
2020-05-05 13:17:36 +02:00
210
2020-05-05 13:17:36 +02:00
211
2020-05-05 13:17:36 +02:00
212
2020-05-05 13:17:36 +02:00
213
2020-05-05 13:17:36 +02:00
216
2020-05-05 13:17:36 +02:00
218
2020-05-05 13:17:36 +02:00
219
2020-05-05 13:17:36 +02:00
221
222
2020-05-05 13:17:36 +02:00
224
2020-05-05 13:17:36 +02:00
226
227
2019-10-10 10:56:18 +02:00
228
2020-05-05 13:17:36 +02:00
229
2020-06-17 16:21:21 +02:00
231
233
234
2020-05-05 13:17:36 +02:00
235
2020-05-05 13:17:36 +02:00
236
2020-05-05 13:17:36 +02:00
237
2020-05-05 13:17:36 +02:00
238
2020-05-05 13:17:36 +02:00
239
240
2019-10-28 11:22:31 +01:00
242
2020-05-05 13:17:36 +02:00
246
2020-05-05 13:17:36 +02:00
248
2020-05-05 13:17:36 +02:00
253
254
2020-05-05 13:17:36 +02:00
2019-08-16 16:28:03 -04:00
255
2020-05-05 13:17:36 +02:00
256
2020-05-05 13:17:36 +02:00
258
2020-05-05 13:17:36 +02:00
260
2020-05-05 13:17:36 +02:00
262
2020-05-05 13:17:36 +02:00
263
2020-07-06 08:49:28 +02:00
264
2020-05-05 13:17:36 +02:00
2019-10-22 20:51:31 -05:00
265
2020-01-06 13:43:07 +01:00
274
2020-05-05 13:17:36 +02:00
277
2020-05-05 13:17:36 +02:00
2019-11-18 16:01:31 -06:00
279
2020-03-24 11:57:38 +01:00
280
2020-05-05 13:17:36 +02:00
284
2020-07-06 08:49:28 +02:00
286
2020-02-20 16:43:42 +01:00
291
2020-06-24 10:00:04 +02:00
292
2020-06-17 16:21:21 +02:00
295
2020-07-06 08:49:28 +02:00
2020-07-06 08:49:28 +02:00
296
2020-07-06 08:49:28 +02:00
2020-07-06 08:49:28 +02:00
297
2020-05-18 19:05:25 +02:00
2020-07-06 08:49:28 +02:00
2020-07-06 08:49:28 +02:00
2020-07-06 08:49:28 +02:00

=== This is the QEMU I/O test suite ===

* Intro

This package contains a simple test suite for the I/O layer of qemu.
It does not require a guest, but only the qemu, qemu-img and qemu-io
binaries.  This does limit it to exercise the low-level I/O path only
but no actual block drivers like ide, scsi or virtio.

* Usage

Just run ./check to run all tests for the raw image format, or ./check
-qcow2 to test the qcow2 image format.  The output of ./check -h explains
additional options to test further image formats or I/O methods.

* Feedback and patches

Please send improvements to the test suite, general feedback or just
reports of failing tests cases to qemu-devel@nongnu.org with a CC:
to qemu-block@nongnu.org.