mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-15 13:58:36 +02:00
Merge pull request #5737 from meilisearch/request-fragments-dumpless-upgrade
Fix the dumpless upgrade from v1.15 to v1.16 for request fragments
This commit is contained in:
commit
511c48f520
20 changed files with 1287 additions and 967 deletions
|
@ -61,7 +61,16 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"pagination": {
|
"pagination": {
|
||||||
"maxTotalHits": 15
|
"maxTotalHits": 15
|
||||||
},
|
},
|
||||||
"embedders": {},
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"pooling": "forceMean",
|
||||||
|
"documentTemplate": "{{doc.description}}",
|
||||||
|
"documentTemplateMaxBytes": 400
|
||||||
|
}
|
||||||
|
},
|
||||||
"searchCutoffMs": 8000,
|
"searchCutoffMs": 8000,
|
||||||
"localizedAttributes": [
|
"localizedAttributes": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
|
---
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"name": "kefir",
|
||||||
|
"surname": [
|
||||||
|
"kef",
|
||||||
|
"kefkef",
|
||||||
|
"kefirounet",
|
||||||
|
"boubou"
|
||||||
|
],
|
||||||
|
"age": 1.4,
|
||||||
|
"description": "kefir est un petit chien blanc très mignon",
|
||||||
|
"_vectors": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"embeddings": "[vector]",
|
||||||
|
"regenerate": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"name": "intel",
|
||||||
|
"surname": [
|
||||||
|
"untel",
|
||||||
|
"tétel",
|
||||||
|
"iouiou"
|
||||||
|
],
|
||||||
|
"age": 11.5,
|
||||||
|
"description": "intel est un grand beagle très mignon",
|
||||||
|
"_vectors": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"embeddings": "[vector]",
|
||||||
|
"regenerate": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
|
@ -4,7 +4,7 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 30,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
"details": {
|
"details": {
|
||||||
"upgradeFrom": "v1.12.0",
|
"upgradeFrom": "v1.12.0",
|
||||||
|
@ -26,6 +26,155 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"finishedAt": "[date]",
|
"finishedAt": "[date]",
|
||||||
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"indexDeletion": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"failed": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 24,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"settingsUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 23,
|
"uid": 23,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
|
@ -348,179 +497,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
||||||
"batchStrategy": "unspecified"
|
"batchStrategy": "unspecified"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 5,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"stopWords": [
|
|
||||||
"le",
|
|
||||||
"un"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.016307263S",
|
|
||||||
"startedAt": "2025-01-16T16:53:19.913351957Z",
|
|
||||||
"finishedAt": "2025-01-16T16:53:19.92965922Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 23,
|
"total": 29,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 24,
|
"from": 30,
|
||||||
"next": 4
|
"next": 10
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 30,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
"details": {
|
"details": {
|
||||||
"upgradeFrom": "v1.12.0",
|
"upgradeFrom": "v1.12.0",
|
||||||
|
@ -26,6 +26,155 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"finishedAt": "[date]",
|
"finishedAt": "[date]",
|
||||||
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"indexDeletion": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"failed": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 24,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"settingsUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 23,
|
"uid": 23,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
|
@ -348,179 +497,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
||||||
"batchStrategy": "unspecified"
|
"batchStrategy": "unspecified"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 5,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"stopWords": [
|
|
||||||
"le",
|
|
||||||
"un"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.016307263S",
|
|
||||||
"startedAt": "2025-01-16T16:53:19.913351957Z",
|
|
||||||
"finishedAt": "2025-01-16T16:53:19.92965922Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 23,
|
"total": 29,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 24,
|
"from": 30,
|
||||||
"next": 4
|
"next": 10
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 30,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
"details": {
|
"details": {
|
||||||
"upgradeFrom": "v1.12.0",
|
"upgradeFrom": "v1.12.0",
|
||||||
|
@ -26,6 +26,155 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"finishedAt": "[date]",
|
"finishedAt": "[date]",
|
||||||
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"indexDeletion": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"failed": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 24,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"settingsUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 23,
|
"uid": 23,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
|
@ -348,179 +497,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
"finishedAt": "2025-01-16T17:01:14.120064527Z",
|
||||||
"batchStrategy": "unspecified"
|
"batchStrategy": "unspecified"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 5,
|
|
||||||
"progress": null,
|
|
||||||
"details": {
|
|
||||||
"stopWords": [
|
|
||||||
"le",
|
|
||||||
"un"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"stats": {
|
|
||||||
"totalNbTasks": 1,
|
|
||||||
"status": {
|
|
||||||
"succeeded": 1
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"settingsUpdate": 1
|
|
||||||
},
|
|
||||||
"indexUids": {
|
|
||||||
"kefir": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"duration": "PT0.016307263S",
|
|
||||||
"startedAt": "2025-01-16T16:53:19.913351957Z",
|
|
||||||
"finishedAt": "2025-01-16T16:53:19.92965922Z",
|
|
||||||
"batchStrategy": "unspecified"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 23,
|
"total": 29,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 24,
|
"from": 30,
|
||||||
"next": 4
|
"next": 10
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 25,
|
"uid": 31,
|
||||||
"batchUid": 24,
|
"batchUid": 30,
|
||||||
"indexUid": null,
|
"indexUid": null,
|
||||||
"status": "succeeded",
|
"status": "succeeded",
|
||||||
"type": "upgradeDatabase",
|
"type": "upgradeDatabase",
|
||||||
|
@ -20,6 +20,118 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "[date]",
|
"startedAt": "[date]",
|
||||||
"finishedAt": "[date]"
|
"finishedAt": "[date]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 30,
|
||||||
|
"batchUid": 29,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:43:08.772432Z",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"batchUid": 28,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "indexDeletion",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:50.744793Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"batchUid": 27,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "failed",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"message": "Index `kefir`: Bad embedder configuration in the document with id: `2`. Could not parse `._vectors.doggo_embedder`: trailing characters at line 1 column 13",
|
||||||
|
"code": "invalid_vectors_type",
|
||||||
|
"type": "invalid_request",
|
||||||
|
"link": "https://docs.meilisearch.com/errors#invalid_vectors_type"
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:15.624598Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"batchUid": 26,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:40:01.46081Z",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"batchUid": 25,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:32:46.13871Z",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"batchUid": 24,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "settingsUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:28:27.390054Z",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 24,
|
||||||
"batchUid": 23,
|
"batchUid": 23,
|
||||||
|
@ -264,134 +376,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
||||||
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
||||||
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 11,
|
|
||||||
"batchUid": 11,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"searchCutoffMs": 8000
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007307840S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:01:14.100316617Z",
|
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"batchUid": 10,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:29.188815062Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"batchUid": 9,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:15.759501709Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"batchUid": 8,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:59:42.727292501Z",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"batchUid": 7,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:58:41.203145044Z",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"batchUid": 6,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:54:51.927866243Z",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 24,
|
"total": 30,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 25,
|
"from": 31,
|
||||||
"next": 5
|
"next": 11
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 25,
|
"uid": 31,
|
||||||
"batchUid": 24,
|
"batchUid": 30,
|
||||||
"indexUid": null,
|
"indexUid": null,
|
||||||
"status": "succeeded",
|
"status": "succeeded",
|
||||||
"type": "upgradeDatabase",
|
"type": "upgradeDatabase",
|
||||||
|
@ -20,6 +20,118 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "[date]",
|
"startedAt": "[date]",
|
||||||
"finishedAt": "[date]"
|
"finishedAt": "[date]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 30,
|
||||||
|
"batchUid": 29,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:43:08.772432Z",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"batchUid": 28,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "indexDeletion",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:50.744793Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"batchUid": 27,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "failed",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"message": "Index `kefir`: Bad embedder configuration in the document with id: `2`. Could not parse `._vectors.doggo_embedder`: trailing characters at line 1 column 13",
|
||||||
|
"code": "invalid_vectors_type",
|
||||||
|
"type": "invalid_request",
|
||||||
|
"link": "https://docs.meilisearch.com/errors#invalid_vectors_type"
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:15.624598Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"batchUid": 26,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:40:01.46081Z",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"batchUid": 25,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:32:46.13871Z",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"batchUid": 24,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "settingsUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:28:27.390054Z",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 24,
|
||||||
"batchUid": 23,
|
"batchUid": 23,
|
||||||
|
@ -264,134 +376,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
||||||
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
||||||
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 11,
|
|
||||||
"batchUid": 11,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"searchCutoffMs": 8000
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007307840S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:01:14.100316617Z",
|
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"batchUid": 10,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:29.188815062Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"batchUid": 9,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:15.759501709Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"batchUid": 8,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:59:42.727292501Z",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"batchUid": 7,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:58:41.203145044Z",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"batchUid": 6,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:54:51.927866243Z",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 24,
|
"total": 30,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 25,
|
"from": 31,
|
||||||
"next": 5
|
"next": 11
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 25,
|
"uid": 31,
|
||||||
"batchUid": 24,
|
"batchUid": 30,
|
||||||
"indexUid": null,
|
"indexUid": null,
|
||||||
"status": "succeeded",
|
"status": "succeeded",
|
||||||
"type": "upgradeDatabase",
|
"type": "upgradeDatabase",
|
||||||
|
@ -20,6 +20,118 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "[date]",
|
"startedAt": "[date]",
|
||||||
"finishedAt": "[date]"
|
"finishedAt": "[date]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 30,
|
||||||
|
"batchUid": 29,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:43:08.772432Z",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"batchUid": 28,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "indexDeletion",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:50.744793Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"batchUid": 27,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "failed",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"message": "Index `kefir`: Bad embedder configuration in the document with id: `2`. Could not parse `._vectors.doggo_embedder`: trailing characters at line 1 column 13",
|
||||||
|
"code": "invalid_vectors_type",
|
||||||
|
"type": "invalid_request",
|
||||||
|
"link": "https://docs.meilisearch.com/errors#invalid_vectors_type"
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:15.624598Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"batchUid": 26,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:40:01.46081Z",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"batchUid": 25,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:32:46.13871Z",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"batchUid": 24,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "settingsUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:28:27.390054Z",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 24,
|
||||||
"batchUid": 23,
|
"batchUid": 23,
|
||||||
|
@ -264,134 +376,10 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
"enqueuedAt": "2025-01-16T17:02:52.527382964Z",
|
||||||
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
"startedAt": "2025-01-16T17:02:52.539749853Z",
|
||||||
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
"finishedAt": "2025-01-16T17:02:52.547390016Z"
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 11,
|
|
||||||
"batchUid": 11,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"searchCutoffMs": 8000
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007307840S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:01:14.100316617Z",
|
|
||||||
"startedAt": "2025-01-16T17:01:14.112756687Z",
|
|
||||||
"finishedAt": "2025-01-16T17:01:14.120064527Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 10,
|
|
||||||
"batchUid": 10,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 99
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 15
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007391353S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:29.188815062Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:29.201180268Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:29.208571621Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 9,
|
|
||||||
"batchUid": 9,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"faceting": {
|
|
||||||
"maxValuesPerFacet": 100
|
|
||||||
},
|
|
||||||
"pagination": {
|
|
||||||
"maxTotalHits": 1000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007445825S",
|
|
||||||
"enqueuedAt": "2025-01-16T17:00:15.759501709Z",
|
|
||||||
"startedAt": "2025-01-16T17:00:15.77629445Z",
|
|
||||||
"finishedAt": "2025-01-16T17:00:15.783740275Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 8,
|
|
||||||
"batchUid": 8,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
},
|
|
||||||
"disableOnWords": [
|
|
||||||
"kefir"
|
|
||||||
],
|
|
||||||
"disableOnAttributes": [
|
|
||||||
"surname"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.012020083S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:59:42.727292501Z",
|
|
||||||
"startedAt": "2025-01-16T16:59:42.744086671Z",
|
|
||||||
"finishedAt": "2025-01-16T16:59:42.756106754Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 7,
|
|
||||||
"batchUid": 7,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"typoTolerance": {
|
|
||||||
"minWordSizeForTypos": {
|
|
||||||
"oneTypo": 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007440092S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:58:41.203145044Z",
|
|
||||||
"startedAt": "2025-01-16T16:58:41.2155771Z",
|
|
||||||
"finishedAt": "2025-01-16T16:58:41.223017192Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uid": 6,
|
|
||||||
"batchUid": 6,
|
|
||||||
"indexUid": "kefir",
|
|
||||||
"status": "succeeded",
|
|
||||||
"type": "settingsUpdate",
|
|
||||||
"canceledBy": null,
|
|
||||||
"details": {
|
|
||||||
"synonyms": {
|
|
||||||
"boubou": [
|
|
||||||
"kefir"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": null,
|
|
||||||
"duration": "PT0.007565161S",
|
|
||||||
"enqueuedAt": "2025-01-16T16:54:51.927866243Z",
|
|
||||||
"startedAt": "2025-01-16T16:54:51.940332781Z",
|
|
||||||
"finishedAt": "2025-01-16T16:54:51.947897942Z"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 24,
|
"total": 30,
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"from": 25,
|
"from": 31,
|
||||||
"next": 5
|
"next": 11
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 30,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
"details": {
|
"details": {
|
||||||
"upgradeFrom": "v1.12.0",
|
"upgradeFrom": "v1.12.0",
|
||||||
|
@ -26,6 +26,155 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"finishedAt": "[date]",
|
"finishedAt": "[date]",
|
||||||
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
"batchStrategy": "stopped after the last task of type `upgradeDatabase` because they cannot be batched with tasks of any other type."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"indexDeletion": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"failed": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"mieli": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"documentAdditionOrUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 24,
|
||||||
|
"progress": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"stats": {
|
||||||
|
"totalNbTasks": 1,
|
||||||
|
"status": {
|
||||||
|
"succeeded": 1
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"settingsUpdate": 1
|
||||||
|
},
|
||||||
|
"indexUids": {
|
||||||
|
"kefir": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z",
|
||||||
|
"batchStrategy": "unspecified"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 23,
|
"uid": 23,
|
||||||
"progress": null,
|
"progress": null,
|
||||||
|
@ -642,8 +791,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"batchStrategy": "unspecified"
|
"batchStrategy": "unspecified"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 25,
|
"total": 31,
|
||||||
"limit": 1000,
|
"limit": 1000,
|
||||||
"from": 24,
|
"from": 30,
|
||||||
"next": null
|
"next": null
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,8 +4,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": 25,
|
"uid": 31,
|
||||||
"batchUid": 24,
|
"batchUid": 30,
|
||||||
"indexUid": null,
|
"indexUid": null,
|
||||||
"status": "succeeded",
|
"status": "succeeded",
|
||||||
"type": "upgradeDatabase",
|
"type": "upgradeDatabase",
|
||||||
|
@ -20,6 +20,118 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"startedAt": "[date]",
|
"startedAt": "[date]",
|
||||||
"finishedAt": "[date]"
|
"finishedAt": "[date]"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"uid": 30,
|
||||||
|
"batchUid": 29,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.067201S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:43:08.772432Z",
|
||||||
|
"startedAt": "2025-07-07T13:43:08.772854Z",
|
||||||
|
"finishedAt": "2025-07-07T13:43:08.840055Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 29,
|
||||||
|
"batchUid": 28,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "indexDeletion",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"deletedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.012727S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:50.744793Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:50.745461Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:50.758188Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 28,
|
||||||
|
"batchUid": 27,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "failed",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 0
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"message": "Index `kefir`: Bad embedder configuration in the document with id: `2`. Could not parse `._vectors.doggo_embedder`: trailing characters at line 1 column 13",
|
||||||
|
"code": "invalid_vectors_type",
|
||||||
|
"type": "invalid_request",
|
||||||
|
"link": "https://docs.meilisearch.com/errors#invalid_vectors_type"
|
||||||
|
},
|
||||||
|
"duration": "PT0.059920S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:42:15.624598Z",
|
||||||
|
"startedAt": "2025-07-07T13:42:15.625413Z",
|
||||||
|
"finishedAt": "2025-07-07T13:42:15.685333Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 27,
|
||||||
|
"batchUid": 26,
|
||||||
|
"indexUid": "mieli",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.088879S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:40:01.46081Z",
|
||||||
|
"startedAt": "2025-07-07T13:40:01.461741Z",
|
||||||
|
"finishedAt": "2025-07-07T13:40:01.55062Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 26,
|
||||||
|
"batchUid": 25,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "documentAdditionOrUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"receivedDocuments": 1,
|
||||||
|
"indexedDocuments": 1
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.312911S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:32:46.13871Z",
|
||||||
|
"startedAt": "2025-07-07T13:32:46.139785Z",
|
||||||
|
"finishedAt": "2025-07-07T13:32:46.452696Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uid": 25,
|
||||||
|
"batchUid": 24,
|
||||||
|
"indexUid": "kefir",
|
||||||
|
"status": "succeeded",
|
||||||
|
"type": "settingsUpdate",
|
||||||
|
"canceledBy": null,
|
||||||
|
"details": {
|
||||||
|
"embedders": {
|
||||||
|
"doggo_embedder": {
|
||||||
|
"source": "huggingFace",
|
||||||
|
"model": "sentence-transformers/all-MiniLM-L6-v2",
|
||||||
|
"revision": "e4ce9877abf3edfe10b0d82785e83bdcb973e22e",
|
||||||
|
"documentTemplate": "{{doc.description}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": null,
|
||||||
|
"duration": "PT0.247378S",
|
||||||
|
"enqueuedAt": "2025-07-07T13:28:27.390054Z",
|
||||||
|
"startedAt": "2025-07-07T13:28:27.391344Z",
|
||||||
|
"finishedAt": "2025-07-07T13:28:27.638722Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"uid": 24,
|
"uid": 24,
|
||||||
"batchUid": 23,
|
"batchUid": 23,
|
||||||
|
@ -497,8 +609,8 @@ source: crates/meilisearch/tests/upgrade/v1_12/v1_12_0.rs
|
||||||
"finishedAt": "2025-01-16T16:45:16.131303739Z"
|
"finishedAt": "2025-01-16T16:45:16.131303739Z"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"total": 26,
|
"total": 32,
|
||||||
"limit": 1000,
|
"limit": 1000,
|
||||||
"from": 25,
|
"from": 31,
|
||||||
"next": null
|
"next": null
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -114,13 +114,13 @@ async fn check_the_index_scheduler(server: &Server) {
|
||||||
|
|
||||||
// All the indexes are still present
|
// All the indexes are still present
|
||||||
let (indexes, _) = server.list_indexes(None, None).await;
|
let (indexes, _) = server.list_indexes(None, None).await;
|
||||||
snapshot!(indexes, @r#"
|
snapshot!(indexes, @r###"
|
||||||
{
|
{
|
||||||
"results": [
|
"results": [
|
||||||
{
|
{
|
||||||
"uid": "kefir",
|
"uid": "kefir",
|
||||||
"createdAt": "2025-01-16T16:45:16.020663157Z",
|
"createdAt": "2025-01-16T16:45:16.020663157Z",
|
||||||
"updatedAt": "2025-01-23T11:36:22.634859166Z",
|
"updatedAt": "2025-07-07T13:43:08.835381Z",
|
||||||
"primaryKey": "id"
|
"primaryKey": "id"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -128,7 +128,7 @@ async fn check_the_index_scheduler(server: &Server) {
|
||||||
"limit": 20,
|
"limit": 20,
|
||||||
"total": 1
|
"total": 1
|
||||||
}
|
}
|
||||||
"#);
|
"###);
|
||||||
// And their metadata are still right
|
// And their metadata are still right
|
||||||
let (stats, _) = server.stats().await;
|
let (stats, _) = server.stats().await;
|
||||||
assert_json_snapshot!(stats, {
|
assert_json_snapshot!(stats, {
|
||||||
|
@ -141,21 +141,21 @@ async fn check_the_index_scheduler(server: &Server) {
|
||||||
{
|
{
|
||||||
"databaseSize": "[bytes]",
|
"databaseSize": "[bytes]",
|
||||||
"usedDatabaseSize": "[bytes]",
|
"usedDatabaseSize": "[bytes]",
|
||||||
"lastUpdate": "2025-01-23T11:36:22.634859166Z",
|
"lastUpdate": "2025-07-07T13:43:08.835381Z",
|
||||||
"indexes": {
|
"indexes": {
|
||||||
"kefir": {
|
"kefir": {
|
||||||
"numberOfDocuments": 1,
|
"numberOfDocuments": 2,
|
||||||
"rawDocumentDbSize": "[bytes]",
|
"rawDocumentDbSize": "[bytes]",
|
||||||
"avgDocumentSize": "[bytes]",
|
"avgDocumentSize": "[bytes]",
|
||||||
"isIndexing": false,
|
"isIndexing": false,
|
||||||
"numberOfEmbeddings": 0,
|
"numberOfEmbeddings": 2,
|
||||||
"numberOfEmbeddedDocuments": 0,
|
"numberOfEmbeddedDocuments": 2,
|
||||||
"fieldDistribution": {
|
"fieldDistribution": {
|
||||||
"age": 1,
|
"age": 2,
|
||||||
"description": 1,
|
"description": 2,
|
||||||
"id": 1,
|
"id": 2,
|
||||||
"name": 1,
|
"name": 2,
|
||||||
"surname": 1
|
"surname": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -227,21 +227,21 @@ async fn check_the_index_scheduler(server: &Server) {
|
||||||
{
|
{
|
||||||
"databaseSize": "[bytes]",
|
"databaseSize": "[bytes]",
|
||||||
"usedDatabaseSize": "[bytes]",
|
"usedDatabaseSize": "[bytes]",
|
||||||
"lastUpdate": "2025-01-23T11:36:22.634859166Z",
|
"lastUpdate": "2025-07-07T13:43:08.835381Z",
|
||||||
"indexes": {
|
"indexes": {
|
||||||
"kefir": {
|
"kefir": {
|
||||||
"numberOfDocuments": 1,
|
"numberOfDocuments": 2,
|
||||||
"rawDocumentDbSize": "[bytes]",
|
"rawDocumentDbSize": "[bytes]",
|
||||||
"avgDocumentSize": "[bytes]",
|
"avgDocumentSize": "[bytes]",
|
||||||
"isIndexing": false,
|
"isIndexing": false,
|
||||||
"numberOfEmbeddings": 0,
|
"numberOfEmbeddings": 2,
|
||||||
"numberOfEmbeddedDocuments": 0,
|
"numberOfEmbeddedDocuments": 2,
|
||||||
"fieldDistribution": {
|
"fieldDistribution": {
|
||||||
"age": 1,
|
"age": 2,
|
||||||
"description": 1,
|
"description": 2,
|
||||||
"id": 1,
|
"id": 2,
|
||||||
"name": 1,
|
"name": 2,
|
||||||
"surname": 1
|
"surname": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -254,18 +254,18 @@ async fn check_the_index_scheduler(server: &Server) {
|
||||||
".avgDocumentSize" => "[bytes]",
|
".avgDocumentSize" => "[bytes]",
|
||||||
}), @r###"
|
}), @r###"
|
||||||
{
|
{
|
||||||
"numberOfDocuments": 1,
|
"numberOfDocuments": 2,
|
||||||
"rawDocumentDbSize": "[bytes]",
|
"rawDocumentDbSize": "[bytes]",
|
||||||
"avgDocumentSize": "[bytes]",
|
"avgDocumentSize": "[bytes]",
|
||||||
"isIndexing": false,
|
"isIndexing": false,
|
||||||
"numberOfEmbeddings": 0,
|
"numberOfEmbeddings": 2,
|
||||||
"numberOfEmbeddedDocuments": 0,
|
"numberOfEmbeddedDocuments": 2,
|
||||||
"fieldDistribution": {
|
"fieldDistribution": {
|
||||||
"age": 1,
|
"age": 2,
|
||||||
"description": 1,
|
"description": 2,
|
||||||
"id": 1,
|
"id": 2,
|
||||||
"name": 1,
|
"name": 2,
|
||||||
"surname": 1
|
"surname": 2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"###);
|
"###);
|
||||||
|
@ -295,4 +295,8 @@ async fn check_the_index_features(server: &Server) {
|
||||||
let (results, _status) =
|
let (results, _status) =
|
||||||
kefir.search_post(json!({ "sort": ["age:asc"], "filter": "surname = kefirounet" })).await;
|
kefir.search_post(json!({ "sort": ["age:asc"], "filter": "surname = kefirounet" })).await;
|
||||||
snapshot!(results, name: "search_with_sort_and_filter");
|
snapshot!(results, name: "search_with_sort_and_filter");
|
||||||
|
|
||||||
|
// ensuring we can get the vectors and their `regenerate` is still good.
|
||||||
|
let (results, _status) = kefir.search_post(json!({"retrieveVectors": true})).await;
|
||||||
|
snapshot!(json_string!(results["hits"], {"[]._vectors.doggo_embedder.embeddings" => "[vector]"}), name: "search_with_retrieve_vectors");
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ mod v1_12;
|
||||||
mod v1_13;
|
mod v1_13;
|
||||||
mod v1_14;
|
mod v1_14;
|
||||||
mod v1_15;
|
mod v1_15;
|
||||||
|
mod v1_16;
|
||||||
use heed::RwTxn;
|
use heed::RwTxn;
|
||||||
use v1_12::{V1_12_3_To_V1_13_0, V1_12_To_V1_12_3};
|
use v1_12::{V1_12_3_To_V1_13_0, V1_12_To_V1_12_3};
|
||||||
use v1_13::{V1_13_0_To_V1_13_1, V1_13_1_To_Latest_V1_13};
|
use v1_13::{V1_13_0_To_V1_13_1, V1_13_1_To_Latest_V1_13};
|
||||||
|
@ -10,6 +11,7 @@ use v1_15::Latest_V1_14_To_Latest_V1_15;
|
||||||
|
|
||||||
use crate::constants::{VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH};
|
use crate::constants::{VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH};
|
||||||
use crate::progress::{Progress, VariableNameStep};
|
use crate::progress::{Progress, VariableNameStep};
|
||||||
|
use crate::update::upgrade::v1_16::Latest_V1_15_To_V1_16_0;
|
||||||
use crate::{Index, InternalError, Result};
|
use crate::{Index, InternalError, Result};
|
||||||
|
|
||||||
trait UpgradeIndex {
|
trait UpgradeIndex {
|
||||||
|
@ -24,6 +26,59 @@ trait UpgradeIndex {
|
||||||
fn target_version(&self) -> (u32, u32, u32);
|
fn target_version(&self) -> (u32, u32, u32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const UPGRADE_FUNCTIONS: &[&dyn UpgradeIndex] = &[
|
||||||
|
&V1_12_To_V1_12_3 {},
|
||||||
|
&V1_12_3_To_V1_13_0 {},
|
||||||
|
&V1_13_0_To_V1_13_1 {},
|
||||||
|
&V1_13_1_To_Latest_V1_13 {},
|
||||||
|
&Latest_V1_13_To_Latest_V1_14 {},
|
||||||
|
&Latest_V1_14_To_Latest_V1_15 {},
|
||||||
|
&Latest_V1_15_To_V1_16_0 {},
|
||||||
|
// This is the last upgrade function, it will be called when the index is up to date.
|
||||||
|
// any other upgrade function should be added before this one.
|
||||||
|
&ToCurrentNoOp {},
|
||||||
|
];
|
||||||
|
|
||||||
|
/// Causes a compile-time error if the argument is not in range of `0..UPGRADE_FUNCTIONS.len()`
|
||||||
|
macro_rules! function_index {
|
||||||
|
($start:expr) => {{
|
||||||
|
const _CHECK_INDEX: () = {
|
||||||
|
if $start >= $crate::update::upgrade::UPGRADE_FUNCTIONS.len() {
|
||||||
|
panic!("upgrade functions out of range")
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$start
|
||||||
|
}};
|
||||||
|
}
|
||||||
|
|
||||||
|
const fn start(from: (u32, u32, u32)) -> Option<usize> {
|
||||||
|
let start = match from {
|
||||||
|
(1, 12, 0..=2) => function_index!(0),
|
||||||
|
(1, 12, 3..) => function_index!(1),
|
||||||
|
(1, 13, 0) => function_index!(2),
|
||||||
|
(1, 13, _) => function_index!(4),
|
||||||
|
(1, 14, _) => function_index!(5),
|
||||||
|
// We must handle the current version in the match because in case of a failure some index may have been upgraded but not other.
|
||||||
|
(1, 15, _) => function_index!(6),
|
||||||
|
(1, 16, _) => function_index!(7),
|
||||||
|
// We deliberately don't add a placeholder with (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) here to force manually
|
||||||
|
// considering dumpless upgrade.
|
||||||
|
(_major, _minor, _patch) => return None,
|
||||||
|
};
|
||||||
|
|
||||||
|
Some(start)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Causes a compile-time error if the latest package cannot be upgraded.
|
||||||
|
///
|
||||||
|
/// This serves as a reminder to consider the proper dumpless upgrade implementation when changing the package version.
|
||||||
|
const _CHECK_PACKAGE_CAN_UPGRADE: () = {
|
||||||
|
if start((VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)).is_none() {
|
||||||
|
panic!("cannot upgrade from latest package version")
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/// Return true if the cached stats of the index must be regenerated
|
/// Return true if the cached stats of the index must be regenerated
|
||||||
pub fn upgrade<MSP>(
|
pub fn upgrade<MSP>(
|
||||||
wtxn: &mut RwTxn,
|
wtxn: &mut RwTxn,
|
||||||
|
@ -36,33 +91,12 @@ where
|
||||||
MSP: Fn() -> bool + Sync,
|
MSP: Fn() -> bool + Sync,
|
||||||
{
|
{
|
||||||
let from = index.get_version(wtxn)?.unwrap_or(db_version);
|
let from = index.get_version(wtxn)?.unwrap_or(db_version);
|
||||||
let upgrade_functions: &[&dyn UpgradeIndex] = &[
|
|
||||||
&V1_12_To_V1_12_3 {},
|
|
||||||
&V1_12_3_To_V1_13_0 {},
|
|
||||||
&V1_13_0_To_V1_13_1 {},
|
|
||||||
&V1_13_1_To_Latest_V1_13 {},
|
|
||||||
&Latest_V1_13_To_Latest_V1_14 {},
|
|
||||||
&Latest_V1_14_To_Latest_V1_15 {},
|
|
||||||
// This is the last upgrade function, it will be called when the index is up to date.
|
|
||||||
// any other upgrade function should be added before this one.
|
|
||||||
&ToCurrentNoOp {},
|
|
||||||
];
|
|
||||||
|
|
||||||
let start = match from {
|
let start =
|
||||||
(1, 12, 0..=2) => 0,
|
start(from).ok_or_else(|| InternalError::CannotUpgradeToVersion(from.0, from.1, from.2))?;
|
||||||
(1, 12, 3..) => 1,
|
|
||||||
(1, 13, 0) => 2,
|
|
||||||
(1, 13, _) => 4,
|
|
||||||
(1, 14, _) => 5,
|
|
||||||
// We must handle the current version in the match because in case of a failure some index may have been upgraded but not other.
|
|
||||||
(1, 15, _) => 6,
|
|
||||||
(major, minor, patch) => {
|
|
||||||
return Err(InternalError::CannotUpgradeToVersion(major, minor, patch).into())
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
enum UpgradeVersion {}
|
enum UpgradeVersion {}
|
||||||
let upgrade_path = &upgrade_functions[start..];
|
let upgrade_path = &UPGRADE_FUNCTIONS[start..];
|
||||||
|
|
||||||
let mut current_version = from;
|
let mut current_version = from;
|
||||||
let mut regenerate_stats = false;
|
let mut regenerate_stats = false;
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
use heed::RwTxn;
|
use heed::RwTxn;
|
||||||
|
use roaring::RoaringBitmap;
|
||||||
|
use serde::Deserialize;
|
||||||
|
|
||||||
use super::UpgradeIndex;
|
use super::UpgradeIndex;
|
||||||
use crate::progress::Progress;
|
use crate::progress::Progress;
|
||||||
|
@ -26,3 +28,14 @@ impl UpgradeIndex for Latest_V1_14_To_Latest_V1_15 {
|
||||||
(1, 15, 0)
|
(1, 15, 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Parts of v1.15 `IndexingEmbeddingConfig` that are relevant for upgrade to v1.16
|
||||||
|
///
|
||||||
|
/// # Warning
|
||||||
|
///
|
||||||
|
/// This object should not be rewritten to the DB, only read to get the name and `user_provided` roaring.
|
||||||
|
#[derive(Debug, Deserialize)]
|
||||||
|
pub struct IndexEmbeddingConfig {
|
||||||
|
pub name: String,
|
||||||
|
pub user_provided: RoaringBitmap,
|
||||||
|
}
|
||||||
|
|
48
crates/milli/src/update/upgrade/v1_16.rs
Normal file
48
crates/milli/src/update/upgrade/v1_16.rs
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
use heed::types::{SerdeJson, Str};
|
||||||
|
use heed::RwTxn;
|
||||||
|
|
||||||
|
use super::UpgradeIndex;
|
||||||
|
use crate::progress::Progress;
|
||||||
|
use crate::vector::db::{EmbedderInfo, EmbeddingStatus};
|
||||||
|
use crate::{Index, InternalError, Result};
|
||||||
|
|
||||||
|
#[allow(non_camel_case_types)]
|
||||||
|
pub(super) struct Latest_V1_15_To_V1_16_0();
|
||||||
|
|
||||||
|
impl UpgradeIndex for Latest_V1_15_To_V1_16_0 {
|
||||||
|
fn upgrade(
|
||||||
|
&self,
|
||||||
|
wtxn: &mut RwTxn,
|
||||||
|
index: &Index,
|
||||||
|
_original: (u32, u32, u32),
|
||||||
|
_progress: Progress,
|
||||||
|
) -> Result<bool> {
|
||||||
|
let v1_15_indexing_configs = index
|
||||||
|
.main
|
||||||
|
.remap_types::<Str, SerdeJson<Vec<super::v1_15::IndexEmbeddingConfig>>>()
|
||||||
|
.get(wtxn, crate::index::main_key::EMBEDDING_CONFIGS)?
|
||||||
|
.unwrap_or_default();
|
||||||
|
|
||||||
|
let embedders = index.embedding_configs();
|
||||||
|
for config in v1_15_indexing_configs {
|
||||||
|
let embedder_id = embedders.embedder_id(wtxn, &config.name)?.ok_or(
|
||||||
|
InternalError::DatabaseMissingEntry {
|
||||||
|
db_name: crate::index::db_name::VECTOR_EMBEDDER_CATEGORY_ID,
|
||||||
|
key: None,
|
||||||
|
},
|
||||||
|
)?;
|
||||||
|
let info = EmbedderInfo {
|
||||||
|
embedder_id,
|
||||||
|
// v1.15 used not to make a difference between `user_provided` and `! regenerate`.
|
||||||
|
embedding_status: EmbeddingStatus::from_user_provided(config.user_provided),
|
||||||
|
};
|
||||||
|
embedders.put_embedder_info(wtxn, &config.name, &info)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn target_version(&self) -> (u32, u32, u32) {
|
||||||
|
(1, 16, 0)
|
||||||
|
}
|
||||||
|
}
|
|
@ -117,6 +117,13 @@ impl EmbeddingStatus {
|
||||||
Default::default()
|
Default::default()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Create a new `EmbeddingStatus` that assumes that any `user_provided` docid is also skipping regenerate.
|
||||||
|
///
|
||||||
|
/// Used for migration from v1.15 and earlier DBs.
|
||||||
|
pub(crate) fn from_user_provided(user_provided: RoaringBitmap) -> Self {
|
||||||
|
Self { user_provided, skip_regenerate_different_from_user_provided: Default::default() }
|
||||||
|
}
|
||||||
|
|
||||||
/// Whether the document contains user-provided vectors for that embedder.
|
/// Whether the document contains user-provided vectors for that embedder.
|
||||||
pub fn is_user_provided(&self, docid: DocumentId) -> bool {
|
pub fn is_user_provided(&self, docid: DocumentId) -> bool {
|
||||||
self.user_provided.contains(docid)
|
self.user_provided.contains(docid)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue