livy-defaults.conf.tmpl 1.2 KB

1234567891011121314151617181920212223242526272829
  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. # What host address to start the server on. Defaults to 0.0.0.0. If using the
  6. # `yarn` factory mode, this address must be accessible from the YARN nodes.
  7. ## livy.server.host = 0.0.0.0
  8. # What port to start the server on. Defaults to 8998.
  9. ## livy.server.port = 8998
  10. # What session factory to use. The options are `process` and `yarn`.
  11. ## livy.server.session.factory = process
  12. # What spark-submit executable path to use to submit spark applications. Defaults to
  13. # `spark-submit`.
  14. ## livy.server.spark-submit = spark-submit
  15. # Time in milliseconds on how long Livy will wait before timing out an idle session.
  16. # Default is one hour.
  17. ## livy.server.session.timeout = 3600000
  18. # Location to find the livy assembly. If not specified, livy will determine the
  19. # assembly from the local jarfile. If using `yarn` sessions, this may be on HDFS.
  20. ## livy.yarn.jar = hdfs://localhost:8020/user/hue/share/lib/livy-assembly.jar
  21. # If livy should use proxy users when submitting a job.
  22. ## livy.impersonation.enabled = true