MeiliSearch/benchmarks/README.md

117 lines
3.3 KiB
Markdown
Raw Normal View History

Benchmarks
==========
2021-05-26 15:57:22 +02:00
## TOC
- [Run the benchmarks](#run-the-benchmarks)
- [Comparison between benchmarks](#comparison-between-benchmarks)
2021-06-07 17:29:22 +02:00
- [Datasets](#datasets)
2021-05-26 15:57:22 +02:00
## Run the benchmarks
### On our private server
The Meili team has self-hosted his own GitHub runner to run benchmarks on our dedicated bare metal server.
To trigger the benchmark workflow:
- Go to the `Actions` tab of this repository.
- Select the `Benchmarks` workflow on the left.
- Click on `Run workflow` in the blue banner.
- Select the branch on which you want to run the benchmarks and select the dataset you want (default: `songs`).
- Finally, click on `Run workflow`.
This GitHub workflow will run the benchmarks and push the `critcmp` report to a DigitalOcean Space (= S3).
2021-06-01 16:37:57 +02:00
The name of the uploaded file is displayed in the workflow.
2021-05-26 15:57:22 +02:00
_[More about critcmp](https://github.com/BurntSushi/critcmp)._
2021-06-01 16:37:57 +02:00
💡 To compare the just-uploaded benchmark with another one, check out the [next section](#comparison-between-benchmarks).
2021-05-26 15:57:22 +02:00
### On your machine
2021-07-07 11:42:14 +02:00
To run all the benchmarks (~5h):
2021-05-26 15:57:22 +02:00
```bash
cargo bench
```
2021-07-07 11:42:14 +02:00
To run only the `songs` (~1h), `wiki` (~3h) or `indexing` (~4h) benchmark:
2021-05-26 15:57:22 +02:00
```bash
cargo bench --bench <dataset name>
```
2021-05-26 15:57:22 +02:00
By default, the benchmarks will be downloaded and uncompressed automatically in the target directory.<br>
If you don't want to download the datasets every time you update something on the code, you can specify a custom directory with the environment variable `MILLI_BENCH_DATASETS_PATH`:
```bash
mkdir ~/datasets
2021-07-07 11:42:14 +02:00
MILLI_BENCH_DATASETS_PATH=~/datasets cargo bench --bench songs # the three datasets are downloaded
touch build.rs
MILLI_BENCH_DATASETS_PATH=~/datasets cargo bench --bench songs # the code is compiled again but the datasets are not downloaded
```
2021-05-26 15:57:22 +02:00
## Comparison between benchmarks
The benchmark reports we push are generated with `critcmp`. Thus, we use `critcmp` to generate comparison results between 2 benchmarks.
We provide a script to download and display the comparison report.
Requirements:
2021-06-01 16:37:57 +02:00
- `grep`
- `curl`
2021-05-26 15:57:22 +02:00
- [`critcmp`](https://github.com/BurntSushi/critcmp)
List the available file in the DO Space:
```bash
2021-06-01 16:37:57 +02:00
./benchmarks/script/list.sh
2021-05-26 15:57:22 +02:00
```
```bash
2021-06-01 18:57:35 +02:00
songs_main_09a4321.json
songs_geosearch_24ec456.json
2021-05-26 15:57:22 +02:00
```
Run the comparison script:
```bash
2021-06-01 16:37:57 +02:00
./benchmarks/scripts/compare.sh songs_main_09a4321.json songs_geosearch_24ec456.json
2021-05-26 15:57:22 +02:00
```
2021-06-07 14:29:20 +02:00
## Datasets
The benchmarks are available for the following datasets:
- `songs`
- `wiki`
2021-07-07 11:42:14 +02:00
- `movies`
2021-06-07 14:29:20 +02:00
### Songs
2021-06-08 18:18:54 +02:00
`songs` is a subset of the [`songs.csv` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/songs.csv.gz).
2021-06-07 14:29:20 +02:00
It was generated with this command:
```bash
xsv sample --seed 42 1000000 songs.csv -o smol-songs.csv
```
2021-06-08 18:18:54 +02:00
_[Download the generated `songs` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/smol-songs.csv.gz)._
2021-06-07 14:29:20 +02:00
### Wiki
2021-06-08 18:18:54 +02:00
`wiki` is a subset of the [`wikipedia-articles.csv` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/wiki-articles.csv.gz).
2021-06-07 14:29:20 +02:00
It was generated with the following command:
```bash
xsv sample --seed 42 500000 wiki-articles.csv -o smol-wiki-articles.csv
```
2021-07-07 11:42:14 +02:00
### Movies
`movies` is a really small dataset we uses as our example in the [getting started](https://docs.meilisearch.com/learn/getting_started/)
_[Download the `movies` dataset](https://docs.meilisearch.com/movies.json)._
2021-06-07 14:29:20 +02:00