livy-repl 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/usr/bin/env bash
  2. # Licensed to Cloudera, Inc. under one
  3. # or more contributor license agreements. See the NOTICE file
  4. # distributed with this work for additional information
  5. # regarding copyright ownership. Cloudera, Inc. licenses this file
  6. # to you under the Apache License, Version 2.0 (the
  7. # "License"); you may not use this file except in compliance
  8. # with the License. You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. # Runs spark shell server.
  19. set -e
  20. export LIVY_HOME=$(cd $(dirname $0)/.. && pwd)
  21. cd $LIVY_HOME
  22. if [ "$SPARK_HOME" ]; then
  23. SPARK_SUBMIT="$SPARK_HOME/bin/spark-submit"
  24. else
  25. SPARK_SUBMIT=spark-submit
  26. fi
  27. LIBDIR="$LIVY_HOME/repl-jars"
  28. if [ ! -d "$LIBDIR" ]; then
  29. LIBDIR="$LIVY_HOME/repl/target/jars"
  30. fi
  31. if [ ! -d "$LIBDIR" ]; then
  32. echo "Could not find Livy REPL jars directory." 1>&2
  33. exit 1
  34. fi
  35. JARS=$(find $LIBDIR | paste -sd,)
  36. exec $SPARK_SUBMIT \
  37. --jars "$JARS" \
  38. --driver-java-options "$LIVY_REPL_JAVA_OPTS" \
  39. --class com.cloudera.livy.repl.Main \
  40. "spark-internal" \
  41. "$@"