fio: ioengine flag cleanup
[fio.git] / examples / http-s3.fio
CommitLineData
c2f6a13d
LMB
1# Example test for the HTTP engine's S3 support against Amazon AWS.
2# Obviously, you have to adjust the S3 credentials; for this example,
3# they're passed in via the environment.
4#
5
6[global]
7ioengine=http
8name=test
9direct=1
10filename=/larsmb-fio-test/object
11http_verbose=0
09fd2966
LMB
12https=on
13http_mode=s3
c2f6a13d
LMB
14http_s3_key=${S3_KEY}
15http_s3_keyid=${S3_ID}
16http_host=s3.eu-central-1.amazonaws.com
17http_s3_region=eu-central-1
18group_reporting
19
20# With verify, this both writes and reads the object
21[create]
22rw=write
23bs=4k
24size=64k
25io_size=4k
26verify=sha256
27
28[trim]
29stonewall
30rw=trim
31bs=4k
32size=64k
33io_size=4k
34