From 7e93811fbcb311cce5085f92bf0e6a507d182577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Tue, 8 Jun 2021 18:18:54 +0200 Subject: [PATCH] Update dataset links --- benchmarks/README.md | 8 ++++---- benchmarks/build.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/benchmarks/README.md b/benchmarks/README.md index e3df18db3..843ea9b29 100644 --- a/benchmarks/README.md +++ b/benchmarks/README.md @@ -87,7 +87,7 @@ The benchmarks are available for the following datasets: ### Songs -`songs` is a subset of the [`songs.csv` dataset](https://meili-datasets.s3.fr-par.scw.cloud/songs.csv.gz). +`songs` is a subset of the [`songs.csv` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/songs.csv.gz). It was generated with this command: @@ -95,11 +95,11 @@ It was generated with this command: xsv sample --seed 42 1000000 songs.csv -o smol-songs.csv ``` -_[Download the generated `songs` dataset](https://meili-datasets.s3.fr-par.scw.cloud/benchmarks/smol-songs.csv.gz)._ +_[Download the generated `songs` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/smol-songs.csv.gz)._ ### Wiki -`wiki` is a subset of the [`wikipedia-articles.csv` dataset](https://meili-datasets.s3.fr-par.scw.cloud/wiki-articles.csv.gz). +`wiki` is a subset of the [`wikipedia-articles.csv` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/wiki-articles.csv.gz). It was generated with the following command: @@ -107,5 +107,5 @@ It was generated with the following command: xsv sample --seed 42 500000 wiki-articles.csv -o smol-wiki-articles.csv ``` -_[Download the generated `wiki` dataset](https://meili-datasets.s3.fr-par.scw.cloud/benchmarks/smol-wiki-articles.csv.gz)._ +_[Download the generated `wiki` dataset](https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets/smol-wiki-articles.csv.gz)._ diff --git a/benchmarks/build.rs b/benchmarks/build.rs index dc92a1a4c..58300bab9 100644 --- a/benchmarks/build.rs +++ b/benchmarks/build.rs @@ -10,7 +10,7 @@ use convert_case::{Case, Casing}; use flate2::read::GzDecoder; use reqwest::IntoUrl; -const BASE_URL: &str = "https://meili-datasets.s3.fr-par.scw.cloud/benchmarks"; +const BASE_URL: &str = "https://milli-benchmarks.fra1.digitaloceanspaces.com/datasets"; const DATASET_SONGS: &str = "smol-songs"; const DATASET_WIKI: &str = "smol-wiki-articles";