Skip to content

Commit

Permalink
Link the result tables from the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Dec 12, 2024
1 parent 35fbadb commit ceab84d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,59 @@ This repository contains the numbers collected by diesel continuous scheduled be
#### Trivial queries

![Postgresql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/trivial_query_postgres.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_trivial_query_postgres.html)

![Sqlite](https://github.com/diesel-rs/metrics/raw/results/plots/summary/trivial_query_sqlite.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_trivial_query_sqlite.html)

![Mysql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/trivial_query_mysql.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_trivial_query_mysql.html)

#### Medium complex queries

![Postgresql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/medium_complex_query_postgres.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_medium_complex_query_postgres.html)

![Sqlite](https://github.com/diesel-rs/metrics/raw/results/plots/summary/medium_complex_query_sqlite.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_medium_complex_query_sqlite.html)

![Mysql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/medium_complex_query_mysql.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_medium_complex_query_mysql.html)

#### Associations

![Postgresql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/associations_postgres.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_loading_associations_sequentially_postgres.html)

![Sqlite](https://github.com/diesel-rs/metrics/raw/results/plots/summary/associations_sqlite.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_loading_associations_sequentially_sqlite.html)

![Mysql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/associations_mysql.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_loading_associations_sequentially_mysql.html)

#### Inserts

![Postgresql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/insert_postgres.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_insert_postgres.html)

![Sqlite](https://github.com/diesel-rs/metrics/raw/results/plots/summary/insert_sqlite.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_insert_sqlite.html)

![Mysql](https://github.com/diesel-rs/metrics/raw/results/plots/summary/insert_mysql.svg)

[Result Table](https://htmlpreview.github.io/?https://github.com/diesel-rs/metrics/blob/results/plots/table_bench_insert_mysql.html)

### Performance over time

#### Trivial queries
Expand Down
2 changes: 1 addition & 1 deletion analytics.R
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ create_plots <- function(data, backend_value, time_stamp) {
plot_facet_data(data, backend_value, time_stamp, "bench_trivial_query", "Trivial query", paste(plot_path, "summary/trivial_query_", backend_value, ".svg", sep = ""), width, height, plot_path, commit)
plot_facet_data(data, backend_value, time_stamp, "bench_medium_complex_query", "Medium complex query", paste(plot_path, "summary/medium_complex_query_", backend_value, ".svg", sep = ""), width, height, plot_path, commit)
plot_facet_data(data, backend_value, time_stamp, "bench_insert", "Insert", paste(plot_path, "summary/insert_", backend_value, ".svg", sep = ""), width, height, plot_path, commit)
plot_facet_data(data, backend_value, time_stamp, "bench_loading_associations_sequentially", "Associations", paste(plot_path, "summary/associations_", backend_value, ".svg", sep = ""), width, height, plot_path, commit)
plot_facet_data(data, backend_value, time_stamp, "bench_loading_associations_sequentially", "Associations", paste(plot_path, "summary/associations_", backend_value, ".svg", sep = ""), width, height / 5, plot_path, commit)
}

max_date = data %>% group_by(backend) %>% summarise(timestamp = max(timestamp))
Expand Down

0 comments on commit ceab84d

Please sign in to comment.