Commit Graph

49 Commits

Author SHA1 Message Date
Clémentine Urquizar 8a959da120
Update MeiliSearch into Meilisearch everywhere 2022-01-26 17:43:16 +01:00
mpostma 0c1a3d59eb fix no-analytics 2022-01-20 11:50:24 +01:00
mpostma f6d53e03f1 chore(http): migrate from structopt to clap3 2022-01-12 14:07:19 +01:00
Clément Renault 8c9e51e94f
Make sure that we can also specify the no-analytics flags with a boolean 2021-12-08 11:23:21 +01:00
many ffefd0caf2
feat(auth): API keys
implements:
https://github.com/meilisearch/specifications/blob/develop/text/0085-api-keys.md

- Add tests on API keys management route (meilisearch-http/tests/auth/api_keys.rs)
- Add tests checking authorizations on each meilisearch routes (meilisearch-http/tests/auth/authorization.rs)
- Implement API keys management routes (meilisearch-http/src/routes/api_key.rs)
- Create module to manage API keys and authorizations (meilisearch-auth)
- Reimplement GuardedData to extend authorizations (meilisearch-http/src/extractors/authentication/mod.rs)
- Change X-MEILI-API-KEY by Authorization Bearer (meilisearch-http/src/extractors/authentication/mod.rs)
- Change meilisearch routes to fit to the new authorization feature (meilisearch-http/src/routes/)

- close #1867
2021-12-06 09:52:41 +01:00
Clémentine Urquizar a1227648ba
Remove email address from the message at the launch 2021-11-11 14:36:45 +01:00
Tamo bd49d1c4b5
fix one small bug 2021-10-29 17:25:56 +02:00
marin postma 2665c0099d
clippy + fmt 2021-10-29 17:25:56 +02:00
marin postma d65f055030
pass anaytics into Arc instead of static ref 2021-10-29 17:25:55 +02:00
Tamo 66d87761b7
align the parameters in the launche resume 2021-10-29 17:25:55 +02:00
Tamo 72e3adc55e
display an instance-id instead of a user-id 2021-10-29 17:25:54 +02:00
Tamo 6b34318274
makes clippy happy 2021-10-29 17:25:52 +02:00
Irevoire 9e1bba40f7
do not print anything if no user id was found 2021-10-29 17:25:48 +02:00
Tamo d72c887422
makes the analytics available for all the routes 2021-10-29 17:25:47 +02:00
Tamo 664d09e86a
makes the analytics works with the option and the feature 2021-10-29 17:25:47 +02:00
Tamo e226b1a87f
rewrite the main analytics module and the information sent in the tick 2021-10-29 17:25:42 +02:00
many b4038597ba
Keep persisting tmp files in database directory and put non-persisting tmp files in default tmp dir 2021-10-18 14:16:35 +02:00
bors[bot] 5fad37aebd
Merge #1711
1711: MeiliSearch refactor introducing OBKV format r=MarinPostma a=MarinPostma

This PR refactor some multiple components of meilisearch, and introduce the obkv document format to meilisearch

- [x] Split meilisearch-http and meilisearch-lib
- [x] Replace `IndexActor` and `UuidResolver` with `IndexResolver`
- [x] Remove mentions to Actor
- [x] Remove Actor traits to simplify code
- [x] Integrate obkv document format
- [x] Remove `Data`
- [x] Restore all route
- [x] Replace `Box<dyn error>` with `anyhow::Error`
- [x] Introduce update file store
- [x] Update file store error handling
- [x] Fix dumps
- [x] Fix snapshots
- [x] Fix tests
- [x] Update module documentation
- [x] add csv suppport (feat `@ManyTheFish` #1729 )
- [x] add jsonl support
- [x] integrate geosearch (feat `@irevoire` #1725) 

partially implements #1691 and #1690. The error handling is very basic now, I will finish it in the next pr.

Some unit tests have been disabled, I will re-enable them ASAP, but they need a bit more work.

close #1531 


P.S: sorry for this monstrous PR :'(

Co-authored-by: mpostma <postma.marin@protonmail.com>
Co-authored-by: Tamo <tamo@meilisearch.com>
Co-authored-by: many <maxime@meilisearch.com>
2021-09-29 14:38:55 +00:00
mpostma 102c46f88b clippy + fmt 2021-09-28 22:22:59 +02:00
mpostma 692c676625 fix tests 2021-09-28 18:57:36 +02:00
mpostma 90018755c5 restore snapshots 2021-09-27 16:48:03 +02:00
mpostma 60518449fc split meilisearch-http and meilisearch-lib 2021-09-21 13:23:22 +02:00
mpostma 09d4e37044 split data and api keys 2021-09-20 15:31:03 +02:00
mpostma e14640e530 refactor meilisearch 2021-09-20 14:54:20 +02:00
Felix Yan a57943b77e
Use tikv-jemallocator instead of jemallocator
`jemallocator` has been abandoned for nearly two years, and `rustc`
itself moved to use `tikv-jemallocator` instead:
3965773ae7

Let's switch to a better maintained version.
2021-09-14 18:30:24 +03:00
bors[bot] 19c5c74291
Merge #1652 #1654 #1657
1652: Remove dependabot r=MarinPostma a=curquiza

Fixes #1649 

Dependabot for vulnerability and security updates is still activated.

1654: Add Script for Windows r=MarinPostma a=singh08prashant

fixes #1570 

changes:

1. added script for detecting windows os running git bash
2. appended `.exe` to `$release_file` for windows as listed [here](https://github.com/meilisearch/MeiliSearch/releases/)
3. removed global `$BINARY_NAME='meilisearch'` as windows require `.exe` file

1657: Bring vergen hotfix from `stable` to `main` r=MarinPostma a=curquiza



Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com>
Co-authored-by: singh08prashant <singh08prashant@gmail.com>
Co-authored-by: Kerollmops <clement@meilisearch.com>
Co-authored-by: bors[bot] <26634292+bors[bot]@users.noreply.github.com>
2021-08-31 14:31:42 +00:00
Kerollmops 9d0fa8112b
Remove unused Arc import 2021-08-31 14:50:36 +02:00
Kerollmops a8c146fd13
Unwrap or unknown the commit hash 2021-08-30 17:41:24 +02:00
Irevoire 672fcee8aa
remove sentry 2021-08-24 12:38:31 +02:00
Clémentine Urquizar 621529e9dc
Update telemetry link 2021-08-12 18:58:07 +02:00
Clémentine Urquizar 992b082c6f
Fix docs link anchor 2021-08-05 13:28:32 +02:00
Tamo 243233f652
import .git to docker to fix vergen 2021-07-28 19:12:40 +02:00
Tamo f79b8287f5
update vergen 2021-07-26 15:25:30 +02:00
Tamo 5d4a0ac844
sentry was never sending anything 2021-07-21 11:50:54 +02:00
Tamo d74c698adc
stop logging the no space left on device error 2021-06-28 13:59:48 +02:00
Tamo 36f32f58d4
add the log_level variable to the cli and reduce the log level of milli and grenad 2021-06-24 11:20:52 +02:00
marin postma 834995b130
clippy + fmt 2021-06-23 16:49:23 +02:00
marin postma 71226feb74
refactor create_app macro 2021-06-23 16:47:15 +02:00
marin postma 02277ec2cf
reintroduce anyhow 2021-06-21 12:11:06 +02:00
Tamo 4e2568fd6e
disable amplitude on debug build 2021-06-16 17:12:49 +02:00
Irevoire c0d169e79e
Apply suggestions from code review
Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com>
2021-06-16 11:12:46 +02:00
Tamo def1596eaf
Integrate amplitude
And merge the sentry and amplitude usage under one “Enable analytics”
flag
2021-06-15 15:36:30 +02:00
tamo dffbaca63b
bump sentry version 2021-05-31 13:59:31 +02:00
Marin Postma c2461e5066
review fixes 2021-04-26 10:20:46 +02:00
Marin Postma 6bcf20c70e
serve static site 2021-04-22 10:26:54 +02:00
Alexey Shekhirin f87afbc558
fix(http): commit date & SHA in startup message 2021-04-13 20:16:18 +03:00
Clémentine Urquizar b9f79c8df0
Update display 2021-03-26 12:12:55 +01:00
mpostma dd324807f9
last review edits + fmt 2021-03-15 18:11:10 +01:00
mpostma 5ecf514d28
restructure project 2021-03-10 13:46:49 +01:00