3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Read configuration variable file if it is present
19 [ -r /etc
/default
/koha-common
] && .
/etc
/default
/koha-common
21 # include helper functions
22 if [ -f "/usr/share/koha/bin/koha-functions.sh" ]; then
23 .
"/usr/share/koha/bin/koha-functions.sh"
25 echo "Error: /usr/share/koha/bin/koha-functions.sh not present." 1>&2
33 Manage Elasticsearch-related tasks for Koha instances
35 Usage: $scriptname [actions] [options] instancename1 instancename2...
38 --rebuild Trigger a rebuild process
41 --authorities|-a Only run process for authorities.
42 --biblios|-b Only run process for biblios.
43 -c|--commit n Specify how many records will be batched up before
44 they're added to Elasticsearch (default: 5000).
45 -p|--processes n Specify the number of parallel processes to use
47 --verbose|-v Be verbose.
48 --help|-h Print this help.
57 if [ "${authorities_only}" != "yes" ]; then
62 toggle_authorities_only
()
64 authorities_only
="yes"
66 if [ "${biblios_only}" != "yes" ]; then
73 if [ "${op}" = "" ]; then
76 die
"Error: only one action can be specified."
80 run_rebuild_elasticsearch
()
82 # read instance name and eliminate instance name from params
85 if [ "$DEV_INSTALL" = "" ]; then
86 KOHA_BINDIR
=${KOHA_HOME}/bin
88 KOHA_BINDIR
=${KOHA_HOME}/misc
91 if [ "${clo_commit_size}" > 0 ]; then
92 commit_size
=${clo_commit_size}
94 rebuild_opts
="--commit ${commit_size}"
96 if [ "${clo_processes}" > 0 ]; then
97 processes
=${clo_processes}
99 rebuild_opts
="--processes ${processes}"
101 if [ "${biblios}" = "yes" ]; then
102 rebuild_opts
="${rebuild_opts} -b"
105 if [ "${authorities}" = "yes" ]; then
106 rebuild_opts
="${rebuild_opts} -a"
109 if [ "${verbose}" = "yes" ]; then
110 rebuild_opts
="${rebuild_opts} -v"
114 -c "${KOHA_BINDIR}/search_tools/rebuild_elasticsearch.pl ${rebuild_opts}" \
126 authorities_only
="no"
133 while [ -n "$*" ]; do
142 toggle_authorities_only
145 clo_commit_size
="$2" ; shift
148 clo_processes
="$2" ; shift
164 # Optionally use alternative paths for a dev install
165 adjust_paths_dev_install
$1
167 # Parse command line.
168 if [ $# -lt 1 ]; then
170 die
"Missing instance name."
173 # Loop over instance names
176 if is_instance
$name; then
177 if [ "${op}" = "rebuild" ]; then
178 if ! run_rebuild_elasticsearch
$name; then
179 warn
"Something went wrong rebuilding indexes for ${name}"
182 # TODO: Add other actions, status? etc
184 die
"Error: no action passed"
187 warn
"Unknown instance ${name}"