From 94ebf25af362e4160dac53682691766f0431b024 Mon Sep 17 00:00:00 2001 From: "Sokhuong U." <77433349+sokhuong-uon@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:49:48 +0700 Subject: [PATCH 1/2] Fix typo in learn/resources/known_limitations - Update and word order in `Maximum number of concurrent search requests` section. - Update wording in `Facet Search limitation` section. --- learn/resources/known_limitations.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learn/resources/known_limitations.mdx b/learn/resources/known_limitations.mdx index 980b82567..9535d0cf6 100644 --- a/learn/resources/known_limitations.mdx +++ b/learn/resources/known_limitations.mdx @@ -64,7 +64,7 @@ If your query is `Hello - World`: ## Maximum number of concurrent search requests -**Limitation:** Meilisearch handles a maximum of concurrent 1000 search requests. +**Limitation:** Meilisearch handles a maximum of 1000 concurrent search requests. **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). @@ -160,4 +160,4 @@ user = 1 OR (user = 2 AND user = 3) OR (user = 4 AND user = 5) OR user = 6 **Limitation:** When [searching for facet values](/reference/api/facet_search), Meilisearch returns a maximum of 100 facets. -**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as `maxValuesPerFacet` limit the have no impact in facet search and only affect queries searching through documents. +**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as `maxValuesPerFacet` limit do not impact facet search and only affect queries searching through documents. From 7fa70cefc47ea26d682dd1e2850c1de59ae1c1aa Mon Sep 17 00:00:00 2001 From: gui machiavelli Date: Tue, 3 Sep 2024 16:35:10 +0200 Subject: [PATCH 2/2] Update learn/resources/known_limitations.mdx --- learn/resources/known_limitations.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn/resources/known_limitations.mdx b/learn/resources/known_limitations.mdx index 9535d0cf6..d76c13b66 100644 --- a/learn/resources/known_limitations.mdx +++ b/learn/resources/known_limitations.mdx @@ -160,4 +160,4 @@ user = 1 OR (user = 2 AND user = 3) OR (user = 4 AND user = 5) OR user = 6 **Limitation:** When [searching for facet values](/reference/api/facet_search), Meilisearch returns a maximum of 100 facets. -**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as `maxValuesPerFacet` limit do not impact facet search and only affect queries searching through documents. +**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as the `maxValuesPerFacet` limit do not impact facet search and only affect queries searching through documents.