aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatsunori Kanda <potix2@gmail.com>2015-02-12 14:38:42 -0800
committerAndrew Or <andrew@databricks.com>2015-02-12 14:38:42 -0800
commit9c8076502f0c2c6a6dcdc6720d16b34132dfc06a (patch)
tree7a7c2e0cddd0fccbe5013839c3d44181a38255c2
parent893d6fd7049daf3c4d01eb6a960801cd064d5f73 (diff)
downloadspark-9c8076502f0c2c6a6dcdc6720d16b34132dfc06a.tar.gz
spark-9c8076502f0c2c6a6dcdc6720d16b34132dfc06a.tar.bz2
spark-9c8076502f0c2c6a6dcdc6720d16b34132dfc06a.zip
[EC2] Update default Spark version to 1.2.1
Author: Katsunori Kanda <potix2@gmail.com> Closes #4566 from potix2/ec2-update-version-1-2-1 and squashes the following commits: 77e7840 [Katsunori Kanda] [EC2] Update default Spark version to 1.2.1
-rwxr-xr-xec2/spark_ec2.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 0ea7365d75..35209aec5f 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -42,7 +42,7 @@ from datetime import datetime
from optparse import OptionParser
from sys import stderr
-SPARK_EC2_VERSION = "1.2.0"
+SPARK_EC2_VERSION = "1.2.1"
SPARK_EC2_DIR = os.path.dirname(os.path.realpath(__file__))
VALID_SPARK_VERSIONS = set([
@@ -58,6 +58,7 @@ VALID_SPARK_VERSIONS = set([
"1.1.0",
"1.1.1",
"1.2.0",
+ "1.2.1",
])
DEFAULT_SPARK_VERSION = SPARK_EC2_VERSION