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
usedDatabaseSize corresponds to the total space used by the data stored in Meilisearch. This value doesn't count the unused space claimed by LMDB, removing documents from the DB will decrease this value.
numberOfEmbeddings represents the total number of embeddings representation that exists in that indexes. A document can contains a representation per embedder used. so basically => numberOfEmbeddedDocuments * the number of embedder they have a rep for
numberOfEmbeddedDocuments represents the number of document in an index that contains at least one embedded representation — this is the one we will likely sum at a project level when we bill AI documents in the futur
rawDocumentDbSize corresponds to the total size of the documents stored in Meilisearch.
maxDocumentSize corresponds to the size of the biggest document in the database.
avgDocumentSize corresponds to the total size of the documents stored in Meilisearch divided by the number of documents.
usedDatabaseSize is differente from databaseSize. The latter corresponds to the total disk space claimed by Meilisearch. Because LMDB doesn't free the unused space, deleting documents will not decrease this value.
v1.13 adds three new fields to the stats object:
usedDatabaseSize
corresponds to the total space used by the data stored in Meilisearch. This value doesn't count the unused space claimed by LMDB, removing documents from the DB will decrease this value.numberOfEmbeddings
represents the total number of embeddings representation that exists in that indexes. A document can contains a representation per embedder used. so basically => numberOfEmbeddedDocuments * the number of embedder they have a rep fornumberOfEmbeddedDocuments
represents the number of document in an index that contains at least one embedded representation — this is the one we will likely sum at a project level when we bill AI documents in the futurrawDocumentDbSize
corresponds to the total size of the documents stored in Meilisearch.maxDocumentSize
corresponds to the size of the biggest document in the database.avgDocumentSize
corresponds to the total size of the documents stored in Meilisearch divided by the number of documents.usedDatabaseSize
is differente fromdatabaseSize
. The latter corresponds to the total disk space claimed by Meilisearch. Because LMDB doesn't free the unused space, deleting documents will not decrease this value.Tasks
/reference/api/stats.mdx
References
stats
route meilisearch#5321, AddusedDatabaseSize
tostats
route meilisearch#5318,Add documents database metrics tostats
route meilisearch#5319The text was updated successfully, but these errors were encountered: