You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/langchain.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ On Meilisearch Cloud, enable the vector store feature via your project’s Setti
20
20
21
21

22
22
23
-
If you are working with a self-hosted Meilisearch instance, activate the vector store with the [API route](/learn/experimental/vector_search#activate-vector-search).
23
+
If you are working with a self-hosted Meilisearch instance, activate the vector store with the [API route](/reference/api/experimental_features).
24
24
25
25
## Creating the application
26
26
@@ -167,4 +167,4 @@ For additional information, consult:
Finally, should you want to use Meilisearch's vector search capabilities without LangChain or its hybrid search feature, refer to the [dedicated guide](/learn/experimental/vector_search).
170
+
Finally, should you want to use Meilisearch's vector search capabilities without LangChain or its hybrid search feature, refer to the [dedicated tutorial](/learn/ai-powered-search/getting_started_with_ai_search).
|[Limit task batch size](/learn/experimental/max_number_of_batched_tasks)| Limits number of tasks processed in a single batch | At launch with a CLI flag or environment variable |
48
-
|[Log customization](/learn/experimental/log_customization)| Customize log output and set up log streams | At launch with a CLI flag or environment variable, during runtime with the API route |
49
-
|[Metrics API](/learn/experimental/metrics)| Exposes Prometheus-compatible analytics data | At launch with a CLI flag or environment variable, during runtime with the API route |
50
-
|[Reduce indexing memory usage](/learn/experimental/reduce-indexing-memory-usage)| Optimizes indexing performance | At launch with a CLI flag or environment variable |
51
-
|[Replication parameters](/learn/experimental/replication_parameters)| Alters task processing for clustering compatibility | At launch with a CLI flag or environment variable |
52
-
|[Search queue size](/learn/experimental/search_queue_size)| Configure maximum number of concurrent search requests | At launch with a CLI flag or environment variable |
53
-
|[Vector search](/learn/experimental/vector_search)| Allows Meilisearch to function as a vector embedding store | During runtime with the API route |
47
+
|[Limit task batch size](/learn/self_hosted/configure_meilisearch_at_launch)| Limits number of tasks processed in a single batch | At launch with a CLI flag or environment variable |
48
+
|[Log customization](/reference/api/logs)| Customize log output and set up log streams | At launch with a CLI flag or environment variable, during runtime with the API route |
49
+
|[Metrics API](/reference/api/metrics)| Exposes Prometheus-compatible analytics data | At launch with a CLI flag or environment variable, during runtime with the API route |
50
+
|[Reduce indexing memory usage](/learn/self_hosted/configure_meilisearch_at_launch)| Optimizes indexing performance | At launch with a CLI flag or environment variable |
51
+
|[Replication parameters](/learn/self_hosted/configure_meilisearch_at_launch)| Alters task processing for clustering compatibility | At launch with a CLI flag or environment variable |
52
+
|[Search queue size](/learn/self_hosted/configure_meilisearch_at_launch)| Configure maximum number of concurrent search requests | At launch with a CLI flag or environment variable |
53
+
|[Vector store](/learn/ai_powered_search/getting_started_with_ai_search)| Allows Meilisearch to function as a vector embedding store | During runtime with the API route |
54
54
|[`CONTAINS` filter operator](/learn/filtering_and_sorting/filter_expression_reference#contains)| Enables usage of `CONTAINS` with the `filter` search parameter | During runtime with the API route |
55
55
|[Edit documents with function](/reference/api/documents#update-documents-with-function)| Use a RHAI function to edit documents directly in the Meilisearch database | During runtime with the API route |
Copy file name to clipboardExpand all lines: learn/resources/known_limitations.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ If your query is `Hello - World`:
66
66
67
67
**Limitation:** Meilisearch handles a maximum of 1000 concurrent search requests.
68
68
69
-
**Explanation:** This limit exists to prevent Meilisearch from queueing an unlimited number of requests and potentially consuming an unbounded amount of memory. If Meilisearch receives a new request when the queue is already full, it drops a random search request and returns a 503 `too_many_search_requests` error with a `Retry-After` header set to 10 seconds. Configure this limit with [`--experimental-search-queue-size`](/learn/experimental/search_queue_size).
69
+
**Explanation:** This limit exists to prevent Meilisearch from queueing an unlimited number of requests and potentially consuming an unbounded amount of memory. If Meilisearch receives a new request when the queue is already full, it drops a random search request and returns a 503 `too_many_search_requests` error with a `Retry-After` header set to 10 seconds. Configure this limit with [`--experimental-search-queue-size`](/learn/self_hosted/configure_meilisearch_at_launch).
Copy file name to clipboardExpand all lines: reference/api/experimental_features.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,12 @@ description: The /experimental-features route allows you to manage some of Meili
5
5
6
6
# Experimental
7
7
8
-
The `/experimental-features` route allows you to activate or deactivate some of Meilisearch's [experimental features](/learn/experimental/overview).
8
+
The `/experimental-features` route allows you to activate or deactivate some of Meilisearch's [experimental features](/learn/resources/experimental_features_overview).
9
9
10
10
This route is **synchronous**. This means that no task object will be returned, and any activated or deactivated features will be made available or unavailable immediately.
11
11
12
12
<Capsuleintent="danger">
13
-
The experimental API route is not compatible with all experimental features. Consult the [experimental feature overview](/learn/experimental/overview#current-experimental-features) for a compatibility list.
13
+
The experimental API route is not compatible with all experimental features. Consult the [experimental feature overview](/learn/resources/experimental_features_overview) for a compatibility list.
Copy file name to clipboardExpand all lines: reference/errors/error_codes.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -596,7 +596,7 @@ Indexing a large batch of documents, such as a JSON file over 3.5GB in size, can
596
596
597
597
## `too_many_search_requests`
598
598
599
-
You have reached the limit of concurrent search requests. You may configure it by relaunching your instance and setting a higher value to [`--experimental-search-queue-size`](/learn/experimental/search_queue_size).
599
+
You have reached the limit of concurrent search requests. You may configure it by relaunching your instance and setting a higher value to [`--experimental-search-queue-size`](/learn/self_hosted/configure_meilisearch_at_launch).
0 commit comments