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/ai/mcp.mdx
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,11 +153,14 @@ You can also request your search uses other Meilisearch features such as filters
153
153
Search the "products" index for "chair" where the price is less than 200 and the category is "Furniture". Sort results by price in ascending order.
154
154
```
155
155
156
-
<Capsule intent="warning" title="Important note about LLM limitation">
156
+
<Warning>
157
+
158
+
### Important note about LLM limitation
159
+
157
160
Large Language Models like Claude tend to say "yes" to most requests, even if they can't actually perform them.
158
161
159
162
Claude can only perform actions that are exposed through the Meilisearch API and implemented in the MCP server. If you're unsure whether a particular operation is possible, refer to the [Meilisearch documentation](https://docs.meilisearch.com) and the [MCP server README](https://github.com/meilisearch/meilisearch-mcp).
description: This guide walks you through implementing a sharding strategy by activating the `/network` route, configuring the network object, and performing remote federated searches.
Sharding is the process of splitting an index containing many documents into multiple smaller indexes, often called shards. This horizontal scaling technique is useful when handling large databases. In Meilisearch, the best way to implement a sharding strategy is to use remote federated search.
9
11
10
12
This guide walks you through activating the `/network` route, configuring the network object, and performing remote federated searches.
To minimize issues and limit unexpected behavior, instance, network, and index configuration should be identical for all shards. This guide describes the individual steps you must take on a single instance and assumes you will replicate them across all instances.
Copy file name to clipboardExpand all lines: learn/self_hosted/configure_meilisearch_at_launch.mdx
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -249,11 +249,13 @@ Migrates the database to a new Meilisearch version after you have manually updat
249
249
250
250
[Learn more about updating Meilisearch to a new release](/learn/update_and_migration/updating).
251
251
252
-
<Capsuleintent="danger"title="Create a snapshot before a dumpless upgrade">
252
+
<Warning>
253
+
#### Create a snapshot before a dumpless upgrade
254
+
253
255
Take a snapshot of your instance before performing a dumpless upgrade.
254
256
255
257
Dumpless upgrade are not currently atomic. It is possible some processes fail and Meilisearch still finalizes the upgrade. This may result in a corrupted database and data loss.
Copy file name to clipboardExpand all lines: learn/update_and_migration/updating.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
@@ -156,9 +156,9 @@ Meilisearch should launch normally and immediately create a new `UpgradeDatabase
156
156
157
157
While the task is processing, you may continue making search queries. You may also enqueue new tasks. Meilisearch will only process new tasks once `UpgradeDatabase` is completed.
158
158
159
-
<Capsuleintent="warning">
159
+
<Warning>
160
160
If after the upgrade is completed the task status is set to `failed` or Meilisearch returns internal error messages to your queries, [restart your instance from the snapshot](/learn/advanced/snapshots#starting-from-a-snapshot) you generated during step 1. You may then retry the upgrade, or upgrade using a dump. You are also welcome to open an issue on the [Meilisearch repository](https://github.com/meilisearch/meilisearch).
This endpoint will not work without first explicitly adding attributes to the [`filterableAttributes`](/reference/api/settings#update-filterable-attributes) list. [Learn more about facets in our dedicated guide.](/learn/filtering_and_sorting/search_with_facet_filters)
0 commit comments