diff --git a/artifacts/2022-09-24-s3billion/plot.R b/artifacts/2022-09-24-s3billion/plot.R index e6997b0..b600771 100644 --- a/artifacts/2022-09-24-s3billion/plot.R +++ b/artifacts/2022-09-24-s3billion/plot.R @@ -4,6 +4,8 @@ read_csv("garage-v0.8-beta2-lmdb.csv") %>% mutate(batch_dur_sec = batch_dur_nano ggplot(s, aes(x=total_objects, y=batch_dur_sec)) + geom_point() + geom_smooth(method = "gam", se = FALSE) + + scale_x_continuous(expand=c(0,0), breaks = scales::pretty_breaks(n = 10))+ + scale_y_continuous(expand=c(0,0), breaks = scales::pretty_breaks(n = 10))+ labs( y="Time (in sec) spent sending a batch (8192 objects)", x="Total number of objects stored in the cluster", diff --git a/artifacts/2022-09-24-s3billion/plot.png b/artifacts/2022-09-24-s3billion/plot.png index da41317..4cc7aa4 100644 Binary files a/artifacts/2022-09-24-s3billion/plot.png and b/artifacts/2022-09-24-s3billion/plot.png differ