Skip to content

Commit

Permalink
fix(meilisearch): corriger la taille des batch
Browse files Browse the repository at this point in the history
Réduire la taille des batchs pour Meilisearch pour limiter l'impact sur l'erreur d'indexation
  • Loading branch information
SEFR authored and Sefrancois committed Feb 6, 2023
1 parent 459592b commit f250c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/meilisearch/constante/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
export default class Constante {
public static readonly LIMITE_MAX_FACETS = 100000;
public static readonly LIMITE_MAX_HITS= 100000;
public static readonly LIMITE_ENTRIES_QUERY = 5000;
public static readonly LIMITE_ENTRIES_QUERY = process.env.MEILISEARCH_BATCH_SIZE;
}

0 comments on commit f250c42

Please sign in to comment.