https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38913 --- Comment #13 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Jonathan Druart from comment #12) Hey, this was test on bug 38713 not 38913, oops! So basically what I described was the behaviour in main.
This is clearly not enough (could go on a separate bugs).
Testing this patch I have noticed several things: 1. $ ./misc/migration_tools/bulkmarcimport.pl -b -file test.xml -m=MARCXML .UTF-8 "\xC4" does not map to Unicode at /usr/share/perl5/MARC/File/Encode.pm line 35.
Not really useful to guess where the error is, but we know it's in the file so we can search in it easily
With this patch: "1 MARC records done in 81.9053399562836 seconds" However, I have delete all biblio and background_jobs before the import and now I have: MariaDB [koha_kohadev]> select count(*) from biblio\G count(*): 1 MariaDB [koha_kohadev]> select count(*) from background_jobs\G count(*): 2508 Interesting!...
2. Stage the file and import using the UI
Same with this patch.
3. Now the record is in the DB, start a full reindex:
% koha-elasticsearch --rebuild -b kohadev UTF-8 "\xC4" does not map to Unicode at /usr/share/perl5/MARC/File/Encode.pm line 35. Something went wrong rebuilding indexes for kohadev
No info on the problematic record! We should tell which record failed.
We don't have anything in the output, which is problematic IMO. -- You are receiving this mail because: You are watching all bug changes.