This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
solr-shard-management/solr-pause.sh
2022-05-11 18:51:20 +00:00

11 lines
223 B
Bash
Executable File

#!/bin/bash
. ./setenv.sh
ARG_SOLR_SHARD_ID=$1
if [[ ! -z "$ARG_SOLR_SHARD_ID" ]]; then
SOLR_CORE=${SOLR_CORE}-${ARG_SOLR_SHARD_ID}
fi
curl -SsL ${SOLR_BASEURL}/admin/cores?action=disable-indexing\&core=${SOLR_CORE}