hue-shell.ini 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ## Configuration options for the Hue Shell app.
  2. [shell]
  3. ## These are commented out so you know where to put lines like these if necessary.
  4. ## The shell_buffer_amount specifies the number of bytes of output per shell
  5. ## that the Shell app will keep in memory. If not specified, it defaults to
  6. ## 524288 (512 MiB).
  7. #shell_buffer_amount=100
  8. ## If you run Hue against a Hadoop cluster with Kerberos security enabled, the
  9. ## Shell app needs to acquire delegation tokens for the subprocesses to work
  10. ## correctly. These delegation tokens are stored as temporary files in some
  11. ## directory. You can configure this directory here. If not specified, it
  12. ## defaults to /tmp/hue_delegation_tokens.
  13. #shell_delegation_token_dir=/tmp/hue_delegation_tokens
  14. [[ shelltypes ]]
  15. [[[ flume ]]]
  16. nice_name = "Flume Shell"
  17. command = "/usr/bin/flume shell"
  18. help = "The command-line Flume client interface."
  19. [[[[ environment ]]]]
  20. ## You can specify environment variables for the Flume shell
  21. ## in this section.
  22. [[[ pig ]]]
  23. nice_name = "Pig Shell (Grunt)"
  24. command = "/usr/bin/pig -l /dev/null"
  25. help = "The command-line interpreter for Pig"
  26. [[[[ environment ]]]]
  27. ## You can specify environment variables for the Pig shell
  28. ## in this section. Note that JAVA_HOME must be configured
  29. ## for the Pig shell to run.
  30. [[[[[ JAVA_HOME ]]]]]
  31. value = "/usr/lib/jvm/java-6-sun"
  32. [[[ hbase ]]]
  33. nice_name = "HBase Shell"
  34. command = "/usr/bin/hbase shell"
  35. help = "The command-line HBase client interface."
  36. [[[[ environment ]]]]
  37. ## You can configure environment variables for the HBase shell
  38. ## in this section.