build-functions 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #!/bin/bash
  2. # Licensed to Cloudera, Inc. under one
  3. # or more contributor license agreements. See the NOTICE file
  4. # distributed with this work for additional information
  5. # regarding copyright ownership. Cloudera, Inc. licenses this file
  6. # to you under the Apache License, Version 2.0 (the
  7. # "License"); you may not use this file except in compliance
  8. # with 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. # Common functions for hudson build scripts
  18. #
  19. # Use $CDH_URL to control where to download Hadoop.
  20. # If not specified, it uses the $CDH variable to select an archive location.
  21. #
  22. CDH_URL=${CDH_URL:-http://nightly.cloudera.com/cdh4/cdh/4/hadoop-0.23.3-cdh4b2-SNAPSHOT.tar.gz}
  23. CDH_TGZ=$(basename $CDH_URL)
  24. CDH_VERSION=${CDH_TGZ/.tar.gz/}
  25. CDH_CACHE="$HOME/.hue_cache/${CDH_TGZ}"
  26. build_hadoop() {
  27. if [ ! -f $CDH_CACHE ]; then
  28. mkdir -p $HOME/.hue_cache
  29. echo "Downloading $CDH_URL..."
  30. wget $CDH_URL -O $CDH_CACHE
  31. fi
  32. HADOOP_DIR=$HUE_ROOT/ext/hadoop
  33. export HADOOP_HOME="$HADOOP_DIR/${CDH_VERSION}"
  34. mkdir -p $HADOOP_DIR
  35. rm -rf $HADOOP_HOME
  36. echo "Unpacking $CDH_CACHE to $HADOOP_DIR"
  37. tar -C $HADOOP_DIR -xzf $CDH_CACHE
  38. }
  39. ##########
  40. MR1_URL=${MR1_URL:-http://nightly.cloudera.com/cdh4/cdh/4/mr1-0.23.3-mr1-cdh4b2-SNAPSHOT.tar.gz}
  41. MR1_TGZ=$(basename $MR1_URL)
  42. MR1_VERSION=${MR1_TGZ/.tar.gz/}
  43. MR1_VERSION=${MR1_VERSION/mr1/hadoop}
  44. MR1_CACHE="$HOME/.hue_cache/${MR1_TGZ}"
  45. build_mr1() {
  46. if [ ! -f $MR1_CACHE ]; then
  47. mkdir -p $HOME/.hue_cache
  48. echo "Downloading $MR1_URL..."
  49. wget $MR1_URL -O $MR1_CACHE
  50. fi
  51. MR1_DIR=$HUE_ROOT/ext/mr1
  52. export HADOOP_MR1_HOME="$MR1_DIR/${MR1_VERSION}"
  53. mkdir -p $MR1_DIR
  54. rm -rf $HADOOP_MR1_HOME
  55. echo "Unpacking $MR1_CACHE to $MR1_DIR"
  56. tar -C $MR1_DIR -xzf $MR1_CACHE
  57. }
  58. ##########
  59. HIVE_URL=${HIVE_URL:-http://nightly.cloudera.com/cdh4/cdh/4/hive-0.8.1-cdh4b2-SNAPSHOT.tar.gz}
  60. HIVE_TGZ=$(basename $HIVE_URL)
  61. HIVE_VERSION=${HIVE_TGZ/.tar.gz/}
  62. HIVE_CACHE="$HOME/.hue_cache/${HIVE_TGZ}"
  63. build_hive() {
  64. if [ ! -f $HOME/.hue_cache ]; then
  65. mkdir -p $HOME/.hue_cache
  66. echo "Downloading $HIVE_URL..."
  67. wget $HIVE_URL -O $HIVE_CACHE
  68. fi
  69. HIVE_DIR=$HUE_ROOT/ext/hive
  70. export HIVE_HOME="$HIVE_DIR/${HIVE_VERSION}"
  71. mkdir -p $HIVE_DIR
  72. rm -rf $HIVE_HOME
  73. echo "Unpacking $HIVE_CACHE to $HIVE_DIR"
  74. tar -C $HIVE_DIR -xzf $HIVE_CACHE
  75. export HIVE_CONF_DIR=$HIVE_HOME/conf
  76. }