Skip to content

Commit bc4a205

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 #1156 which changed the default type for m3 instances to PVM. Author: Patrick Wendell <[email protected]> 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.
1 parent ffdb2fc commit bc4a205

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ec2/spark_ec2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ def get_spark_ami(opts):
227227
"cg1.4xlarge": "hvm",
228228
"hs1.8xlarge": "pvm",
229229
"hi1.4xlarge": "pvm",
230-
"m3.medium": "pvm",
231-
"m3.large": "pvm",
232-
"m3.xlarge": "pvm",
233-
"m3.2xlarge": "pvm",
230+
"m3.medium": "hvm",
231+
"m3.large": "hvm",
232+
"m3.xlarge": "hvm",
233+
"m3.2xlarge": "hvm",
234234
"cr1.8xlarge": "hvm",
235235
"i2.xlarge": "hvm",
236236
"i2.2xlarge": "hvm",

0 commit comments

Comments
 (0)