FINALLY add the rest of the graphs with this hellish code
i will be repenting to the DRY gods for the rest of eternity
This commit is contained in:
parent
92ce85cf59
commit
4e20db145e
8 changed files with 663 additions and 26 deletions
|
@ -93,13 +93,25 @@
|
|||
script</a> to make it a bit easier, I put the resulting graphs
|
||||
in here ↓</p>
|
||||
<h3 id="sequential-read">Sequential read</h3>
|
||||
<div>
|
||||
<canvas id="seq_read_chart" class="chart">
|
||||
</canvas>
|
||||
</div>
|
||||
<h3 id="random-read">Random read</h3>
|
||||
<div>
|
||||
<canvas id="rand_read_chart" class="chart">
|
||||
</canvas>
|
||||
</div>
|
||||
<h3 id="sequential-read-latency">Sequential read latency</h3>
|
||||
<div>
|
||||
<canvas id="seq_read_latency_chart" class="chart">
|
||||
</canvas>
|
||||
</div>
|
||||
<h3 id="random-read-latency">Random read latency</h3>
|
||||
<div>
|
||||
<canvas id="rand_read_latency_chart" class="chart">
|
||||
</canvas>
|
||||
</div>
|
||||
<p>The FUSE-based filesystems run into a bit of trouble here -
|
||||
with incompressible data, DwarFS has a hard time keeping up for
|
||||
some reason, despite keeping up just fine with larger random
|
||||
|
@ -127,7 +139,11 @@
|
|||
<h2 id="footnotes">Footnotes</h2>
|
||||
<!-- JavaScript for graphs goes hereeeeeee -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||
<script src="/assets/benchmarking-dwarfs/js/declare_vars.js"></script>
|
||||
<script src="/assets/benchmarking-dwarfs/js/seq_read.js"></script>
|
||||
<script src="/assets/benchmarking-dwarfs/js/rand_read.js"></script>
|
||||
<script src="/assets/benchmarking-dwarfs/js/seq_latency.js"></script>
|
||||
<script src="/assets/benchmarking-dwarfs/js/rand_latency.js"></script>
|
||||
<section id="footnotes"
|
||||
class="footnotes footnotes-end-of-document" role="doc-endnotes">
|
||||
<hr />
|
||||
|
@ -144,8 +160,7 @@
|
|||
generates regular polygons and writes their data to a file. I
|
||||
chose this because it was an artificial and reproducible yet
|
||||
fairly compressible dataset (without being extremely
|
||||
compressible like null data).<br />
|
||||
|
||||
compressible like null data).
|
||||
<details open>
|
||||
<summary>
|
||||
3-sided regular polygon data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue