From ba30e6a8d9e1f952939c4f6ab8079c46e3efac40 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 Signed-off-by: Jonathan Druart --- 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 1e0fa8a4c9..8e13d23331 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