From bb079028867fd5b15724e648067f55e90c95ec44 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 11 Feb 2019 14:05:01 -0500 Subject: [PATCH] Log first/last bib ID of each indexed batch Signed-off-by: Bill Erickson --- Open-ILS/src/perlmods/lib/OpenILS/Elastic/BibSearch.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Elastic/BibSearch.pm b/Open-ILS/src/perlmods/lib/OpenILS/Elastic/BibSearch.pm index b9a7e1f390..52c0e02e6a 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Elastic/BibSearch.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Elastic/BibSearch.pm @@ -330,6 +330,9 @@ sub populate_bib_index_batch { $index_count++; } + $logger->info("ES indexing completed for records " . + $bib_ids->[0] . '...' . $bib_ids->[-1]); + return $index_count; } -- 2.11.0