livy-defaults.conf.tmpl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Specifies Livy's environment. May either be "production" or "development". In "development"
  2. # mode, Livy will enable debugging options, such as reporting possible routes on a 404.
  3. # defaults to development
  4. ## livy.environment = development
  5. # Use this keystore for the SSL certificate and key.
  6. ## livy.keystore =
  7. # Specify the keystore password.
  8. ## livy.keystore.password =
  9. # What host address to start the server on. Defaults to 0.0.0.0. If using the
  10. # `yarn` factory mode, this address must be accessible from the YARN nodes.
  11. ## livy.server.host = 0.0.0.0
  12. # What port to start the server on. Defaults to 8998.
  13. ## livy.server.port = 8998
  14. # What session factory to use. The options are `process` and `yarn`.
  15. ## livy.server.session.factory = process
  16. # What spark-submit executable path to use to submit spark applications. Defaults to
  17. # `spark-submit`.
  18. ## livy.server.spark-submit = spark-submit
  19. # Time in milliseconds on how long Livy will wait before timing out an idle session.
  20. # Default is one hour.
  21. ## livy.server.session.timeout = 3600000
  22. # Location to find the livy assembly. If not specified, livy will determine the
  23. # assembly from the local jarfile. If using `yarn` sessions, this may be on HDFS.
  24. ## livy.yarn.jar = hdfs://localhost:8020/user/hue/share/lib/livy-assembly.jar
  25. # If livy should use proxy users when submitting a job.
  26. ## livy.impersonation.enabled = true
  27. # Allow spark to reference files found in this directory. This may either be a local directory
  28. # or an hdfs:// directory. Be careful setting this option, as it may allow users to access
  29. # any file the Livy process can access, such as Livy's SSL certificate.
  30. ## livy.files.dir = /var/run/livy/uploaded-files
  31. # Optional list of Spark options that can be configured by the user.
  32. ## livy.spark.user-configurable-options = spark.serializer,spark.logConf