You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by pw...@apache.org on 2014/09/03 06:30:12 UTC

git commit: SPARK-3358: [EC2] Switch back to HVM instances for m3.X.

Repository: spark
Updated Branches:
  refs/heads/master 24ab38401 -> c64cc435e


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 <pw...@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.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c64cc435
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c64cc435
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c64cc435

Branch: refs/heads/master
Commit: c64cc435e2a29c6f0ff66022fd4d5b4cb5011718
Parents: 24ab384
Author: Patrick Wendell <pw...@gmail.com>
Authored: Tue Sep 2 21:30:09 2014 -0700
Committer: Patrick Wendell <pw...@gmail.com>
Committed: Tue Sep 2 21:30:09 2014 -0700

----------------------------------------------------------------------
 ec2/spark_ec2.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/c64cc435/ec2/spark_ec2.py
----------------------------------------------------------------------
diff --git a/ec2/spark_ec2.py b/ec2/spark_ec2.py
index 7e25df5..eed6eb8 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",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org