]> git.koha-community.org Git - koha.git/commit
Bug 35466: Add skip_indexing parameter to bulkmarcimport.pl
authorNick Clemens <nick@bywatersolutions.com>
Mon, 5 Aug 2024 12:48:04 +0000 (12:48 +0000)
committerKatrin Fischer <katrin.fischer@bsz-bw.de>
Mon, 21 Oct 2024 10:25:56 +0000 (12:25 +0200)
commite01fb164554a4ae3a9cb1488400a3a1e058c9d57
treeacc82b0fae91fa42fcb6659765a134e8c3a3459d
parentf57ea88628c91cbb56da2bcb3e9ed61a3d1e2482
Bug 35466: Add skip_indexing parameter to bulkmarcimport.pl

This patch adds a new optoin to skip indexing to bulkmarcimport.
It also fixes a bug where authorities were being indexed multiple times
during import.

To test:
 1 - Apply patch
 2 - Download the sample files on this bug
 3 - Perform asearch engine search that should retrieve all records( 'a' in Zebra, '*' in ES)
 4 - Note the total (435 in KTD)
 5 - perl misc/migration_tools/bulkmarcimport.pl -b -v --file=bug_35466_b.mrc
 6 - Search again, note increaed by 100
 7 - perl misc/migration_tools/bulkmarcimport.pl -b -v --file=bug_35466_b.mrc --skip_indexing
 8 - Search again, no increase
 9 - perl misc/search_tools/rebuild_elasticsearch.pl -v
10 - Search again, increase, records were added but not initially indexed
11 - Browse to authorities and search as for biblios
12 - perl misc/migration_tools/bulkmarcimport.pl -a -v --file=bug_35466_a.mrc
13 - Search again, note increase
14 - perl misc/migration_tools/bulkmarcimport.pl -a -v --file=bug_35466_a.mrc --skip_indexing
15 - Search again, no increase
16 - perl misc/search_tools/rebuild_elasticsearch.pl -v
17 - Search again, increase, records were added but not initially indexed
18 - Sign off! Hi5!

Signed-off-by: Phil Ringnalda <phil@chetcolibrary.org>
Signed-off-by: Thomas Klausner <domm@plix.at>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
misc/migration_tools/bulkmarcimport.pl