diff --git a/U201990056/Readme.md b/U201990056/Readme.md new file mode 100644 index 0000000000000000000000000000000000000000..4116895c27a893682696af90385d1d696f0001b5 --- /dev/null +++ b/U201990056/Readme.md @@ -0,0 +1 @@ +U201990056 bigdata_storage homework diff --git "a/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.doc" "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.doc" new file mode 100644 index 0000000000000000000000000000000000000000..aa93150d07a85d2d80243fa64bb28dd087dcb20b Binary files /dev/null and "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.doc" differ diff --git "a/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.pdf" "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..977d37ef983edb0d9d5466acf20acae43aaf940c Binary files /dev/null and "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\345\256\236\351\252\214\346\212\245\345\221\212.pdf" differ diff --git "a/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.docx" "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.docx" new file mode 100644 index 0000000000000000000000000000000000000000..4621cc0901313fac5878859a30c4ef1198876cc3 Binary files /dev/null and "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.docx" differ diff --git "a/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.pdf" "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..dae3f836a83662c0dd85b25c89d26f6277aefdfe Binary files /dev/null and "b/U201990056/U201990056_\351\231\210\346\230\261\345\244\253_\350\257\276\347\250\213\346\212\245\345\221\212.pdf" differ diff --git "a/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/.keep" "b/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.py" "b/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.py" new file mode 100644 index 0000000000000000000000000000000000000000..cc3d0b40a0256827b98db2c2821800329714171f --- /dev/null +++ "b/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.py" @@ -0,0 +1,127 @@ +import csv +from matplotlib import pyplot as plt + + +def enumerate_count(file_name): + with open(file_name) as f0: + for count, _ in enumerate(f0, 1): + pass + return count + + +path = 'D:/s3bench/minio.txt' +lines = enumerate_count(path) + +f = open('D:/s3bench/data.csv', 'w', encoding='utf-8', newline="") + +writer = csv.writer(f) + +trans = [] +through = [] +durationL = [] +err = [] +ileL = [] + +trans1 = [] +through1 = [] +durationL1 = [] +error1 = [] +ileL1 = [] + +NumClient = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 64, 70, 80, 90, 100, 2, 4, 8, 16, 32, 64, 1, 1, 1, 1, + 1, 1, 1, 1, 1] + +ObjectSize = [2048, 4096, 10240, 20480, 40960, 102400, 204800, 409600, 1048576, 4194304, 4096, 4096, 4096, 4096, 4096, + 4096, 4096, 4096, 4096, 4096, 4096, 102400, 102400, 102400, 102400, 102400, 102400, 4096, 4096, 4096, + 4096, 4096, 4096, 4096, 4096, 4096] +with open(path, 'rb') as f1: + # length = len(line) + # print(length) + # print(lines) + for i in range(0, 37): + position = f1.readline() + # print(content) + # print(content1) + # array = content.split() + # trans-test = array + # position = f1.read(40) + # 1 represents the current pos + transferred = f1.readline() + transferred = (transferred.split())[2] + print("The trans is:", transferred) + transferred = float(transferred) + trans.append(transferred) + # + throughput = f1.readline() + throughput = (throughput.split())[2] + print("The throughput is:", throughput) + through.append(float(throughput)) + # + duration = f1.readline() + duration = (duration.split())[2] + print("The duration is:", duration) + durationL.append(float(duration)) + # + error = f1.readline() + error = (error.split())[3] + print("The error is:", error) + err.append(int(error)) + # + ile = f1.readline() + ile = (ile.split())[4] + print("The ile is:", ile) + ileL.append(float(ile)) + + # + position1 = f1.readline() + # 1 represents the current pos + transferred = f1.readline() + transferred = (transferred.split())[2] + print("The trans is:", transferred) + transferred = float(transferred) + trans1.append(transferred) + # + throughput = f1.readline() + throughput = (throughput.split())[2] + print("The throughput is:", throughput) + through1.append(float(throughput)) + # + duration = f1.readline() + duration = (duration.split())[2] + print("The duration is:", duration) + durationL1.append(float(duration)) + # + error = f1.readline() + error = (error.split())[3] + print("The error is:", error) + error1.append(int(error)) + # + ile = f1.readline() + ile = (ile.split())[4] + print("The ile is:", ile) + ileL1.append(float(ile)) + # + pos = f1.readline() + # i += 13 + print(i) + +f1.close() + +print(through) +print(ObjectSize) + + +ObjectSize, through = (list(t) for t in zip(*sorted(zip(ObjectSize, through)))) + +print(through) +print(ObjectSize) + +fig = plt.figure(dpi=128, figsize=(10, 6)) +plt.plot(ObjectSize, through, c='red') +plt.title("speed-size", fontsize=24) +plt.xlabel("ObjectSize", fontsize=16) +fig.autofmt_xdate() +plt.ylabel("Total Throughput: (MB/s)", fontsize=16) +plt.tick_params(axis='both', which='major', labelsize=16) + +plt.show() diff --git "a/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.sh" "b/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.sh" new file mode 100644 index 0000000000000000000000000000000000000000..2e427ba44410dea1ffb2eca2cb9f69a7d0089f87 --- /dev/null +++ "b/U201990056/\346\211\271\351\207\217\346\265\213\350\257\225s3bench\347\250\213\345\272\217/test.sh" @@ -0,0 +1,19 @@ +endpoint="http://127.0.0.1:9000" +bucket="newbucket" +ObjectNamePrefix="newbucket" +AccessKey="minioadmin" +AccessSecret="minioadmin" +filename="minio.txt" +declare -a NumClient +declare -a NumSample +declare -a ObjectSize +NumClient=(1 1 1 1 1 1 1 1 1 1 1 1 2 4 8 16 32 64 70 80 90 100 2 4 8 16 32 64 1 1 1 1 1 1 1 1 1 ) +NumSample=(100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 5 10 20 40 80 160 320 640 1280 ) +ObjectSize=(1024 2048 4096 10240 20480 40960 102400 204800 409600 1048576 4194304 4096 4096 4096 4096 4096 4096 4096 4096 4096 4096 4096 102400 102400 102400 102400 102400 102400 4096 4096 4096 4096 4096 4096 4096 4096 4096 ) +for(( i=0;i<${#NumClient[@]};i++)) +do + # 命令 + ./s3bench -accessKey=$AccessKey -accessSecret=$AccessSecret -bucket=$bucket -endpoint=$endpoint \ + -numClients=${NumClient[i]} -numSamples=${NumSample[i]} -objectNamePrefix=$ObjectNamePrefix -objectSize=${ObjectSize[i]} | awk '($3=="99th" || $1=="Total" || $1=="Results" || $1 =="Number"){ print}' >> $filename + echo "---------------------------------------------------------------------------------------------done" >> $filename +done \ No newline at end of file diff --git "a/U201990056/\346\225\260\346\215\256/.keep" "b/U201990056/\346\225\260\346\215\256/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/U201990056/\346\225\260\346\215\256/minio.txt" "b/U201990056/\346\225\260\346\215\256/minio.txt" new file mode 100644 index 0000000000000000000000000000000000000000..180f6ecb3875804a356045de14fd58bd295b942a --- /dev/null +++ "b/U201990056/\346\225\260\346\215\256/minio.txt" @@ -0,0 +1,481 @@ +Results Summary for Write Operation(s) +Total Transferred: 0.098 MB +Total Throughput: 0.24 MB/s +Total Duration: 0.400 s +Number of Errors: 0 +Write times 99th %ile: 0.045 s +Results Summary for Read Operation(s) +Total Transferred: 0.098 MB +Total Throughput: 0.93 MB/s +Total Duration: 0.105 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.195 MB +Total Throughput: 0.58 MB/s +Total Duration: 0.335 s +Number of Errors: 0 +Write times 99th %ile: 0.006 s +Results Summary for Read Operation(s) +Total Transferred: 0.195 MB +Total Throughput: 1.76 MB/s +Total Duration: 0.111 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 1.04 MB/s +Total Duration: 0.374 s +Number of Errors: 0 +Write times 99th %ile: 0.007 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 2.98 MB/s +Total Duration: 0.131 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.977 MB +Total Throughput: 2.81 MB/s +Total Duration: 0.348 s +Number of Errors: 0 +Write times 99th %ile: 0.010 s +Results Summary for Read Operation(s) +Total Transferred: 0.977 MB +Total Throughput: 8.70 MB/s +Total Duration: 0.112 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 1.953 MB +Total Throughput: 5.32 MB/s +Total Duration: 0.367 s +Number of Errors: 0 +Write times 99th %ile: 0.006 s +Results Summary for Read Operation(s) +Total Transferred: 1.953 MB +Total Throughput: 17.88 MB/s +Total Duration: 0.109 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 3.906 MB +Total Throughput: 8.64 MB/s +Total Duration: 0.452 s +Number of Errors: 0 +Write times 99th %ile: 0.045 s +Results Summary for Read Operation(s) +Total Transferred: 3.906 MB +Total Throughput: 27.31 MB/s +Total Duration: 0.143 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 18.47 MB/s +Total Duration: 0.529 s +Number of Errors: 0 +Write times 99th %ile: 0.046 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 75.75 MB/s +Total Duration: 0.129 s +Number of Errors: 0 +Read times 99th %ile: 0.004 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 19.531 MB +Total Throughput: 25.36 MB/s +Total Duration: 0.770 s +Number of Errors: 0 +Write times 99th %ile: 0.052 s +Results Summary for Read Operation(s) +Total Transferred: 19.531 MB +Total Throughput: 148.49 MB/s +Total Duration: 0.132 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 39.062 MB +Total Throughput: 57.00 MB/s +Total Duration: 0.685 s +Number of Errors: 0 +Write times 99th %ile: 0.050 s +Results Summary for Read Operation(s) +Total Transferred: 39.062 MB +Total Throughput: 236.02 MB/s +Total Duration: 0.166 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 100.000 MB +Total Throughput: 83.07 MB/s +Total Duration: 1.204 s +Number of Errors: 0 +Write times 99th %ile: 0.022 s +Results Summary for Read Operation(s) +Total Transferred: 100.000 MB +Total Throughput: 399.95 MB/s +Total Duration: 0.250 s +Number of Errors: 0 +Read times 99th %ile: 0.004 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 400.000 MB +Total Throughput: 101.80 MB/s +Total Duration: 3.929 s +Number of Errors: 0 +Write times 99th %ile: 0.150 s +Results Summary for Read Operation(s) +Total Transferred: 400.000 MB +Total Throughput: 649.13 MB/s +Total Duration: 0.616 s +Number of Errors: 0 +Read times 99th %ile: 0.011 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.95 MB/s +Total Duration: 0.412 s +Number of Errors: 0 +Write times 99th %ile: 0.043 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 3.35 MB/s +Total Duration: 0.117 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 1.62 MB/s +Total Duration: 0.241 s +Number of Errors: 0 +Write times 99th %ile: 0.025 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 6.22 MB/s +Total Duration: 0.063 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 1.58 MB/s +Total Duration: 0.248 s +Number of Errors: 0 +Write times 99th %ile: 0.062 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 8.52 MB/s +Total Duration: 0.046 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.85 MB/s +Total Duration: 0.461 s +Number of Errors: 0 +Write times 99th %ile: 0.094 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 11.99 MB/s +Total Duration: 0.033 s +Number of Errors: 0 +Read times 99th %ile: 0.005 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.71 MB/s +Total Duration: 0.550 s +Number of Errors: 0 +Write times 99th %ile: 0.126 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 19.99 MB/s +Total Duration: 0.020 s +Number of Errors: 0 +Read times 99th %ile: 0.006 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 1.22 MB/s +Total Duration: 0.321 s +Number of Errors: 0 +Write times 99th %ile: 0.140 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 20.46 MB/s +Total Duration: 0.019 s +Number of Errors: 0 +Read times 99th %ile: 0.011 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.58 MB/s +Total Duration: 0.675 s +Number of Errors: 0 +Write times 99th %ile: 0.546 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 13.95 MB/s +Total Duration: 0.028 s +Number of Errors: 0 +Read times 99th %ile: 0.025 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.53 MB/s +Total Duration: 0.739 s +Number of Errors: 0 +Write times 99th %ile: 0.577 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 17.86 MB/s +Total Duration: 0.022 s +Number of Errors: 0 +Read times 99th %ile: 0.022 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.74 MB/s +Total Duration: 0.527 s +Number of Errors: 0 +Write times 99th %ile: 0.428 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 18.79 MB/s +Total Duration: 0.021 s +Number of Errors: 0 +Read times 99th %ile: 0.019 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.72 MB/s +Total Duration: 0.540 s +Number of Errors: 0 +Write times 99th %ile: 0.535 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 18.22 MB/s +Total Duration: 0.021 s +Number of Errors: 0 +Read times 99th %ile: 0.021 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 0.61 MB/s +Total Duration: 0.641 s +Number of Errors: 0 +Write times 99th %ile: 0.587 s +Results Summary for Read Operation(s) +Total Transferred: 0.391 MB +Total Throughput: 15.80 MB/s +Total Duration: 0.025 s +Number of Errors: 0 +Read times 99th %ile: 0.025 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 15.27 MB/s +Total Duration: 0.640 s +Number of Errors: 0 +Write times 99th %ile: 0.156 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 134.68 MB/s +Total Duration: 0.073 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 16.02 MB/s +Total Duration: 0.610 s +Number of Errors: 0 +Write times 99th %ile: 0.202 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 203.70 MB/s +Total Duration: 0.048 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 18.27 MB/s +Total Duration: 0.534 s +Number of Errors: 0 +Write times 99th %ile: 0.270 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 391.63 MB/s +Total Duration: 0.025 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 13.52 MB/s +Total Duration: 0.722 s +Number of Errors: 0 +Write times 99th %ile: 0.286 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 445.48 MB/s +Total Duration: 0.022 s +Number of Errors: 0 +Read times 99th %ile: 0.006 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 14.49 MB/s +Total Duration: 0.674 s +Number of Errors: 0 +Write times 99th %ile: 0.393 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 400.99 MB/s +Total Duration: 0.024 s +Number of Errors: 0 +Read times 99th %ile: 0.017 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 10.41 MB/s +Total Duration: 0.938 s +Number of Errors: 0 +Write times 99th %ile: 0.642 s +Results Summary for Read Operation(s) +Total Transferred: 9.766 MB +Total Throughput: 379.70 MB/s +Total Duration: 0.026 s +Number of Errors: 0 +Read times 99th %ile: 0.024 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.020 MB +Total Throughput: 0.30 MB/s +Total Duration: 0.065 s +Number of Errors: 0 +Write times 99th %ile: 0.045 s +Results Summary for Read Operation(s) +Total Transferred: 0.020 MB +Total Throughput: 3.22 MB/s +Total Duration: 0.006 s +Number of Errors: 0 +Read times 99th %ile: 0.001 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.039 MB +Total Throughput: 0.34 MB/s +Total Duration: 0.116 s +Number of Errors: 0 +Write times 99th %ile: 0.083 s +Results Summary for Read Operation(s) +Total Transferred: 0.039 MB +Total Throughput: 3.07 MB/s +Total Duration: 0.013 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.078 MB +Total Throughput: 0.26 MB/s +Total Duration: 0.304 s +Number of Errors: 0 +Write times 99th %ile: 0.111 s +Results Summary for Read Operation(s) +Total Transferred: 0.078 MB +Total Throughput: 3.26 MB/s +Total Duration: 0.024 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.156 MB +Total Throughput: 0.39 MB/s +Total Duration: 0.403 s +Number of Errors: 0 +Write times 99th %ile: 0.125 s +Results Summary for Read Operation(s) +Total Transferred: 0.156 MB +Total Throughput: 3.06 MB/s +Total Duration: 0.051 s +Number of Errors: 0 +Read times 99th %ile: 0.004 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.312 MB +Total Throughput: 0.55 MB/s +Total Duration: 0.567 s +Number of Errors: 0 +Write times 99th %ile: 0.151 s +Results Summary for Read Operation(s) +Total Transferred: 0.312 MB +Total Throughput: 3.87 MB/s +Total Duration: 0.081 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 0.625 MB +Total Throughput: 0.57 MB/s +Total Duration: 1.098 s +Number of Errors: 0 +Write times 99th %ile: 0.053 s +Results Summary for Read Operation(s) +Total Transferred: 0.625 MB +Total Throughput: 3.48 MB/s +Total Duration: 0.180 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 1.250 MB +Total Throughput: 1.09 MB/s +Total Duration: 1.152 s +Number of Errors: 0 +Write times 99th %ile: 0.006 s +Results Summary for Read Operation(s) +Total Transferred: 1.250 MB +Total Throughput: 3.25 MB/s +Total Duration: 0.385 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 2.500 MB +Total Throughput: 1.15 MB/s +Total Duration: 2.176 s +Number of Errors: 0 +Write times 99th %ile: 0.006 s +Results Summary for Read Operation(s) +Total Transferred: 2.500 MB +Total Throughput: 3.16 MB/s +Total Duration: 0.792 s +Number of Errors: 0 +Read times 99th %ile: 0.002 s +---------------------------------------------------------------------------------------------done +Results Summary for Write Operation(s) +Total Transferred: 5.000 MB +Total Throughput: 0.96 MB/s +Total Duration: 5.227 s +Number of Errors: 0 +Write times 99th %ile: 0.010 s +Results Summary for Read Operation(s) +Total Transferred: 5.000 MB +Total Throughput: 2.97 MB/s +Total Duration: 1.686 s +Number of Errors: 0 +Read times 99th %ile: 0.003 s +---------------------------------------------------------------------------------------------done