Skip to content

Instantly share code, notes, and snippets.

@fo40225
Created November 14, 2024 23:56
Show Gist options
  • Save fo40225/e77337841cd4d54f108d79f94494f086 to your computer and use it in GitHub Desktop.
Save fo40225/e77337841cd4d54f108d79f94494f086 to your computer and use it in GitHub Desktop.
seaweedfs
wget https://github.com/seaweedfs/seaweedfs/releases/download/3.73/linux_amd64.tar.gz
tar axvf linux_amd64.tar.gz
rm linux_amd64.tar.gz
sudo mv weed /usr/local/bin
sudo mkdir -p /usr/local/etc/seaweedfs
sudo chown user:user /usr/local/etc/seaweedfs
weed scaffold -config=master > /usr/local/etc/seaweedfs/master.toml
# 1 is 100MB/s, network is 25Gbps
vim master.toml
# copy_1 = 24
# odd master
weed master \
-mdir=/usr/local/etc/seaweedfs/metadata \
-ip 192.168.1.12 \
-port 9333 \
-peers 192.168.1.13:9333,192.168.1.14:9333
weed master \
-mdir=/usr/local/etc/seaweedfs/metadata \
-ip 192.168.1.13 \
-port 9333 \
-peers 192.168.1.14:9333,192.168.1.12:9333
weed master \
-mdir=/usr/local/etc/seaweedfs/metadata \
-ip 192.168.1.14 \
-port 9333 \
-peers 192.168.1.12:9333,192.168.1.13:9333
seq 1 12 | parallel mkdir -p /raid0/seaweedfs/volume_{}
# disk size 13TB, 30GB * 12 * 36
seq 1 12 | parallel weed volume \
-index=leveldb \
-concurrentDownloadLimitMB=256 \
-concurrentUploadLimitMB=256 \
-dir=/raid0/seaweedfs/volume_{} \
-fileSizeLimitMB=6 \
-max=36 \
-port=200{} \
-mserver 192.168.1.12:9333,192.168.1.13:9333,192.168.1.14:9333
sudo apt install -y redis-server
sudo vim /etc/redis/redis.conf
# bind * -::1
# protected-mode no
# appendonly yes
# appendfsync no
# cluster-enabled yes
# cluster-config-file nodes-6379.conf
# cluster-node-timeout 15000
sudo systemctl daemon-reload
sudo systemctl restart redis-server.service
redis-cli --cluster create 192.168.1.11:6379 192.168.1.12:6379 192.168.1.13:6379 192.168.1.14:6379
weed scaffold -config=filer > /usr/local/etc/seaweedfs/filer.toml
vim /usr/local/etc/seaweedfs/filer.toml
#[leveldb2]
#enabled = false
#[redis_cluster2]
#enabled = true
#addresses = [
# "localhost:6379"
#]
weed filer \
-concurrentUploadLimitMB=256 \
-maxMB=1 \
-saveToFilerLimit=4096 \
-port=18888 \
-master 192.168.1.12:9333,192.168.1.13:9333,192.168.1.14:9333
sudo vim /etc/fuse.conf
# user_allow_other
weed mount \
-allowOthers=true \
-cacheDir=/usr/local/etc/seaweedfs/tmp \
-cacheDirWrite=/usr/local/etc/seaweedfs/tmp \
-chunkSizeLimitMB=1 \
-concurrentWriters=12 \
-filer.path=/raid \
-dir=/raid \
-filer=localhost:18888
fio --ioengine=io_uring --loops=5 --size=1g --runtime=5 --time_based=1 --stonewall --direct=1 --group_reporting \
--name=SeqQ8T1read --bs=1048576 --iodepth=8 --rw=read \
--name=SeqQ8T1write --bs=1048576 --iodepth=8 --rw=write \
--name=SeqQ1T1read --bs=1048576 --iodepth=1 --rw=read \
--name=SeqQ1T1write --bs=1048576 --iodepth=1 --rw=write \
--name=4kQ32T16read --bs=4096 --iodepth=32 --numjobs=16 --rw=randread \
--name=4kQ32T16write --bs=4096 --iodepth=32 --numjobs=16 --rw=randwrite \
--name=4kQ1T1read --bs=4096 --iodepth=1 --rw=randread \
--name=4kQ1T1write --bs=4096 --iodepth=1 --rw=randwrite
user@h273-z82-1:/raid/fio$ fio --ioengine=io_uring --loops=5 --size=1g --runtime=5 --time_based=1 --stonewall --direct=1 --group_reporting \
--name=SeqQ8T1read --bs=1048576 --iodepth=8 --rw=read \
--name=SeqQ8T1write --bs=1048576 --iodepth=8 --rw=write \
--name=SeqQ1T1read --bs=1048576 --iodepth=1 --rw=read \
--name=SeqQ1T1write --bs=1048576 --iodepth=1 --rw=write \
--name=4kQ32T16read --bs=4096 --iodepth=32 --numjobs=16 --rw=randread \
--name=4kQ32T16write --bs=4096 --iodepth=32 --numjobs=16 --rw=randwrite \
--name=4kQ1T1read --bs=4096 --iodepth=1 --rw=randread \
--name=4kQ1T1write --bs=4096 --iodepth=1 --rw=randwrite
SeqQ8T1read: (g=0): rw=read, bs=(R) 1024KiB-1024KiB, (W) 1024KiB-1024KiB, (T) 1024KiB-1024KiB, ioengine=io_uring, iodepth=8
SeqQ8T1write: (g=1): rw=write, bs=(R) 1024KiB-1024KiB, (W) 1024KiB-1024KiB, (T) 1024KiB-1024KiB, ioengine=io_uring, iodepth=8
SeqQ1T1read: (g=2): rw=read, bs=(R) 1024KiB-1024KiB, (W) 1024KiB-1024KiB, (T) 1024KiB-1024KiB, ioengine=io_uring, iodepth=1
SeqQ1T1write: (g=3): rw=write, bs=(R) 1024KiB-1024KiB, (W) 1024KiB-1024KiB, (T) 1024KiB-1024KiB, ioengine=io_uring, iodepth=1
4kQ32T16read: (g=4): rw=randread, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=io_uring, iodepth=32
...
4kQ32T16write: (g=5): rw=randwrite, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=io_uring, iodepth=32
...
4kQ1T1read: (g=6): rw=randread, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=io_uring, iodepth=1
4kQ1T1write: (g=7): rw=randwrite, bs=(R) 4096B-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=io_uring, iodepth=1
fio-3.36
Starting 38 processes
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
4kQ32T16write: Laying out IO file (1 file / 1024MiB)
Jobs: 1 (f=1): [_(37),w(1)][18.9%][w=11.8MiB/s][w=3011 IOPS][eta 03m:05s]
SeqQ8T1read: (groupid=0, jobs=1): err= 0: pid=210903: Fri Nov 15 07:49:50 2024
read: IOPS=1003, BW=1003MiB/s (1052MB/s)(5024MiB/5008msec)
slat (nsec): min=510, max=39050, avg=2521.59, stdev=1655.91
clat (usec): min=394, max=206617, avg=7966.70, stdev=5144.32
lat (usec): min=395, max=206619, avg=7969.23, stdev=5144.15
clat percentiles (usec):
| 1.00th=[ 938], 5.00th=[ 2147], 10.00th=[ 2442], 20.00th=[ 3458],
| 30.00th=[ 5932], 40.00th=[ 7177], 50.00th=[ 8225], 60.00th=[ 9241],
| 70.00th=[ 9896], 80.00th=[ 11207], 90.00th=[ 12387], 95.00th=[ 13829],
| 99.00th=[ 16712], 99.50th=[ 17957], 99.90th=[ 63177], 99.95th=[ 63177],
| 99.99th=[206570]
bw ( KiB/s): min=934874, max=1118208, per=99.89%, avg=1026160.67, stdev=63147.13, samples=9
iops : min= 912, max= 1092, avg=1001.89, stdev=61.87, samples=9
lat (usec) : 500=0.20%, 750=0.52%, 1000=0.30%
lat (msec) : 2=2.57%, 4=18.59%, 10=48.51%, 20=29.08%, 50=0.08%
lat (msec) : 100=0.14%, 250=0.02%
cpu : usr=0.20%, sys=2.58%, ctx=4154, majf=0, minf=11
IO depths : 1=0.1%, 2=0.1%, 4=0.1%, 8=99.9%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.1%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=5024,0,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=8
SeqQ8T1write: (groupid=1, jobs=1): err= 0: pid=210973: Fri Nov 15 07:49:50 2024
write: IOPS=1161, BW=1162MiB/s (1218MB/s)(5819MiB/5008msec); 0 zone resets
slat (usec): min=3, max=179, avg=44.74, stdev=18.71
clat (usec): min=788, max=13867, avg=6835.63, stdev=1009.17
lat (usec): min=803, max=13905, avg=6880.37, stdev=1009.60
clat percentiles (usec):
| 1.00th=[ 5211], 5.00th=[ 5473], 10.00th=[ 5669], 20.00th=[ 5932],
| 30.00th=[ 6194], 40.00th=[ 6456], 50.00th=[ 6718], 60.00th=[ 6980],
| 70.00th=[ 7308], 80.00th=[ 7635], 90.00th=[ 8160], 95.00th=[ 8586],
| 99.00th=[ 9503], 99.50th=[ 9765], 99.90th=[13566], 99.95th=[13698],
| 99.99th=[13829]
bw ( MiB/s): min= 1105, max= 1224, per=100.00%, avg=1165.11, stdev=39.02, samples=9
iops : min= 1105, max= 1224, avg=1165.00, stdev=39.17, samples=9
lat (usec) : 1000=0.02%
lat (msec) : 2=0.03%, 4=0.05%, 10=99.50%, 20=0.40%
cpu : usr=5.39%, sys=1.82%, ctx=6250, majf=0, minf=9
IO depths : 1=0.1%, 2=0.1%, 4=0.1%, 8=99.9%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.1%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=0,5819,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=8
SeqQ1T1read: (groupid=2, jobs=1): err= 0: pid=211042: Fri Nov 15 07:49:50 2024
read: IOPS=1455, BW=1455MiB/s (1526MB/s)(7278MiB/5001msec)
slat (nsec): min=470, max=16160, avg=1153.32, stdev=724.18
clat (usec): min=221, max=201918, avg=685.28, stdev=3212.07
lat (usec): min=223, max=201919, avg=686.43, stdev=3212.10
clat percentiles (usec):
| 1.00th=[ 310], 5.00th=[ 363], 10.00th=[ 392], 20.00th=[ 420],
| 30.00th=[ 445], 40.00th=[ 465], 50.00th=[ 486], 60.00th=[ 510],
| 70.00th=[ 545], 80.00th=[ 619], 90.00th=[ 709], 95.00th=[ 955],
| 99.00th=[ 4555], 99.50th=[ 5538], 99.90th=[ 7373], 99.95th=[ 10421],
| 99.99th=[202376]
bw ( MiB/s): min= 976, max= 1620, per=100.00%, avg=1466.63, stdev=260.03, samples=9
iops : min= 976, max= 1620, avg=1466.56, stdev=260.12, samples=9
lat (usec) : 250=0.08%, 500=56.64%, 750=35.96%, 1000=2.51%
lat (msec) : 2=1.57%, 4=1.44%, 10=1.74%, 20=0.03%, 250=0.03%
cpu : usr=0.18%, sys=2.04%, ctx=7280, majf=0, minf=10
IO depths : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=7278,0,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=1
SeqQ1T1write: (groupid=3, jobs=1): err= 0: pid=211116: Fri Nov 15 07:49:50 2024
write: IOPS=1057, BW=1058MiB/s (1109MB/s)(5290MiB/5001msec); 0 zone resets
slat (usec): min=2, max=188, avg=60.58, stdev=28.01
clat (usec): min=409, max=3145, avg=883.92, stdev=219.93
lat (usec): min=443, max=3200, avg=944.50, stdev=223.02
clat percentiles (usec):
| 1.00th=[ 553], 5.00th=[ 635], 10.00th=[ 668], 20.00th=[ 709],
| 30.00th=[ 742], 40.00th=[ 775], 50.00th=[ 816], 60.00th=[ 865],
| 70.00th=[ 955], 80.00th=[ 1074], 90.00th=[ 1237], 95.00th=[ 1336],
| 99.00th=[ 1450], 99.50th=[ 1483], 99.90th=[ 1778], 99.95th=[ 2343],
| 99.99th=[ 3163]
bw ( MiB/s): min= 1016, max= 1142, per=100.00%, avg=1058.54, stdev=41.71, samples=9
iops : min= 1016, max= 1142, avg=1058.44, stdev=41.75, samples=9
lat (usec) : 500=0.32%, 750=31.63%, 1000=42.59%
lat (msec) : 2=25.41%, 4=0.06%
cpu : usr=6.78%, sys=1.90%, ctx=5291, majf=0, minf=11
IO depths : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=0,5290,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=1
4kQ32T16read: (groupid=4, jobs=16): err= 0: pid=211178: Fri Nov 15 07:49:50 2024
read: IOPS=111k, BW=433MiB/s (454MB/s)(2166MiB/5004msec)
slat (nsec): min=430, max=66450, avg=1460.29, stdev=884.82
clat (usec): min=139, max=68681, avg=4616.09, stdev=5828.93
lat (usec): min=141, max=68682, avg=4617.55, stdev=5828.95
clat percentiles (usec):
| 1.00th=[ 206], 5.00th=[ 245], 10.00th=[ 265], 20.00th=[ 297],
| 30.00th=[ 338], 40.00th=[ 445], 50.00th=[ 4621], 60.00th=[ 4948],
| 70.00th=[ 5211], 80.00th=[ 8717], 90.00th=[10290], 95.00th=[14615],
| 99.00th=[29754], 99.50th=[33817], 99.90th=[40109], 99.95th=[43779],
| 99.99th=[49546]
bw ( KiB/s): min=426014, max=463698, per=100.00%, avg=444082.11, stdev=731.04, samples=144
iops : min=106502, max=115924, avg=111019.11, stdev=182.79, samples=144
lat (usec) : 250=6.32%, 500=35.68%, 750=3.04%, 1000=0.50%
lat (msec) : 2=0.40%, 4=0.36%, 10=42.17%, 20=8.87%, 50=2.63%
lat (msec) : 100=0.01%
cpu : usr=0.74%, sys=11.41%, ctx=527327, majf=0, minf=168
IO depths : 1=0.1%, 2=0.1%, 4=0.1%, 8=0.1%, 16=0.1%, 32=99.9%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.1%, 64=0.0%, >=64=0.0%
issued rwts: total=554459,0,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=32
4kQ32T16write: (groupid=5, jobs=16): err= 0: pid=211769: Fri Nov 15 07:49:50 2024
write: IOPS=11.0k, BW=43.0MiB/s (45.1MB/s)(217MiB/5043msec); 0 zone resets
slat (nsec): min=410, max=59860, avg=2170.09, stdev=1664.10
clat (usec): min=434, max=91233, avg=46494.18, stdev=10224.00
lat (usec): min=438, max=91233, avg=46496.35, stdev=10223.92
clat percentiles (usec):
| 1.00th=[29230], 5.00th=[38536], 10.00th=[39584], 20.00th=[41157],
| 30.00th=[42206], 40.00th=[43254], 50.00th=[44303], 60.00th=[45351],
| 70.00th=[46924], 80.00th=[49021], 90.00th=[53740], 95.00th=[72877],
| 99.00th=[83362], 99.50th=[85459], 99.90th=[89654], 99.95th=[90702],
| 99.99th=[90702]
bw ( KiB/s): min=41096, max=48858, per=100.00%, avg=44127.33, stdev=153.16, samples=144
iops : min=10274, max=12209, avg=11030.33, stdev=38.22, samples=144
lat (usec) : 500=0.01%, 750=0.01%, 1000=0.04%
lat (msec) : 2=0.30%, 4=0.05%, 10=0.12%, 20=0.23%, 50=81.92%
lat (msec) : 100=17.32%
cpu : usr=0.27%, sys=1.82%, ctx=64252, majf=0, minf=164
IO depths : 1=0.1%, 2=0.1%, 4=0.1%, 8=0.2%, 16=0.5%, 32=99.1%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.1%, 64=0.0%, >=64=0.0%
issued rwts: total=0,55493,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=32
4kQ1T1read: (groupid=6, jobs=1): err= 0: pid=212357: Fri Nov 15 07:49:50 2024
read: IOPS=1631, BW=6527KiB/s (6684kB/s)(31.9MiB/5001msec)
slat (nsec): min=480, max=22890, avg=1084.88, stdev=703.10
clat (usec): min=281, max=2057, avg=610.95, stdev=113.11
lat (usec): min=283, max=2058, avg=612.04, stdev=113.18
clat percentiles (usec):
| 1.00th=[ 388], 5.00th=[ 453], 10.00th=[ 490], 20.00th=[ 529],
| 30.00th=[ 553], 40.00th=[ 578], 50.00th=[ 603], 60.00th=[ 619],
| 70.00th=[ 644], 80.00th=[ 676], 90.00th=[ 742], 95.00th=[ 832],
| 99.00th=[ 938], 99.50th=[ 996], 99.90th=[ 1303], 99.95th=[ 1467],
| 99.99th=[ 2057]
bw ( KiB/s): min= 6372, max= 6680, per=100.00%, avg=6533.00, stdev=112.85, samples=9
iops : min= 1593, max= 1670, avg=1633.22, stdev=28.20, samples=9
lat (usec) : 500=12.07%, 750=78.39%, 1000=9.09%
lat (msec) : 2=0.44%, 4=0.01%
cpu : usr=0.24%, sys=1.94%, ctx=8162, majf=0, minf=9
IO depths : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=8161,0,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=1
4kQ1T1write: (groupid=7, jobs=1): err= 0: pid=212431: Fri Nov 15 07:49:50 2024
write: IOPS=3324, BW=13.0MiB/s (13.6MB/s)(64.9MiB/5001msec); 0 zone resets
slat (nsec): min=420, max=22669, avg=1106.87, stdev=606.73
clat (usec): min=50, max=18334, avg=294.26, stdev=311.76
lat (usec): min=51, max=18337, avg=295.37, stdev=311.81
clat percentiles (usec):
| 1.00th=[ 73], 5.00th=[ 90], 10.00th=[ 109], 20.00th=[ 149],
| 30.00th=[ 178], 40.00th=[ 202], 50.00th=[ 229], 60.00th=[ 273],
| 70.00th=[ 334], 80.00th=[ 408], 90.00th=[ 515], 95.00th=[ 611],
| 99.00th=[ 1029], 99.50th=[ 1811], 99.90th=[ 3294], 99.95th=[ 3556],
| 99.99th=[13173]
bw ( KiB/s): min=11712, max=15432, per=100.00%, avg=13432.00, stdev=1417.13, samples=9
iops : min= 2928, max= 3858, avg=3358.00, stdev=354.28, samples=9
lat (usec) : 100=7.90%, 250=47.67%, 500=33.34%, 750=9.17%, 1000=0.89%
lat (msec) : 2=0.62%, 4=0.35%, 10=0.03%, 20=0.02%
cpu : usr=0.50%, sys=3.92%, ctx=16636, majf=0, minf=8
IO depths : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
issued rwts: total=0,16624,0,0 short=0,0,0,0 dropped=0,0,0,0
latency : target=0, window=0, percentile=100.00%, depth=1
Run status group 0 (all jobs):
READ: bw=1003MiB/s (1052MB/s), 1003MiB/s-1003MiB/s (1052MB/s-1052MB/s), io=5024MiB (5268MB), run=5008-5008msec
Run status group 1 (all jobs):
WRITE: bw=1162MiB/s (1218MB/s), 1162MiB/s-1162MiB/s (1218MB/s-1218MB/s), io=5819MiB (6102MB), run=5008-5008msec
Run status group 2 (all jobs):
READ: bw=1455MiB/s (1526MB/s), 1455MiB/s-1455MiB/s (1526MB/s-1526MB/s), io=7278MiB (7632MB), run=5001-5001msec
Run status group 3 (all jobs):
WRITE: bw=1058MiB/s (1109MB/s), 1058MiB/s-1058MiB/s (1109MB/s-1109MB/s), io=5290MiB (5547MB), run=5001-5001msec
Run status group 4 (all jobs):
READ: bw=433MiB/s (454MB/s), 433MiB/s-433MiB/s (454MB/s-454MB/s), io=2166MiB (2271MB), run=5004-5004msec
Run status group 5 (all jobs):
WRITE: bw=43.0MiB/s (45.1MB/s), 43.0MiB/s-43.0MiB/s (45.1MB/s-45.1MB/s), io=217MiB (227MB), run=5043-5043msec
Run status group 6 (all jobs):
READ: bw=6527KiB/s (6684kB/s), 6527KiB/s-6527KiB/s (6684kB/s-6684kB/s), io=31.9MiB (33.4MB), run=5001-5001msec
Run status group 7 (all jobs):
WRITE: bw=13.0MiB/s (13.6MB/s), 13.0MiB/s-13.0MiB/s (13.6MB/s-13.6MB/s), io=64.9MiB (68.1MB), run=5001-5001msec
user@h273-z82-1:/raid/fio$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment