From c8b16aa62adaeea1b612d720f8e3ed9d0be1401e Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 9 May 2021 23:24:53 -0700 Subject: [PATCH] Updated FUSE Mount (markdown) --- FUSE-Mount.md | 64 +++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/FUSE-Mount.md b/FUSE-Mount.md index f8c9798..f8a2e57 100644 --- a/FUSE-Mount.md +++ b/FUSE-Mount.md @@ -110,7 +110,7 @@ $ brew install sysbench $ cd /a/mounted/folder $ sysbench --test=fileio --file-total-size=1G prepare -$ sysbench --test=fileio --file-total-size=1G --file-test-mode=rndrw --max-time=60 --max-requests=0 --num-threads=1 run +$ sysbench --test=fileio --file-total-size=1G --file-test-mode=rndrw --max-time=60 --max-requests=0 --num-threads=1 --file-block-size=1m run WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options. WARNING: --max-time is deprecated, use --time instead sysbench 1.0.19 (using bundled LuaJIT 2.1.0-beta2) @@ -123,7 +123,7 @@ Initializing random number generator from current time Extra file open flags: (none) 128 files, 8MiB each 1GiB total file size -Block size 16KiB +Block size 1MiB Number of IO requests: 0 Read/Write ratio for combined random IO test: 1.50 Periodic FSYNC enabled, calling fsync() each 100 requests. @@ -136,33 +136,33 @@ Threads started! File operations: - reads/s: 8502.51 - writes/s: 5668.35 - fsyncs/s: 18140.64 + reads/s: 924.45 + writes/s: 616.31 + fsyncs/s: 1973.16 Throughput: - read, MiB/s: 132.85 - written, MiB/s: 88.57 + read, MiB/s: 924.45 + written, MiB/s: 616.31 General statistics: - total time: 60.0026s - total number of events: 1938693 + total time: 60.0039s + total number of events: 210726 Latency (ms): - min: 0.00 - avg: 0.03 - max: 4.32 - 95th percentile: 0.11 - sum: 58311.71 + min: 0.02 + avg: 0.28 + max: 74.42 + 95th percentile: 1.25 + sum: 59733.20 Threads fairness: - events (avg/stddev): 1938693.0000/0.00 - execution time (avg/stddev): 58.3117/0.00 + events (avg/stddev): 210726.0000/0.00 + execution time (avg/stddev): 59.7332/0.00 ``` The above is single-threaded. The following uses 16 threads. ``` -$ sysbench --test=fileio --file-total-size=1G --file-test-mode=rndrw --max-time=60 --max-requests=0 --num-threads=16 run +$ sysbench --test=fileio --file-total-size=1G --file-test-mode=rndrw --max-time=60 --max-requests=0 --num-threads=16 --file-block-size=1m run WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options. WARNING: --num-threads is deprecated, use --threads instead WARNING: --max-time is deprecated, use --time instead @@ -176,7 +176,7 @@ Initializing random number generator from current time Extra file open flags: (none) 128 files, 8MiB each 1GiB total file size -Block size 16KiB +Block size 1MiB Number of IO requests: 0 Read/Write ratio for combined random IO test: 1.50 Periodic FSYNC enabled, calling fsync() each 100 requests. @@ -189,28 +189,28 @@ Threads started! File operations: - reads/s: 20368.01 - writes/s: 13578.67 - fsyncs/s: 43485.34 + reads/s: 1725.94 + writes/s: 1150.83 + fsyncs/s: 3715.03 Throughput: - read, MiB/s: 318.25 - written, MiB/s: 212.17 + read, MiB/s: 1725.94 + written, MiB/s: 1150.83 General statistics: - total time: 60.0111s - total number of events: 4644841 + total time: 60.0184s + total number of events: 393592 Latency (ms): - min: 0.00 - avg: 0.20 - max: 8.22 - 95th percentile: 0.90 - sum: 944779.04 + min: 0.02 + avg: 2.43 + max: 473.23 + 95th percentile: 10.27 + sum: 958314.10 Threads fairness: - events (avg/stddev): 290302.5625/1954.88 - execution time (avg/stddev): 59.0487/0.01 + events (avg/stddev): 24599.5000/199.20 + execution time (avg/stddev): 59.8946/0.01 ```