From 6d040e2daadc0318eae845b362c80da7b1b0a521 Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Wed, 5 Oct 2022 11:08:11 -0400 Subject: [PATCH] Bug 31687: Add see from and see also from tracings in Match index MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch adds see from and see also from terms for uniform title, chronological term, topical term, geographic name, and genre/form term to the Match index in Elasticsearch for MARC21. Previously, only see from/see also from for personal names, corporate names, and meeting names were indexed. To test: 1. Without patch, import attached authority records 1.1. Download attached records 1.2. Go to Tools > Stage MARC records for import 1.3. Click 'Browse' and choose the downloaded file 1.4. Click 'Upload file' 1.5. Choose Record type = Authority 1.6. Click 'Stage for import' 1.7. From the job details, click 'View batch' 1.8. Click 'Import this batch into the catalog' 2. Without patch, search for see from and see also from tracings 2.1. Go to Authorities 2.2. In the 'Default' drop-down menu, choose 'Uniform title' 2.3. Choose the 'Search all headings' tab 2.4. Enter the search term 'Five hundred' 2.5. Click 'Submit' or press 'Enter' --> No results 2.6. Redo the search for the following search terms Authority type Search term Should be found in Uniform title five hundred 430 Uniform title films préférés 530 Chronological term fifteenth 448 Chronological term middle ages 548 Topical term lalopathie 450 Topical term troubles communication 550 Geographic name cécropia 451 Geographic name canada francophone 551 Genre/Form term filmiques 455 Genre/Form term films 555 3. Apply patch 4. Delete index, reset mappings and reindex authorities (with command line, -a -d -r) 5. Redo the searches from step 2, there should now be results --- .../searchengine/elasticsearch/mappings.yaml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/admin/searchengine/elasticsearch/mappings.yaml b/admin/searchengine/elasticsearch/mappings.yaml index 7602d408d2..820f032d85 100644 --- a/admin/searchengine/elasticsearch/mappings.yaml +++ b/admin/searchengine/elasticsearch/mappings.yaml @@ -289,6 +289,31 @@ authorities: marc_type: marc21 sort: ~ suggestible: '' + - facet: '' + marc_field: 430(adfghklmnoprstvxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 448(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 450(abvxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 451(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 455(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' - facet: '' marc_field: 500(abcdefghjklmnopqrstvxyz) marc_type: marc21 @@ -304,6 +329,31 @@ authorities: marc_type: marc21 sort: ~ suggestible: '' + - facet: '' + marc_field: 530(adfghklmnoprstvxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 548(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 550(abvxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 551(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' + - facet: '' + marc_field: 555(avxyz) + marc_type: marc21 + sort: ~ + suggestible: '' - facet: '' marc_field: 200(3478abcdfgjxyz) marc_type: unimarc -- 2.25.1