mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
### What is this PR for?
We should remove `ZEPPELIN_NOTEBOOK_DIR` and `ZEPPELIN_INTERPRETER_DIR` from `common.sh` otherwise the corresponding property defined in `zeppelin-site.xml` won't take effect. I also check other properties like ZEPPELIN_CONF_DIR and ZEPPELIN_WAR. Although we define them explicitly in common.sh, we didn't expose them in document `install.md` and `zeppelin-site.xml.template`, so I think these are only for internal use and it is OK to keep them in common.sh although their correponding property in zeppelin-site.xml won't take effect too.
### What type of PR is it?
[Bug Fix]
### Todos
* [ ] - Task
### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-1785
### How should this be tested?
Tested manually
### Screenshots (if appropriate)
### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
…
Author: Jeff Zhang <zjffdu@apache.org>
Closes #1745 from zjffdu/ZEPPELIN-1785 and squashes the following commits:
141ec68 [Jeff Zhang] ZEPPELIN-1785. Remove ZEPPELIN_NOTEBOOK_DIR and ZEPPELIN_INTERPRETER_DIR from common.sh
142 lines
4.1 KiB
Bash
142 lines
4.1 KiB
Bash
#!/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.
|
|
#
|
|
|
|
if [ -L ${BASH_SOURCE-$0} ]; then
|
|
FWDIR=$(dirname $(readlink "${BASH_SOURCE-$0}"))
|
|
else
|
|
FWDIR=$(dirname "${BASH_SOURCE-$0}")
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_HOME}" ]]; then
|
|
# Make ZEPPELIN_HOME look cleaner in logs by getting rid of the
|
|
# extra ../
|
|
export ZEPPELIN_HOME="$(cd "${FWDIR}/.."; pwd)"
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_CONF_DIR}" ]]; then
|
|
export ZEPPELIN_CONF_DIR="${ZEPPELIN_HOME}/conf"
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_LOG_DIR}" ]]; then
|
|
export ZEPPELIN_LOG_DIR="${ZEPPELIN_HOME}/logs"
|
|
fi
|
|
|
|
if [[ -z "$ZEPPELIN_PID_DIR" ]]; then
|
|
export ZEPPELIN_PID_DIR="${ZEPPELIN_HOME}/run"
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_WAR}" ]]; then
|
|
if [[ -d "${ZEPPELIN_HOME}/zeppelin-web/dist" ]]; then
|
|
export ZEPPELIN_WAR="${ZEPPELIN_HOME}/zeppelin-web/dist"
|
|
else
|
|
export ZEPPELIN_WAR=$(find -L "${ZEPPELIN_HOME}" -name "zeppelin-web*.war")
|
|
fi
|
|
fi
|
|
|
|
if [[ -f "${ZEPPELIN_CONF_DIR}/zeppelin-env.sh" ]]; then
|
|
. "${ZEPPELIN_CONF_DIR}/zeppelin-env.sh"
|
|
fi
|
|
|
|
ZEPPELIN_CLASSPATH+=":${ZEPPELIN_CONF_DIR}"
|
|
|
|
function addEachJarInDir(){
|
|
if [[ -d "${1}" ]]; then
|
|
for jar in $(find -L "${1}" -maxdepth 1 -name '*jar'); do
|
|
ZEPPELIN_CLASSPATH="$jar:$ZEPPELIN_CLASSPATH"
|
|
done
|
|
fi
|
|
}
|
|
|
|
function addEachJarInDirRecursive(){
|
|
if [[ -d "${1}" ]]; then
|
|
for jar in $(find -L "${1}" -type f -name '*jar'); do
|
|
ZEPPELIN_CLASSPATH="$jar:$ZEPPELIN_CLASSPATH"
|
|
done
|
|
fi
|
|
}
|
|
|
|
function addEachJarInDirRecursiveForIntp(){
|
|
if [[ -d "${1}" ]]; then
|
|
for jar in $(find -L "${1}" -type f -name '*jar'); do
|
|
ZEPPELIN_INTP_CLASSPATH="$jar:$ZEPPELIN_INTP_CLASSPATH"
|
|
done
|
|
fi
|
|
}
|
|
|
|
function addJarInDir(){
|
|
if [[ -d "${1}" ]]; then
|
|
ZEPPELIN_CLASSPATH="${1}/*:${ZEPPELIN_CLASSPATH}"
|
|
fi
|
|
}
|
|
|
|
function addJarInDirForIntp() {
|
|
if [[ -d "${1}" ]]; then
|
|
ZEPPELIN_INTP_CLASSPATH="${1}/*:${ZEPPELIN_INTP_CLASSPATH}"
|
|
fi
|
|
}
|
|
|
|
ZEPPELIN_COMMANDLINE_MAIN=org.apache.zeppelin.utils.CommandLineUtils
|
|
|
|
function getZeppelinVersion(){
|
|
if [[ -d "${ZEPPELIN_HOME}/zeppelin-server/target/classes" ]]; then
|
|
ZEPPELIN_CLASSPATH+=":${ZEPPELIN_HOME}/zeppelin-server/target/classes"
|
|
fi
|
|
addJarInDir "${ZEPPELIN_HOME}/zeppelin-server/target/lib"
|
|
CLASSPATH+=":${ZEPPELIN_CLASSPATH}"
|
|
$ZEPPELIN_RUNNER -cp $CLASSPATH $ZEPPELIN_COMMANDLINE_MAIN -v
|
|
exit 0
|
|
}
|
|
|
|
# Text encoding for
|
|
# read/write job into files,
|
|
# receiving/displaying query/result.
|
|
if [[ -z "${ZEPPELIN_ENCODING}" ]]; then
|
|
export ZEPPELIN_ENCODING="UTF-8"
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_MEM}" ]]; then
|
|
export ZEPPELIN_MEM="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m"
|
|
fi
|
|
|
|
if [[ -z "${ZEPPELIN_INTP_MEM}" ]]; then
|
|
export ZEPPELIN_INTP_MEM="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m"
|
|
fi
|
|
|
|
JAVA_OPTS+=" ${ZEPPELIN_JAVA_OPTS} -Dfile.encoding=${ZEPPELIN_ENCODING} ${ZEPPELIN_MEM}"
|
|
JAVA_OPTS+=" -Dlog4j.configuration=file://${ZEPPELIN_CONF_DIR}/log4j.properties"
|
|
export JAVA_OPTS
|
|
|
|
JAVA_INTP_OPTS="${ZEPPELIN_INTP_JAVA_OPTS} -Dfile.encoding=${ZEPPELIN_ENCODING}"
|
|
JAVA_INTP_OPTS+=" -Dlog4j.configuration=file://${ZEPPELIN_CONF_DIR}/log4j.properties"
|
|
export JAVA_INTP_OPTS
|
|
|
|
|
|
if [[ -n "${JAVA_HOME}" ]]; then
|
|
ZEPPELIN_RUNNER="${JAVA_HOME}/bin/java"
|
|
else
|
|
ZEPPELIN_RUNNER=java
|
|
fi
|
|
export ZEPPELIN_RUNNER
|
|
|
|
if [[ -z "$ZEPPELIN_IDENT_STRING" ]]; then
|
|
export ZEPPELIN_IDENT_STRING="${USER}"
|
|
fi
|
|
|
|
if [[ -z "$ZEPPELIN_INTERPRETER_REMOTE_RUNNER" ]]; then
|
|
export ZEPPELIN_INTERPRETER_REMOTE_RUNNER="bin/interpreter.sh"
|
|
fi
|