Skip to content

Commit 7baaa96

Browse files
committed
BUGFIX: Reduce batch size again
The increased batch size broke indexing, producing errors that are very hard to track down.
1 parent 9dc8332 commit 7baaa96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Command/NodeIndexQueueCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ protected function indexWorkspace($workspaceName, $indexPostfix)
220220
$this->outputLine('<info>++</info> Indexing %s workspace', [$workspaceName]);
221221
$nodeCounter = 0;
222222
$offset = 0;
223-
$batchSize = 500;
223+
$batchSize = 100;
224224
while (true) {
225225
$iterator = $this->nodeDataRepository->findAllBySiteAndWorkspace($workspaceName, $offset, $batchSize);
226226

0 commit comments

Comments
 (0)