Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file modified assets/images/cloud-tasks-tutorial/02-tasks-table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/images/security/01-master-api-keys.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions learn/async/working_with_tasks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ Meilisearch processes tasks in the order they were added to the queue. You can c

### Monitoring task status in the Meilisearch Cloud interface

Log into your [Meilisearch Cloud](https://meilisearch.com/cloud?utm_campaign=oss&utm_source=docs&utm_medium=tasks-tutorial) account and navigate to your project. Click the "Tasks" link in the project menu:
Log into your [Meilisearch Cloud](https://meilisearch.com/cloud) account and navigate to your project. Click the "Tasks" link in the project menu:

![Meilisearch Cloud menu with "Tasks" highlighted](/assets/images/cloud-tasks-tutorial/01-tasks-menu.png)

This will lead you to the task overview. Look for your request's `taskUid` in the "Uid" column:
This will lead you to the task overview, which shows a list of all batches enqueued, processing, and completed in your project:

![A table listing multiple Meilisearch Cloud tasks](/assets/images/cloud-tasks-tutorial/02-tasks-table.png)

When the task `status` changes to `succeeded`, Meilisearch has finished processing your request.
All Meilisearch tasks are processed in batches. When the batch containing your task changes its `status` to `succeeded`, Meilisearch has finished processing your request.

If the task `status` changes to `failed`, Meilisearch was not able to fulfill your request. Check the task object's `error` field for more information.
If the `status` changes to `failed`, Meilisearch was not able to fulfill your request. Check the object's `error` field for more information.

### Monitoring task status with the Meilisearch API

Expand Down
6 changes: 3 additions & 3 deletions learn/security/basic_security.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ The master key is the first and most important step to secure your Meilisearch p

Meilisearch Cloud automatically generates a master key for each project. This means Meilisearch Cloud projects are secure by default.

You can view your master key by visiting your project overview:
You can view your master key by visiting your project settings, then clicking "API Keys" on the sidebar:

<Frame>
<img src="/assets/images/security/01-master-api-keys.png" alt="An interface element named 'API keys' showing three obscured keys: 'Master key', 'Default Search API Key', and 'Default Admin API Key'" />
<img src="/assets/images/security/01-master-api-keys.png" alt="An interface element named 'API keys' showing obscured security keys including: 'Master key', 'Default Search API Key', and 'Default Admin API Key'" />
</Frame>

### Creating the master key in a self-hosted instance
Expand Down Expand Up @@ -87,7 +87,7 @@ When your project is protected, Meilisearch automatically generates two API keys

### Obtaining API keys in Meilisearch Cloud

Find your API keys in the same section where you previously located the master key:
Find your API keys by visiting your project settings, then clicking "API Keys" on the sidebar:

<Frame>
<img src="/assets/images/security/01-master-api-keys.png" alt="An interface element named 'API keys' showing three obscured keys: 'Master key', 'Default Search API Key', and 'Default Admin API Key'" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<CodeGroup>

```bash cURL
curl \
-X POST 'MEILISEARCH_URL/indexes/restaurants/search' \
-H 'Content-type:application/json' \
--data-binary '{ "filter": "_geoPolygon([45.494181, 9.214024], [45.449484, 9.179175], [45.449486, 9.179177])" }'
```
</CodeGroup>