Add a first warp plot

This commit is contained in:
Quentin 2022-09-24 11:43:30 +02:00
parent 0dc16e5e80
commit ac4f100da1
Signed by: quentin
GPG Key ID: E9602264D639FF68
5 changed files with 50 additions and 2 deletions

Binary file not shown.

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

View File

@ -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
1 config measurement value
2 garage v0.7 mbyte_per_sec 8.60
3 garage v0.7 obj_per_sec 3.02
4 garage v0.8-beta1 mbyte_per_sec 12.41
5 garage v0.8-beta1 obj_per_sec 4.36
6 minio 20220917 mbyte_per_sec 20.22
7 minio 20220917 obj_per_sec 7.11
8 garage v0.8-beta2 mbyte_per_sec 14.56
9 garage v0.8-beta2 obj_per_sec 5.19
10 garage v0.8-no-fsync mbyte_per_sec 17.31
11 garage v0.8-no-fsync obj_per_sec 6.11

View File

@ -21,11 +21,26 @@ garage = grg_path({
"version": "v0.7.3",
"target": "x86_64-unknown-linux-musl",
},
"garage-v0.8": { "version": "89b8087ba81c508ba382aa6c9cb6bb3afa6a43c8", "target": "x86_64-unknown-linux-musl" },
# no rpc optimization
"garage-v0.8-beta1": {
"version": "89b8087ba81c508ba382aa6c9cb6bb3afa6a43c8",
"target": "x86_64-unknown-linux-musl"
},
# with rpc optimizations
# with fsync deactivated
"garage-v0.8-no-fsync": {
"version": "v0.8.0-dangerous-no-fsync",
"target": "x86_64-unknown-linux-musl"
},
# with rpc optimizations
"garage-v0.8-beta2": {
"version": "af2b2f26b4bd9fcdeedf2cd03f9e1392e5781abc",
"target": "x86_64-unknown-linux-musl",
}
})
warp = {
"warp-fast": "mixed --obj.size 5M --objects 200 --duration=1m",
"warp-fast": "mixed --obj.size 5M --objects 200 --duration=5m",
"warp-default": "mixed"
}