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
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.
24 rebuild_elastic_search.pl - inserts records from a Koha database into Elasticsearch
28 B<rebuild_elastic_search.pl>
29 [B<-c|--commit>=C<count>]
36 Inserts records from a Koha database into Elasticsearch.
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.
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.
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.
69 By default, this program only emits warnings and errors. This makes it talk
70 more. Add more to make it even more wordy, in particular when debugging.
87 use Koha
::MetadataRecord
::Authority
;
88 use Koha
::BiblioUtils
;
89 use Koha
::ElasticSearch
::Indexer
;
95 use Data
::Dumper
; # TODO remove
99 my ($delete, $help, $man);
100 my ($index_biblios, $index_authorities);
104 'c|commit=i' => \
$commit,
105 'd|delete' => \
$delete,
106 'a|authorities' => \
$index_authorities,
107 'b|biblios' => \
$index_biblios,
108 'bn|bnumber=i' => \
@biblionumbers,
109 'v|verbose+' => \
$verbose,
114 # Default is to do both
115 unless ($index_authorities || $index_biblios) {
116 $index_authorities = $index_biblios = 1;
119 pod2usage
(1) if $help;
120 pod2usage
( -exitstatus
=> 0, -verbose
=> 2 ) if $man;
125 if ($index_biblios) {
126 _log
(1, "Indexing biblios\n");
127 if (@biblionumbers) {
129 my $r = shift @biblionumbers;
130 return () unless defined $r;
131 return ($r, Koha
::BiblioUtils
->get_from_biblionumber($r, item_data
=> 1 ));
134 my $records = Koha
::BiblioUtils
->get_all_biblios_iterator();
139 do_reindex
($next, $Koha::ElasticSearch
::BIBLIOS_INDEX
);
141 if ($index_authorities) {
142 _log
(1, "Indexing authorities\n");
143 if (@biblionumbers) {
145 my $r = shift @biblionumbers;
146 return () unless defined $r;
147 my $a = Koha
::MetadataRecord
::Authority
->get_from_authid($r);
148 return ($r, $a->record);
151 my $records = Koha
::MetadataRecord
::Authority
->get_all_authorities_iterator();
156 do_reindex
($next, $Koha::ElasticSearch
::AUTHORITIES_INDEX
);
160 my ( $next, $index_name ) = @_;
162 my $indexer = Koha
::ElasticSearch
::Indexer
->new( { index => $index_name } );
165 # We know it's safe to not recreate the indexer because update_index
166 # hasn't been called yet.
167 $indexer->drop_index();
171 my $commit_count = $commit;
172 my ( @id_buffer, @commit_buffer );
173 while ( my $record = $next->() ) {
174 my $id = $record->id;
175 my $record = $record->record;
179 push @id_buffer, $id;
180 push @commit_buffer, $record;
181 if ( !( --$commit_count ) ) {
182 _log
( 2, "Committing...\n" );
183 $indexer->update_index( \
@id_buffer, \
@commit_buffer );
184 $commit_count = $commit;
190 # There are probably uncommitted records
191 $indexer->update_index( \
@id_buffer, \
@commit_buffer );
192 _log
( 1, "$count records indexed.\n" );
195 # Checks some basic stuff to ensure that it's sane before we start.
197 # Do we have an elasticsearch block defined?
198 my $conf = C4
::Context
->config('elasticsearch');
199 die "No 'elasticsearch' block is defined in koha-conf.xml.\n" if ( !$conf );
202 # Output progress information.
204 # _log($level, $msg);
206 # Will output $msg if the verbosity setting is set to $level or more. Will
207 # not include a trailing newline.
209 my ($level, $msg) = @_;
211 print $msg if ($verbose >= $level);