Skip to content

Commit 6bba5b3

Browse files
Decrease batch size to 10 in test output migration (#2975)
A batch size of 5000 proved to be too large for this migration in real-world testing.
1 parent 870e1ee commit 6bba5b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2025_06_16_152800_decompress_test_output.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function up(): void
1010

1111
$max_id = 0;
1212
while (true) {
13-
$batch_size = 5000;
13+
$batch_size = 10;
1414
$batch = DB::select("
1515
SELECT
1616
id,

0 commit comments

Comments
 (0)