From e3172cd6865af2066d562ebba98d960cbfd1288e 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 --- 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 @@ -1195,6 +1195,16 @@ biblios: marc_type: marc21 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 -- 2.20.1