diff --git a/learn/async/asynchronous_operations.mdx b/learn/async/asynchronous_operations.mdx index db550fabc1..f85a21bca3 100644 --- a/learn/async/asynchronous_operations.mdx +++ b/learn/async/asynchronous_operations.mdx @@ -115,12 +115,15 @@ When the task queue reaches its limit (about 10GiB), it will throw a `no_space_l Meilisearch considers certain tasks high-priority and always places them at the front of the queue. -The following types of tasks are always processed as soon as possible: +The following types of tasks are always processed as soon as possible in this order: 1. `taskCancelation` -2. `taskDeletion` -3. `snapshotCreation` -4. `dumpCreation` +2. `upgradeDatabase` +3. `taskDeletion` +4. `indexCompaction` +5. `export` +6. `snapshotCreation` +7. `dumpCreation` All other tasks are processed in the order they were enqueued.