aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-09-02 21:30:09 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-09-02 21:31:09 -0700
commitbc4a2057e9783f0324d95a1fecf8c18cda9ff863 (patch)
tree05df4dd077b1fd85765ccf40b1c48d7e99486da8
parentffdb2fcf8cd5880375bee52ee101e0373bf63e27 (diff)
downloadspark-bc4a2057e9783f0324d95a1fecf8c18cda9ff863.tar.gz
spark-bc4a2057e9783f0324d95a1fecf8c18cda9ff863.tar.bz2
spark-bc4a2057e9783f0324d95a1fecf8c18cda9ff863.zip
SPARK-3358: [EC2] Switch back to HVM instances for m3.X.
During regression tests of Spark 1.1 we discovered perf issues with PVM instances when running PySpark. This reverts a change added in #1156 which changed the default type for m3 instances to PVM. Author: Patrick Wendell <pwendell@gmail.com> Closes #2244 from pwendell/ec2-hvm and squashes the following commits: 1342d7e [Patrick Wendell] SPARK-3358: [EC2] Switch back to HVM instances for m3.X.
-rwxr-xr-xec2/spark_ec2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 210788c05b..2e36345365 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -227,10 +227,10 @@ def get_spark_ami(opts):
"cg1.4xlarge": "hvm",
"hs1.8xlarge": "pvm",
"hi1.4xlarge": "pvm",
- "m3.medium": "pvm",
- "m3.large": "pvm",
- "m3.xlarge": "pvm",
- "m3.2xlarge": "pvm",
+ "m3.medium": "hvm",
+ "m3.large": "hvm",
+ "m3.xlarge": "hvm",
+ "m3.2xlarge": "hvm",
"cr1.8xlarge": "hvm",
"i2.xlarge": "hvm",
"i2.2xlarge": "hvm",