httpfs-env.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/usr/bin/env bash
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License. See accompanying LICENSE file.
  14. #
  15. # Set httpfs specific environment variables here.
  16. #
  17. # hadoop-env.sh is read prior to this file.
  18. #
  19. # HTTPFS config directory
  20. #
  21. # export HTTPFS_CONFIG=${HADOOP_CONF_DIR}
  22. # HTTPFS log directory
  23. #
  24. # export HTTPFS_LOG=${HADOOP_LOG_DIR}
  25. # HTTPFS temporary directory
  26. #
  27. # export HTTPFS_TEMP=${HADOOP_HOME}/temp
  28. # The HTTP port used by HTTPFS
  29. #
  30. # export HTTPFS_HTTP_PORT=14000
  31. # The maximum number of HTTP handler threads
  32. #
  33. # export HTTPFS_MAX_THREADS=1000
  34. # The hostname HttpFS server runs on
  35. #
  36. # export HTTPFS_HTTP_HOSTNAME=$(hostname -f)
  37. # The maximum size of HTTP header
  38. #
  39. # export HTTPFS_MAX_HTTP_HEADER_SIZE=65536
  40. # Whether SSL is enabled
  41. #
  42. # export HTTPFS_SSL_ENABLED=false
  43. # The location of the SSL keystore if using SSL
  44. #
  45. # export HTTPFS_SSL_KEYSTORE_FILE=${HOME}/.keystore
  46. # The password of the SSL keystore if using SSL
  47. #
  48. # export HTTPFS_SSL_KEYSTORE_PASS=password