2018-09-21 22:00:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-01-26 16:14:13 +00:00
|
|
|
DO_CHOWN=1
|
|
|
|
if [ "$CLICKHOUSE_DO_NOT_CHOWN" = 1 ]; then
|
|
|
|
DO_CHOWN=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
CLICKHOUSE_UID="${CLICKHOUSE_UID:-"$(id -u clickhouse)"}"
|
|
|
|
CLICKHOUSE_GID="${CLICKHOUSE_GID:-"$(id -g clickhouse)"}"
|
|
|
|
|
|
|
|
# support --user
|
2019-03-21 15:10:47 +00:00
|
|
|
if [ x"$UID" == x0 ]; then
|
2020-01-26 16:14:13 +00:00
|
|
|
USER=$CLICKHOUSE_UID
|
|
|
|
GROUP=$CLICKHOUSE_GID
|
2019-03-21 15:10:47 +00:00
|
|
|
gosu="gosu $USER:$GROUP"
|
|
|
|
else
|
|
|
|
USER="$(id -u)"
|
|
|
|
GROUP="$(id -g)"
|
|
|
|
gosu=""
|
2020-01-26 16:14:13 +00:00
|
|
|
DO_CHOWN=0
|
2019-03-21 15:10:47 +00:00
|
|
|
fi
|
2018-09-21 22:00:57 +00:00
|
|
|
|
2020-01-26 16:14:13 +00:00
|
|
|
# set some vars
|
|
|
|
CLICKHOUSE_CONFIG="${CLICKHOUSE_CONFIG:-/etc/clickhouse-server/config.xml}"
|
|
|
|
|
2018-12-10 15:23:21 +00:00
|
|
|
# port is needed to check if clickhouse-server is ready for connections
|
|
|
|
HTTP_PORT="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=http_port)"
|
|
|
|
|
2018-09-21 22:00:57 +00:00
|
|
|
# get CH directories locations
|
2018-12-10 15:23:21 +00:00
|
|
|
DATA_DIR="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=path || true)"
|
|
|
|
TMP_DIR="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=tmp_path || true)"
|
|
|
|
USER_PATH="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=user_files_path || true)"
|
|
|
|
LOG_PATH="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=logger.log || true)"
|
2018-09-21 22:00:57 +00:00
|
|
|
LOG_DIR="$(dirname $LOG_PATH || true)"
|
2018-12-10 15:23:21 +00:00
|
|
|
ERROR_LOG_PATH="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=logger.errorlog || true)"
|
2018-09-21 22:00:57 +00:00
|
|
|
ERROR_LOG_DIR="$(dirname $ERROR_LOG_PATH || true)"
|
2018-12-10 15:23:21 +00:00
|
|
|
FORMAT_SCHEMA_PATH="$(clickhouse extract-from-config --config-file $CLICKHOUSE_CONFIG --key=format_schema_path || true)"
|
2020-05-03 20:04:00 +00:00
|
|
|
|
2019-06-24 11:45:04 +00:00
|
|
|
CLICKHOUSE_USER="${CLICKHOUSE_USER:-default}"
|
2020-05-03 20:04:00 +00:00
|
|
|
CLICKHOUSE_PASSWORD="${CLICKHOUSE_PASSWORD:-}"
|
|
|
|
CLICKHOUSE_DB="${CLICKHOUSE_DB:-}"
|
2018-09-21 22:00:57 +00:00
|
|
|
|
2019-03-21 15:10:47 +00:00
|
|
|
for dir in "$DATA_DIR" \
|
|
|
|
"$ERROR_LOG_DIR" \
|
|
|
|
"$LOG_DIR" \
|
|
|
|
"$TMP_DIR" \
|
|
|
|
"$USER_PATH" \
|
|
|
|
"$FORMAT_SCHEMA_PATH"
|
|
|
|
do
|
2019-04-10 12:29:04 +00:00
|
|
|
# check if variable not empty
|
|
|
|
[ -z "$dir" ] && continue
|
2019-03-21 15:10:47 +00:00
|
|
|
# ensure directories exist
|
|
|
|
if ! mkdir -p "$dir"; then
|
|
|
|
echo "Couldn't create necessary directory: $dir"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-01-26 16:14:13 +00:00
|
|
|
if [ "$DO_CHOWN" = "1" ]; then
|
2019-03-21 15:10:47 +00:00
|
|
|
# ensure proper directories permissions
|
|
|
|
chown -R "$USER:$GROUP" "$dir"
|
|
|
|
elif [ "$(stat -c %u "$dir")" != "$USER" ]; then
|
|
|
|
echo "Necessary directory '$dir' isn't owned by user with id '$USER'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-05-03 20:04:00 +00:00
|
|
|
# if clickhouse user is defined - create it (user "default" already exists out of box)
|
|
|
|
if [ -n "$CLICKHOUSE_USER" ] && [ "$CLICKHOUSE_USER" != "default" ]; then
|
|
|
|
echo "Create user '$CLICKHOUSE_USER' instead default"
|
|
|
|
cat <<EOT >> /etc/clickhouse-server/users.d/default-user.xml
|
|
|
|
<yandex>
|
|
|
|
<!-- Docs: <https://clickhouse.tech/docs/en/operations/settings/settings_users/> -->
|
|
|
|
<users>
|
|
|
|
<!-- Remove default user -->
|
|
|
|
<default remove="remove">
|
|
|
|
</default>
|
|
|
|
|
|
|
|
<${CLICKHOUSE_USER}>
|
|
|
|
<profile>default</profile>
|
|
|
|
<networks>
|
|
|
|
<ip>::/0</ip>
|
|
|
|
</networks>
|
|
|
|
<password>${CLICKHOUSE_PASSWORD}</password>
|
|
|
|
<quota>default</quota>
|
|
|
|
</${CLICKHOUSE_USER}>
|
|
|
|
</users>
|
|
|
|
</yandex>
|
|
|
|
EOT
|
|
|
|
fi
|
|
|
|
|
|
|
|
# define password argument for clickhouse client
|
|
|
|
if [ -n "$CLICKHOUSE_PASSWORD" ]; then
|
|
|
|
printf -v WITH_PASSWORD '%s %q' "--password" "$CLICKHOUSE_PASSWORD"
|
|
|
|
fi
|
2018-09-21 22:00:57 +00:00
|
|
|
|
2020-05-03 20:04:00 +00:00
|
|
|
# create default database, if defined
|
|
|
|
if [ -n "$CLICKHOUSE_DB" ]; then
|
|
|
|
echo "Create database '$CLICKHOUSE_DB'"
|
|
|
|
clickhouse-client --query -u "$CLICKHOUSE_USER" $WITH_PASSWORD "CREATE DATABASE IF NOT EXISTS $CLICKHOUSE_DB";
|
|
|
|
fi
|
2018-09-21 22:00:57 +00:00
|
|
|
|
2018-11-28 19:55:34 +00:00
|
|
|
if [ -n "$(ls /docker-entrypoint-initdb.d/)" ]; then
|
2019-03-21 15:10:47 +00:00
|
|
|
$gosu /usr/bin/clickhouse-server --config-file=$CLICKHOUSE_CONFIG &
|
2018-11-28 19:55:34 +00:00
|
|
|
pid="$!"
|
|
|
|
|
2018-12-10 15:23:21 +00:00
|
|
|
# check if clickhouse is ready to accept connections
|
|
|
|
# will try to send ping clickhouse via http_port (max 12 retries, with 1 sec delay)
|
|
|
|
if ! wget --spider --quiet --tries=12 --waitretry=1 --retry-connrefused "http://localhost:$HTTP_PORT/ping" ; then
|
|
|
|
echo >&2 'ClickHouse init process failed.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-06-24 11:45:04 +00:00
|
|
|
clickhouseclient=( clickhouse-client --multiquery -u $CLICKHOUSE_USER $WITH_PASSWORD )
|
|
|
|
|
2018-11-28 19:55:34 +00:00
|
|
|
echo
|
|
|
|
for f in /docker-entrypoint-initdb.d/*; do
|
|
|
|
case "$f" in
|
|
|
|
*.sh)
|
|
|
|
if [ -x "$f" ]; then
|
|
|
|
echo "$0: running $f"
|
|
|
|
"$f"
|
|
|
|
else
|
|
|
|
echo "$0: sourcing $f"
|
|
|
|
. "$f"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*.sql) echo "$0: running $f"; cat "$f" | "${clickhouseclient[@]}" ; echo ;;
|
|
|
|
*.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${clickhouseclient[@]}"; echo ;;
|
|
|
|
*) echo "$0: ignoring $f" ;;
|
|
|
|
esac
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! kill -s TERM "$pid" || ! wait "$pid"; then
|
2018-12-10 15:23:21 +00:00
|
|
|
echo >&2 'Finishing of ClickHouse init process failed.'
|
2018-11-28 19:55:34 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2018-11-26 00:26:48 +00:00
|
|
|
|
|
|
|
# if no args passed to `docker run` or first argument start with `--`, then the user is passing clickhouse-server arguments
|
|
|
|
if [[ $# -lt 1 ]] || [[ "$1" == "--"* ]]; then
|
2019-03-21 15:10:47 +00:00
|
|
|
exec $gosu /usr/bin/clickhouse-server --config-file=$CLICKHOUSE_CONFIG "$@"
|
2018-11-26 00:26:48 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Otherwise, we assume the user want to run his own process, for example a `bash` shell to explore this image
|
|
|
|
exec "$@"
|