diff --git a/CHANGES.txt b/CHANGES.txt index dfe0384..75de330 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +1.3.3 - 2015-11-12 + + 1. Added support for Apache Tajo via pull-request: + https://github.com/GoogleCloudPlatform/bdutil/pull/67 + 2. The YARN capacity scheduler can now be configured when deploying a + cluster: https://github.com/GoogleCloudPlatform/bdutil/pull/64 + + 1.3.2 - 2015-09-15 1. Updated Spark configurations to make Cloud Bigtable work with Spark. diff --git a/bdutil b/bdutil index 390a5aa..cf5e163 100755 --- a/bdutil +++ b/bdutil @@ -20,7 +20,7 @@ # # Usage: ./bdutil [deploy|delete] [optional: ]... -BDUTIL_VERSION='1.3.2' +BDUTIL_VERSION='1.3.3' # Prints the usage for this script and exits. function print_usage() { diff --git a/bdutil_env.sh b/bdutil_env.sh index 15b17a8..d3e4d67 100644 --- a/bdutil_env.sh +++ b/bdutil_env.sh @@ -199,10 +199,10 @@ CORES_PER_REDUCE_TASK=1.0 JAVAOPTS='-Xms1024m -Xmx2048m' # Complete URL for downloading the GCS Connector JAR file. -GCS_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-1.4.2-hadoop1.jar' +GCS_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-1.4.3-hadoop1.jar' # Complete URL for downloading the BigQuery Connector JAR file. -BIGQUERY_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/bigquery/bigquery-connector-0.7.2-hadoop1.jar' +BIGQUERY_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/bigquery/bigquery-connector-0.7.3-hadoop1.jar' # Complete URL for downloading the configuration script. BDCONFIG='https://storage.googleapis.com/hadoop-tools/bdconfig/bdconfig-0.28.1.tar.gz' diff --git a/hadoop2_env.sh b/hadoop2_env.sh index 5393617..2b90a40 100644 --- a/hadoop2_env.sh +++ b/hadoop2_env.sh @@ -44,9 +44,9 @@ CORES_PER_REDUCE_TASK=2.0 CORES_PER_APP_MASTER=2.0 # Connector with Hadoop AbstractFileSystem implemenation for YARN -GCS_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-1.4.2-hadoop2.jar' +GCS_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-1.4.3-hadoop2.jar' -BIGQUERY_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/bigquery/bigquery-connector-0.7.2-hadoop2.jar' +BIGQUERY_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/bigquery/bigquery-connector-0.7.3-hadoop2.jar' HDFS_DATA_DIRS_PERM='700'