mirror of
https://github.com/apache/impala.git
synced 2026-01-05 21:00:54 -05:00
This commit fixes two issues in toSql() of DistributeParam: 1. string literals were not quoted 2. range partition split rows were not printed. Besides, this commit fixes a small issue in run-hive-server.sh Change-Id: I984a63a24f02670347b0e1efceb864d265d1f931 Reviewed-on: http://gerrit.cloudera.org:8080/4195 Reviewed-by: Matthew Jacobs <mj@cloudera.com> Reviewed-by: Alex Behm <alex.behm@cloudera.com> Tested-by: Internal Jenkins
81 lines
2.6 KiB
Bash
Executable File
81 lines
2.6 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
set -euo pipefail
|
|
trap 'echo Error in $0 at line $LINENO: $(cd "'$PWD'" && awk "NR == $LINENO" $0)' ERR
|
|
|
|
. ${IMPALA_HOME}/bin/set-pythonpath.sh
|
|
|
|
HIVE_SERVER_PORT=10000
|
|
export HIVE_SERVER2_THRIFT_PORT=11050
|
|
HIVE_METASTORE_PORT=9083
|
|
LOGDIR=${IMPALA_CLUSTER_LOGS_DIR}/hive
|
|
HIVES2_TRANSPORT="plain_sasl"
|
|
METASTORE_TRANSPORT="buffered"
|
|
ONLY_METASTORE=0
|
|
|
|
CLUSTER_BIN=${IMPALA_HOME}/testdata/bin
|
|
|
|
if ${CLUSTER_DIR}/admin is_kerberized; then
|
|
# Making a kerberized cluster... set some more environment variables.
|
|
. ${MINIKDC_ENV}
|
|
|
|
HIVES2_TRANSPORT="kerberos"
|
|
# The metastore isn't kerberized yet:
|
|
# METASTORE_TRANSPORT="kerberos"
|
|
fi
|
|
|
|
mkdir -p ${LOGDIR}
|
|
|
|
while [ -n "$*" ]
|
|
do
|
|
case $1 in
|
|
-only_metastore)
|
|
ONLY_METASTORE=1
|
|
;;
|
|
-help|-h|*)
|
|
echo "run-hive-server.sh : Starts the hive server and the metastore."
|
|
echo "[-only_metastore] : Only starts the hive metastore."
|
|
exit 1;
|
|
;;
|
|
esac
|
|
shift;
|
|
done
|
|
|
|
# TODO: We should have a retry loop for every service we start.
|
|
# Kill for a clean start.
|
|
${CLUSTER_BIN}/kill-hive-server.sh &> /dev/null
|
|
|
|
# Starts a Hive Metastore Server on the specified port.
|
|
HADOOP_CLIENT_OPTS=-Xmx2024m hive --service metastore -p $HIVE_METASTORE_PORT \
|
|
> ${LOGDIR}/hive-metastore.out 2>&1 &
|
|
|
|
# Wait for the Metastore to come up because HiveServer2 relies on it being live.
|
|
${CLUSTER_BIN}/wait-for-metastore.py --transport=${METASTORE_TRANSPORT}
|
|
|
|
if [ ${ONLY_METASTORE} -eq 0 ]; then
|
|
# Starts a HiveServer2 instance on the port specified by the HIVE_SERVER2_THRIFT_PORT
|
|
# environment variable.
|
|
hive --service hiveserver2 > ${LOGDIR}/hive-server2.out 2>&1 &
|
|
|
|
# Wait for the HiveServer2 service to come up because callers of this script
|
|
# may rely on it being available.
|
|
${CLUSTER_BIN}/wait-for-hiveserver2.py --transport=${HIVES2_TRANSPORT}
|
|
fi
|