https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20551

--- Comment #107 from Fridolin Somers <[email protected]> ---
Arg I've been using this feature on an a big export and DB server crashed.
I see the output file is not filled little by little.

I think it comes from this change : 

+        @records = map {
+            my $record = _get_record_for_export( { %{$params}, record_id => $_
} );
+            $record ? $record : ();
+        } @{$record_ids};

For a huge export the @records object will take too much RAM.

Without this path the records are build one by one.

Please make some tests to confirm.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to