aboutsummaryrefslogtreecommitdiff
path: root/ec2
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:30:09 -0700
commitc64cc435e2a29c6f0ff66022fd4d5b4cb5011718 (patch)
treee22e61bd0d63e578d165d7d3ced6ebd8e293493d /ec2
parent24ab384018270e4f7af7eb8ca7192f337498eaf5 (diff)
downloadspark-c64cc435e2a29c6f0ff66022fd4d5b4cb5011718.tar.gz
spark-c64cc435e2a29c6f0ff66022fd4d5b4cb5011718.tar.bz2
spark-c64cc435e2a29c6f0ff66022fd4d5b4cb5011718.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.
Diffstat (limited to 'ec2')
-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 7e25df57ee..eed6eb8485 100755
--- a/ec2/spark_ec2.py
+++ b/ec2/spark_ec2.py
@@ -234,10 +234,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",