aboutsummaryrefslogtreecommitdiff
path: root/artifacts
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2022-09-24 11:43:30 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2022-09-24 11:43:30 +0200
commitac4f100da17678435012966c067b14ae266ff278 (patch)
treecd9646c832bcef47e227ef9d891f12e468968046 /artifacts
parent0dc16e5e8071adb7599c7b2fd357206e50d35cde (diff)
downloadmknet-ac4f100da17678435012966c067b14ae266ff278.tar.gz
mknet-ac4f100da17678435012966c067b14ae266ff278.zip
Add a first warp plot
Diffstat (limited to 'artifacts')
-rw-r--r--artifacts/2022-09-23-warp/dc-garage-v0.7.zstbin0 -> 38341 bytes
-rw-r--r--artifacts/2022-09-23-warp/plot.R22
-rw-r--r--artifacts/2022-09-23-warp/plot.pngbin0 -> 193869 bytes
-rw-r--r--artifacts/2022-09-23-warp/summary.csv11
4 files changed, 33 insertions, 0 deletions
diff --git a/artifacts/2022-09-23-warp/dc-garage-v0.7.zst b/artifacts/2022-09-23-warp/dc-garage-v0.7.zst
new file mode 100644
index 0000000..b7cba52
--- /dev/null
+++ b/artifacts/2022-09-23-warp/dc-garage-v0.7.zst
Binary files differ
diff --git a/artifacts/2022-09-23-warp/plot.R b/artifacts/2022-09-23-warp/plot.R
new file mode 100644
index 0000000..f4fec0a
--- /dev/null
+++ b/artifacts/2022-09-23-warp/plot.R
@@ -0,0 +1,22 @@
+library(tidyverse)
+
+
+read_csv("summary.csv")-> s
+
+hum_names <- as_labeller(c(`obj_per_sec` = "Objects/sec", `mbyte_per_sec` = "MByte/sec"))
+
+
+ggplot(s, aes(x=value,y=config)) +
+ geom_bar(stat="identity", fill="#00BFC4", color="black") +
+ facet_wrap(~measurement,dir="v", scales = "free", labeller = hum_names) +
+ scale_x_continuous(expand=c(0,0), breaks = scales::pretty_breaks(n = 10))+
+ labs(
+ y="Daemon",
+ x="Metric",
+ caption="Get the code to reproduce this graph at https://git.deuxfleurs.fr/Deuxfleurs/mknet",
+ title="\"minio/warp\" benchmark, \"cluster total\" result",
+ subtitle="Ran on a local machine (Ryzen 5 1400, 16GB RAM, SSD) with mknet\nDC topology (3 nodes, 1GB/s, 1ms lat)\nwarp in mixed mode, 5min bench, 5MB objects, initialized with 200 objects") +
+ theme_classic()
+
+ggsave("./plot.png", width=200, height=120, units="mm")
+1 \ No newline at end of file
diff --git a/artifacts/2022-09-23-warp/plot.png b/artifacts/2022-09-23-warp/plot.png
new file mode 100644
index 0000000..f581a22
--- /dev/null
+++ b/artifacts/2022-09-23-warp/plot.png
Binary files differ
diff --git a/artifacts/2022-09-23-warp/summary.csv b/artifacts/2022-09-23-warp/summary.csv
new file mode 100644
index 0000000..21313ea
--- /dev/null
+++ b/artifacts/2022-09-23-warp/summary.csv
@@ -0,0 +1,11 @@
+config,measurement,value
+garage v0.7,mbyte_per_sec,8.60
+garage v0.7,obj_per_sec,3.02
+garage v0.8-beta1,mbyte_per_sec,12.41
+garage v0.8-beta1,obj_per_sec,4.36
+minio 20220917,mbyte_per_sec,20.22
+minio 20220917,obj_per_sec,7.11
+garage v0.8-beta2,mbyte_per_sec,14.56
+garage v0.8-beta2,obj_per_sec,5.19
+garage v0.8-no-fsync,mbyte_per_sec,17.31
+garage v0.8-no-fsync,obj_per_sec,6.11