Bug 20434: Update UNIMARC framework - auth (NP)
[koha.git] / misc / search_tools / rebuild_elasticsearch.pl
blob1199b63922702cc65e089500d7c09d234ca83a25
1 #!/usr/bin/perl
3 # This inserts records from a Koha database into elastic search
5 # Copyright 2014 Catalyst IT
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 3 of the License, or (at your option) any later
12 # version.
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 =head1 NAME
24 rebuild_elasticsearch.pl - inserts records from a Koha database into Elasticsearch
26 =head1 SYNOPSIS
28 B<rebuild_elasticsearch.pl>
29 [B<-c|--commit>=C<count>]
30 [B<-v|--verbose>]
31 [B<-h|--help>]
32 [B<--man>]
34 =head1 DESCRIPTION
36 Inserts records from a Koha database into Elasticsearch.
38 =head1 OPTIONS
40 =over
42 =item B<-c|--commit>=C<count>
44 Specify how many records will be batched up before they're added to Elasticsearch.
45 Higher should be faster, but will cause more RAM usage. Default is 5000.
47 =item B<-d|--delete>
49 Delete the index and recreate it before indexing.
51 =item B<-a|--authorities>
53 Index the authorities only. Combining this with B<-b> is the same as
54 specifying neither and so both get indexed.
56 =item B<-b|--biblios>
58 Index the biblios only. Combining this with B<-a> is the same as
59 specifying neither and so both get indexed.
61 =item B<-bn|--bnumber>
63 Only index the supplied biblionumber, mostly for testing purposes. May be
64 repeated. This also applies to authorities via authid, so if you're using it,
65 you probably only want to do one or the other at a time.
67 =item B<-p|--processes>
69 Number of processes to use for indexing. This can be used to do more indexing
70 work in parallel on multicore systems. By default, a single process is used.
72 =item B<-v|--verbose>
74 By default, this program only emits warnings and errors. This makes it talk
75 more. Add more to make it even more wordy, in particular when debugging.
77 =item B<-h|--help>
79 Help!
81 =item B<--man>
83 Full documentation.
85 =back
87 =head1 IMPLEMENTATION
89 =cut
91 use autodie;
92 use Getopt::Long;
93 use Koha::Script;
94 use C4::Context;
95 use Koha::MetadataRecord::Authority;
96 use Koha::BiblioUtils;
97 use Koha::SearchEngine::Elasticsearch::Indexer;
98 use MARC::Field;
99 use MARC::Record;
100 use Modern::Perl;
101 use Pod::Usage;
103 my $verbose = 0;
104 my $commit = 5000;
105 my ($delete, $help, $man, $processes);
106 my ($index_biblios, $index_authorities);
107 my (@record_numbers);
109 $|=1; # flushes output
111 GetOptions(
112 'c|commit=i' => \$commit,
113 'd|delete' => \$delete,
114 'a|authorities' => \$index_authorities,
115 'b|biblios' => \$index_biblios,
116 'bn|bnumber=i' => \@record_numbers,
117 'p|processes=i' => \$processes,
118 'v|verbose+' => \$verbose,
119 'h|help' => \$help,
120 'man' => \$man,
123 # Default is to do both
124 unless ($index_authorities || $index_biblios) {
125 $index_authorities = $index_biblios = 1;
128 if ($processes && @record_numbers) {
129 die "Argument p|processes cannot be combined with bn|bnumber";
132 pod2usage(1) if $help;
133 pod2usage( -exitstatus => 0, -verbose => 2 ) if $man;
135 _sanity_check();
137 _verify_index_state($Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX, $delete) if ($index_biblios);
138 _verify_index_state($Koha::SearchEngine::Elasticsearch::AUTHORITIES_INDEX, $delete) if ($index_authorities);
140 my $slice_index = 0;
141 my $slice_count = ( $processes //= 1 );
142 my %iterator_options;
144 if ($slice_count > 1) {
145 # Fire up child processes for processing slices from 2 on. This main process will handle slice 1.
146 $slice_index = 0;
147 for (my $proc = 1; $proc < $slice_count; $proc++) {
148 my $pid = fork();
149 die "Failed to fork a child process\n" unless defined $pid;
150 if ($pid == 0) {
151 # Child process, give it a slice to process
152 $slice_index = $proc;
153 last;
156 # Fudge the commit count a bit to spread out the Elasticsearch commits
157 $commit *= 1 + 0.10 * $slice_index;
158 _log(1, "Processing slice @{[$slice_index + 1]} of $slice_count\n");
159 $iterator_options{slice} = { index => $slice_index, count => $slice_count };
162 my $next;
163 if ($index_biblios) {
164 _log(1, "Indexing biblios\n");
165 if (@record_numbers) {
166 $next = sub {
167 my $r = shift @record_numbers;
168 return () unless defined $r;
169 return ($r, Koha::BiblioUtils->get_from_biblionumber($r, item_data => 1 ));
171 } else {
172 my $records = Koha::BiblioUtils->get_all_biblios_iterator(%iterator_options);
173 $next = sub {
174 $records->next();
177 _do_reindex($next, $Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX);
179 if ($index_authorities) {
180 _log(1, "Indexing authorities\n");
181 if (@record_numbers) {
182 $next = sub {
183 my $r = shift @record_numbers;
184 return () unless defined $r;
185 my $a = Koha::MetadataRecord::Authority->get_from_authid($r);
186 return ($r, $a->record);
188 } else {
189 my $records = Koha::MetadataRecord::Authority->get_all_authorities_iterator(%iterator_options);
190 $next = sub {
191 $records->next();
194 _do_reindex($next, $Koha::SearchEngine::Elasticsearch::AUTHORITIES_INDEX);
197 if ($slice_index == 0) {
198 # Main process, wait for children
199 for (my $proc = 1; $proc < $processes; $proc++) {
200 wait();
204 =head2 _verify_index_state
206 _verify_index_state($Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX, 1);
208 Checks the index state and recreates it if requested.
210 =cut
212 sub _verify_index_state {
213 my ( $index_name, $recreate ) = @_;
215 _log(1, "Checking state of $index_name index\n");
216 my $indexer = Koha::SearchEngine::Elasticsearch::Indexer->new( { index => $index_name } );
218 if ($recreate) {
219 _log(1, "Dropping and recreating $index_name index\n");
220 $indexer->drop_index() if $indexer->index_exists();
221 $indexer->create_index();
223 elsif (!$indexer->index_exists) {
224 # Create index if does not exist
225 $indexer->create_index();
226 } elsif ($indexer->is_index_status_ok) {
227 # Update mapping unless index is some kind of problematic state
228 $indexer->update_mappings();
229 } elsif ($indexer->is_index_status_recreate_required) {
230 warn qq/Index "$index_name" has status "recreate required", suggesting it should be recreated/;
234 =head2 _do_reindex
236 _do_reindex($callback, $Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX);
238 Does the actual reindexing. $callback is a function that always returns the next record.
240 =cut
242 sub _do_reindex {
243 my ( $next, $index_name ) = @_;
245 my $indexer = Koha::SearchEngine::Elasticsearch::Indexer->new( { index => $index_name } );
247 my $count = 0;
248 my $commit_count = $commit;
249 my ( @id_buffer, @commit_buffer );
250 while ( my $record = $next->() ) {
251 my $id = $record->id;
252 my $record = $record->record;
253 $count++;
254 if ( $verbose == 1 ) {
255 _log( 1, "$count records processed\n" ) if ( $count % 1000 == 0);
256 } else {
257 _log( 2, "$id\n" );
260 push @id_buffer, $id;
261 push @commit_buffer, $record;
262 if ( !( --$commit_count ) ) {
263 _log( 1, "Committing $commit records...\n" );
264 $indexer->update_index( \@id_buffer, \@commit_buffer );
265 $commit_count = $commit;
266 @id_buffer = ();
267 @commit_buffer = ();
268 _log( 1, "Commit complete\n" );
272 # There are probably uncommitted records
273 _log( 1, "Committing final records...\n" );
274 $indexer->update_index( \@id_buffer, \@commit_buffer );
275 _log( 1, "Total $count records indexed\n" );
278 =head2 _sanity_check
280 _sanity_check();
282 Checks some basic stuff to ensure that it's sane before we start.
284 =cut
286 sub _sanity_check {
287 # Do we have an elasticsearch block defined?
288 my $conf = C4::Context->config('elasticsearch');
289 die "No 'elasticsearch' block is defined in koha-conf.xml.\n" if ( !$conf );
292 =head2 _log
294 _log($level, "Message\n");
296 Output progress information.
298 Will output the message if verbosity level is set to $level or more. Will not
299 include a trailing newline automatically.
301 =cut
303 sub _log {
304 my ($level, $msg) = @_;
306 print "[$$] $msg" if ($verbose >= $level);