From 7cf03063bb1762737d14a920bab6010d662dc70a Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Tue, 18 May 2021 17:12:34 -0400 Subject: [PATCH] Bug 28381: Elasticsearch - Add 710 and 711 to default mappings for author index (MARC21) This patch adds fields 710$a and 711$a to the default author mappings for elasticsearch indexing. To test: 1) Apply patch 2) Reindex using rebuild_elasticsearch.pl -r If you don't have access to a terminal (in a sandbox for example) 2a) Go to Administration > Search engine configuration, click "Reset mappings" and confirm 2b) Then reindex 3) Search for an author name found only in 710 using the Author index in advanced search 4) Repeat search for an author name in 711 Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- admin/searchengine/elasticsearch/mappings.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/admin/searchengine/elasticsearch/mappings.yaml b/admin/searchengine/elasticsearch/mappings.yaml index 292e9ac475..6b63918d93 100644 --- a/admin/searchengine/elasticsearch/mappings.yaml +++ b/admin/searchengine/elasticsearch/mappings.yaml @@ -1196,6 +1196,16 @@ biblios: sort: ~ suggestible: 1 - facet: 1 + marc_field: 710a + marc_type: marc21 + sort: ~ + suggestible: 1 + - facet: 1 + marc_field: 711a + marc_type: marc21 + sort: ~ + suggestible: 1 + - facet: 1 marc_field: 200f marc_type: unimarc sort: ~ -- 2.11.0