Skip to content

Commit c64cc43

Browse files
committed
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 apache#1156 which changed the default type for m3 instances to PVM. Author: Patrick Wendell <[email protected]> Closes apache#2244 from pwendell/ec2-hvm and squashes the following commits: 1342d7e [Patrick Wendell] SPARK-3358: [EC2] Switch back to HVM instances for m3.X.
1 parent 24ab384 commit c64cc43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ec2/spark_ec2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ def get_spark_ami(opts):
234234
"cg1.4xlarge": "hvm",
235235
"hs1.8xlarge": "pvm",
236236
"hi1.4xlarge": "pvm",
237-
"m3.medium": "pvm",
238-
"m3.large": "pvm",
239-
"m3.xlarge": "pvm",
240-
"m3.2xlarge": "pvm",
237+
"m3.medium": "hvm",
238+
"m3.large": "hvm",
239+
"m3.xlarge": "hvm",
240+
"m3.2xlarge": "hvm",
241241
"cr1.8xlarge": "hvm",
242242
"i2.xlarge": "hvm",
243243
"i2.2xlarge": "hvm",

0 commit comments

Comments
 (0)