Skip to content

Instantly share code, notes, and snippets.

View mbreksopuro's full-sized avatar

mbreksopuro mbreksopuro

View GitHub Profile
@hartfordfive
hartfordfive / reindex.sh
Last active May 19, 2023 12:32
Bash script to re-index all indices matching apattern from a remote Elasticsearch cluster to a local one
#!/bin/bash
if [ "$1" == "" ] || [ "$2" == "" ]; then
echo "Usage: ./reindex.sh [REMOTE_HOST:REMOTE_PORT] [INDEX_PATTERN] [LOCAL_HOST:LOCAL_PORT]"
exit 1
fi
REMOTE_HOST=$1
PATTERN=$2
if [ "$3" == "" ]; then