livy-env.sh.template 1.9 KB

123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/env bash
  2. #
  3. # Licensed to the Apache Software Foundation (ASF) under one or more
  4. # contributor license agreements. See the NOTICE file distributed with
  5. # this work for additional information regarding copyright ownership.
  6. # The ASF licenses this file to You under the Apache License, Version 2.0
  7. # (the "License"); you may not use this file except in compliance with
  8. # 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. # LIVY ENVIRONMENT VARIABLES
  19. #
  20. # - JAVA_HOME Java runtime to use. By default use "java" from PATH.
  21. # - HADOOP_CONF_DIR Directory containing the Hadoop / YARN configuration to use.
  22. # - SPARK_HOME Spark which you would like to use in Livy.
  23. # - SPARK_CONF_DIR Optional directory where the Spark configuration lives.
  24. # (Default: $SPARK_HOME/conf)
  25. # - LIVY_LOG_DIR Where log files are stored. (Default: ${LIVY_HOME}/logs)
  26. # - LIVY_PID_DIR Where the pid file is stored. (Default: /tmp)
  27. # - LIVY_SERVER_JAVA_OPTS Java Opts for running livy server (You can set jvm related setting here,
  28. # like jvm memory/gc algorithm and etc.)
  29. # - LIVY_IDENT_STRING A name that identifies the Livy server instance, used to generate log file
  30. # names. (Default: name of the user starting Livy).
  31. # - LIVY_MAX_LOG_FILES Max number of log file to keep in the log directory. (Default: 5.)
  32. # - LIVY_NICENESS Niceness of the Livy server process when running in the background. (Default: 0.)
  33. # - LIVY_CLASSPATH Override if the additional classpath is required.