Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ec2/spark_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from urllib.request import urlopen, Request
from urllib.error import HTTPError

SPARK_EC2_VERSION = "1.2.1"
SPARK_EC2_VERSION = "1.3.1"
SPARK_EC2_DIR = os.path.dirname(os.path.realpath(__file__))

VALID_SPARK_VERSIONS = set([
Expand All @@ -65,6 +65,8 @@
"1.1.1",
"1.2.0",
"1.2.1",
"1.3.0",
"1.3.1",
])

SPARK_TACHYON_MAP = {
Expand All @@ -75,6 +77,8 @@
"1.1.1": "0.5.0",
"1.2.0": "0.5.0",
"1.2.1": "0.5.0",
"1.3.0": "0.5.0",
"1.3.1": "0.5.0",
}

DEFAULT_SPARK_VERSION = SPARK_EC2_VERSION
Expand Down