Uh oh!
There was an error while loading. Please reload this page.
[SPARK-6953] [PySpark] speed up python tests - #5427
Closed
davies wants to merge 11 commits into
Closed
Conversation
SparkQA
commented
Apr 8, 2015
Test build #29883 has finished for PR 5427 at commit
|
SparkQA
commented
Apr 8, 2015
Test build #29893 has finished for PR 5427 at commit
|
added 4 commits
April 13, 2015 16:22
Conflicts: python/pyspark/streaming/tests.py
SparkQA
commented
Apr 16, 2015
Test build #30386 has finished for PR 5427 at commit
|
SparkQA
commented
Apr 16, 2015
Test build #30385 has finished for PR 5427 at commit
|
mengxr
commented
Apr 16, 2015
Contributor
@davies Did you measure the speedup on each component? |
davies
commented
Apr 16, 2015
ContributorAuthor
@mengxr I had update the difference in the description. |
SparkQA
commented
Apr 16, 2015
Test build #30427 has finished for PR 5427 at commit
|
Conflicts: python/pyspark/mllib/tests.py python/pyspark/mllib/tree.py python/pyspark/tests.py
SparkQA
commented
Apr 17, 2015
Test build #30444 has finished for PR 5427 at commit
|
SparkQA
commented
Apr 17, 2015
Test build #30458 has finished for PR 5427 at commit
|
SparkQA
commented
Apr 18, 2015
Test build #30516 has finished for PR 5427 at commit
|
mengxr
commented
Apr 21, 2015
Contributor
MLlib changes look good to me. |
rxin added a commit
to rxin/spark
that referenced
this pull request
Apr 21, 2015
[SPARK-6953] [PySpark] speed up python tests Conflicts: python/pyspark/streaming/tests.py
rxin added a commit
to rxin/spark
that referenced
this pull request
Apr 21, 2015
[SPARK-6953] [PySpark] speed up python tests Signed-off-by: Reynold Xin <rxin@databricks.com> Conflicts: python/pyspark/streaming/tests.py (cherry picked from commit 21b15f5) Signed-off-by: Reynold Xin <rxin@databricks.com>
rxin
commented
Apr 21, 2015
Contributor
I brought this up to date at #5605 |
asfgit pushed a commit
that referenced
this pull request
Apr 22, 2015
This PR try to speed up some python tests: ``` tests.py 144s -> 103s -41s mllib/classification.py 24s -> 17s -7s mllib/regression.py 27s -> 15s -12s mllib/tree.py 27s -> 13s -14s mllib/tests.py 64s -> 31s -33s streaming/tests.py 185s -> 84s -101s ``` Considering python3, the total saving will be 558s (almost 10 minutes) (core, and streaming run three times, mllib runs twice). During testing, it will show used time for each test file: ``` Run core tests ... Running test: pyspark/rdd.py ... ok (22s) Running test: pyspark/context.py ... ok (16s) Running test: pyspark/conf.py ... ok (4s) Running test: pyspark/broadcast.py ... ok (4s) Running test: pyspark/accumulators.py ... ok (4s) Running test: pyspark/serializers.py ... ok (6s) Running test: pyspark/profiler.py ... ok (5s) Running test: pyspark/shuffle.py ... ok (1s) Running test: pyspark/tests.py ... ok (103s) 144s ``` Author: Reynold Xin <rxin@databricks.com> Author: Xiangrui Meng <meng@databricks.com> Closes#5605 from rxin/python-tests-speed and squashes the following commits: d08542d [Reynold Xin] Merge pull request #14 from mengxr/SPARK-695389321ee [Xiangrui Meng] fix seed in tests 3ad2387 [Reynold Xin] Merge pull request #5427 from davies/python_tests
nemccarthy pushed a commit
to nemccarthy/spark
that referenced
this pull request
Jun 19, 2015
This PR try to speed up some python tests: ``` tests.py 144s -> 103s -41s mllib/classification.py 24s -> 17s -7s mllib/regression.py 27s -> 15s -12s mllib/tree.py 27s -> 13s -14s mllib/tests.py 64s -> 31s -33s streaming/tests.py 185s -> 84s -101s ``` Considering python3, the total saving will be 558s (almost 10 minutes) (core, and streaming run three times, mllib runs twice). During testing, it will show used time for each test file: ``` Run core tests ... Running test: pyspark/rdd.py ... ok (22s) Running test: pyspark/context.py ... ok (16s) Running test: pyspark/conf.py ... ok (4s) Running test: pyspark/broadcast.py ... ok (4s) Running test: pyspark/accumulators.py ... ok (4s) Running test: pyspark/serializers.py ... ok (6s) Running test: pyspark/profiler.py ... ok (5s) Running test: pyspark/shuffle.py ... ok (1s) Running test: pyspark/tests.py ... ok (103s) 144s ``` Author: Reynold Xin <rxin@databricks.com> Author: Xiangrui Meng <meng@databricks.com> Closesapache#5605 from rxin/python-tests-speed and squashes the following commits: d08542d [Reynold Xin] Merge pull request apache#14 from mengxr/SPARK-6953 89321ee [Xiangrui Meng] fix seed in tests 3ad2387 [Reynold Xin] Merge pull request apache#5427 from davies/python_tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR try to speed up some python tests:
Considering python3, the total saving will be 558s (almost 10 minutes) (core, and streaming run three times, mllib runs twice).
During testing, it will show used time for each test file: