blob: 491f403b65be23eb5569dae695cd050044f7fefc [file] [log] [blame]
#!/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.
#
source ${KYLIN_HOME:-"$(cd -P -- "$(dirname -- "$0")" && pwd -P)/../"}/bin/header.sh
mkdir -p ${KYLIN_HOME}/logs
tomcat_root=${dir}/../tomcat
export tomcat_root
if [ $# -eq 1 ] || [ $# -eq 2 ]
then
patient="$1"
if [ -z "$patient" ]
then
echo "You need to specify a Project or Job Id for diagnosis."
exit 1
fi
destDir="$2"
if [ -z "$destDir" ]
then
destDir="$KYLIN_HOME/diagnosis_dump/"
mkdir -p $destDir
fi
source ${dir}/find-hive-dependency.sh
#retrive $KYLIN_EXTRA_START_OPTS
if [ -f "${dir}/setenv-tool.sh" ]
then source ${dir}/setenv-tool.sh
fi
mkdir -p ${KYLIN_HOME}/ext
export HBASE_CLASSPATH_PREFIX=${KYLIN_HOME}/conf:${KYLIN_HOME}/tool/*:${KYLIN_HOME}/ext/*:${HBASE_CLASSPATH_PREFIX}
export HBASE_CLASSPATH=${HBASE_CLASSPATH}:${hive_dependency}
if [ ${#patient} -eq 36 ]; then
hbase ${KYLIN_EXTRA_START_OPTS} \
-Dlog4j.configuration=file:${KYLIN_HOME}/conf/kylin-tools-log4j.properties \
-Dcatalina.home=${tomcat_root} \
org.apache.kylin.tool.JobDiagnosisInfoCLI \
-jobId $patient \
-destDir $destDir || exit 1
else
hbase ${KYLIN_EXTRA_START_OPTS} \
-Dlog4j.configuration=file:${KYLIN_HOME}/conf/kylin-tools-log4j.properties \
-Dcatalina.home=${tomcat_root} \
org.apache.kylin.tool.DiagnosisInfoCLI \
-project -all \
-destDir $destDir || exit 1
fi
exit 0
elif [ $# -gt 2 ] # user can choose to use more flexibly options
then
source ${dir}/find-hive-dependency.sh
if [ -f "${dir}/setenv-tool.sh" ]
then source ${dir}/setenv-tool.sh
fi
mkdir -p ${KYLIN_HOME}/ext
export HBASE_CLASSPATH_PREFIX=${KYLIN_HOME}/conf:${KYLIN_HOME}/tool/*:${KYLIN_HOME}/ext/*:${HBASE_CLASSPATH_PREFIX}
export HBASE_CLASSPATH=${HBASE_CLASSPATH}:${hive_dependency}
hbase ${KYLIN_EXTRA_START_OPTS} \
-Dlog4j.configuration=file:${KYLIN_HOME}/conf/kylin-tools-log4j.properties \
-Dcatalina.home=${tomcat_root} \
"$@"
exit 0
else
echo "usage: diag.sh Project|JobId [target_path]"
exit 1
fi