spark git commit: [SPARK-11126][SQL] Fix a memory leak in SQLListener._stageIdToStageMetrics

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master a337c235a -> 94c8fef29 [SPARK-11126][SQL] Fix a memory leak in SQLListener._stageIdToStageMetrics SQLListener adds all stage infos to `_stageIdToStageMetrics`, but only removes stage infos belonging to SQL executions. This PR fixed it by

spark git commit: [SPARK-11126][SQL] Fix a memory leak in SQLListener._stageIdToStageMetrics

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/branch-1.5 fa7c3ead7 -> 803339ca4 [SPARK-11126][SQL] Fix a memory leak in SQLListener._stageIdToStageMetrics SQLListener adds all stage infos to `_stageIdToStageMetrics`, but only removes stage infos belonging to SQL executions. This PR fixed it

spark git commit: [SPARK-7018][BUILD] Refactor dev/run-tests-jenkins into Python

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 94c8fef29 -> d3180c25d [SPARK-7018][BUILD] Refactor dev/run-tests-jenkins into Python This commit refactors the `run-tests-jenkins` script into Python. This refactoring was done by brennonyork in #7401; this PR contains a few minor edits

spark git commit: [SPARK-11158][SQL] Modified _verify_type() to be more informative on Errors by presenting the Object

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master 8d4449c7f -> a337c235a [SPARK-11158][SQL] Modified _verify_type() to be more informative on Errors by presenting the Object The _verify_type() function had Errors that were raised when there were Type conversion issues but left out the

spark git commit: [SPARK-11172] Close JsonParser/Generator in test

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master e2dfdbb2c -> 3895b2113 [SPARK-11172] Close JsonParser/Generator in test Author: tedyu Closes #9157 from tedyu/master. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit:

spark git commit: [SPARK-11174] [DOCS] Fix typo in the GraphX programming guide

2015-10-18 Thread srowen
Repository: spark Updated Branches: refs/heads/master 3895b2113 -> a112d69fd [SPARK-11174] [DOCS] Fix typo in the GraphX programming guide This patch fixes a small typo in the GraphX programming guide Author: Lukasz Piepiora Closes #9160 from

spark git commit: MAINTENANCE: Automated closing of pull requests.

2015-10-18 Thread pwendell
Repository: spark Updated Branches: refs/heads/master 0480d6ca8 -> 8d4449c7f MAINTENANCE: Automated closing of pull requests. This commit exists to close the following pull requests on Github: Closes #8737 (close requested by 'srowen') Closes #5323 (close requested by 'JoshRosen') Closes

spark git commit: [SPARK-11169] Remove the extra spaces in merge script

2015-10-18 Thread joshrosen
Repository: spark Updated Branches: refs/heads/master a112d69fd -> 0480d6ca8 [SPARK-11169] Remove the extra spaces in merge script Our merge script now turns ``` [SPARK-1234][SPARK-1235][SPARK-1236][SQL] description ``` into ``` [SPARK-1234] [SPARK-1235] [SPARK-1236] [SQL] description ``` The