Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Instance Options #119

Merged
merged 29 commits into from
Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
482fe3c
Add instance options spec
curquiza Mar 1, 2022
c568872
Update text/0119-instance-options.md
curquiza Mar 2, 2022
230a45a
Update text/0119-instance-options.md
curquiza Mar 2, 2022
00b3657
Update text/0119-instance-options.md
curquiza Mar 2, 2022
484be3a
Update text/0119-instance-options.md
curquiza Mar 2, 2022
1fe1626
Update text/0119-instance-options.md
curquiza Mar 2, 2022
18eee59
Update text/0119-instance-options.md
curquiza Mar 2, 2022
e9f8f35
Update text/0119-instance-options.md
curquiza Mar 2, 2022
ddca5e3
Update text/0119-instance-options.md
curquiza Mar 2, 2022
8b35eb5
Update text/0119-instance-options.md
curquiza Mar 2, 2022
f054ede
Numeric title + add dump options
curquiza Mar 2, 2022
cf6adf0
Add link to dump spec
curquiza Mar 2, 2022
8d9b05e
Update text/0119-instance-options.md
curquiza Mar 2, 2022
b0aecc9
Update text/0119-instance-options.md
curquiza Mar 2, 2022
bcc5326
Add title numerotations
gmourier Mar 2, 2022
ccdfdd9
Add telemetry for new options
gmourier Mar 2, 2022
5810307
Apply changes after the review
curquiza Mar 7, 2022
6b7822d
Update text/0119-instance-options.md
curquiza Mar 8, 2022
208f1c4
Update text/0119-instance-options.md
curquiza Mar 8, 2022
3ea4a73
Update text/0119-instance-options.md
curquiza Mar 8, 2022
b86936a
Update text/0119-instance-options.md
curquiza Mar 9, 2022
798c201
Change naming after the review
curquiza Mar 9, 2022
83cfaac
Update text/0034-telemetry-policies.md
curquiza Mar 9, 2022
ba7e247
Update text/0034-telemetry-policies.md
curquiza Mar 9, 2022
6a7a146
Update text/0034-telemetry-policies.md
curquiza Mar 9, 2022
b150f2a
Update text/0034-telemetry-policies.md
curquiza Mar 9, 2022
8f4a4ef
Apply suggestions from code review
gmourier Mar 10, 2022
5522f6e
Update text/0119-instance-options.md
gmourier Mar 10, 2022
2aa7dd4
Update text/0119-instance-options.md
gmourier Mar 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion text/0034-telemetry-policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ The collected data is sent to [Segment](https://segment.com/). Segment is a plat
| `infos.enable_auto_batching` | `true` if `--enable-auto-batching` is specified to true, otherwise `false` | `true` | Every Hour |
| `infos.max_batch_size` | Value of `--max-batch-size` in integer, otherwise `null` | 1000 | Every Hour |
| `infos.max_documents_per_batch` | Value of `--max-documents-per-batch` in integer, otherwise `null` | 1000 | Every Hour |
| `infos.debounce_duration_sec` | Value of `--debounce-duration-sec` in seconds, otherwise `0` | 3600 | Every Hour |
| `infos.debounce_duration_sec` | Value of `--debounce-duration-sec` in seconds, otherwise `0` | 3600 | Every Hour |
| `infos.log_level` | Value of `--log-level`/`MEILI_LOG_LEVEL` | debug | Every Hour |
| `infos.max_indexing_memory` | Value of `--max-indexing-memory`/`MEILI_MAX_INDEXING_MEMORY` in bytes | 336042103 | Every Hour |
| `infos.max_indexing_threads` | Value of `--max-indexing-threads`/`MEILI_MAX_INDEXING_THREADS` in integer | 4 | Every Hour |
| `system.distribution` | Distribution on which MeiliSearch is launched | Arch Linux | Every hour |
| `system.kernel_version` | Kernel version on which MeiliSearch is launched | 5.14.10 | Every hour |
| `system.cores` | Number of cores | 24 | Every hour |
Expand Down Expand Up @@ -161,6 +163,8 @@ This property allows us to gather essential information to better understand on
| infos.max_documents_per_batch | Value of `--max-documents-per-batch` in integer, otherwise `null` | `1000` |
| infos.debounce_duration_sec | Value of `--debounce-duration-sec`in seconds, otherwise `0` | `3600` |
| infos.log_level | Value of `--log-level`/`MEILI_LOG_LEVEL` | `debug` |
| infos.max_indexing_memory | Value of `--max-indexing-memory`/`MEILI_MAX_INDEXING_MEMORY` in bytes | `336042103` |
| infos.max_indexing_threads | Value of `--max-indexing-threads`/`MEILI_MAX_INDEXING_THREADS` in integer | `4` |

##### MeiliSearch Statistics `stats`

Expand Down
Loading