Skip to content

Commit

Permalink
fix(parents migrator): increase doc batch size to 10k (#9422)
Browse files Browse the repository at this point in the history
Co-authored-by: Henry Fontanier <[email protected]>
  • Loading branch information
fontanierh and Henry Fontanier authored Dec 16, 2024
1 parent e182e07 commit de5ab7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/migrations/20241211_parents_migrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type ProviderMigrator = {
) => { parents: string[]; parentId: string | null };
};

const QUERY_BATCH_SIZE = 2048;
const QUERY_BATCH_SIZE = 10_000;
const DOCUMENT_CONCURRENCY = 16;
const TABLE_CONCURRENCY = 16;

Expand Down

0 comments on commit de5ab7b

Please sign in to comment.