-
Notifications
You must be signed in to change notification settings - Fork 29.1k
SPARK-1587 Fix thread leak #504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…parkContext.stop is invoked. Causes tests to fail
|
Merged build triggered. |
|
Merged build started. |
|
Merged build finished. All automated tests passed. |
|
All automated tests passed. |
|
CC @tdas probably leftovers from the gc patch ? |
|
Maybe! Though could be that some of them were missing from even before! Good catch! |
|
not some, i think most :-) |
|
From the casual look through, I didnt see anything that breaks any of the cleaning stuff. So LGTM. |
|
Looks good to me too -- didn't check too much for further missing pieces, but what's here seems good to go. Merged into master and branch-1.0. |
mvn test fails (intermittently) due to thread leak - since scalatest runs all tests in same vm. Author: Mridul Muralidharan <mridulm80@apache.org> Closes #504 from mridulm/resource_leak_fixes and squashes the following commits: a5d10d0 [Mridul Muralidharan] Prevent thread leaks while running tests : cleanup all threads when SparkContext.stop is invoked. Causes tests to fail 7b5e19c [Mridul Muralidharan] Prevent NPE while running tests (cherry picked from commit dd681f5) Signed-off-by: Aaron Davidson <aaron@databricks.com>
Fix PySpark hang when input files are deleted (SPARK-1025) This pull request addresses [SPARK-1025](https://spark-project.atlassian.net/browse/SPARK-1025), an issue where PySpark could hang if its input files were deleted.
mvn test fails (intermittently) due to thread leak - since scalatest runs all tests in same vm. Author: Mridul Muralidharan <mridulm80@apache.org> Closes apache#504 from mridulm/resource_leak_fixes and squashes the following commits: a5d10d0 [Mridul Muralidharan] Prevent thread leaks while running tests : cleanup all threads when SparkContext.stop is invoked. Causes tests to fail 7b5e19c [Mridul Muralidharan] Prevent NPE while running tests
Oopsie in apache#504. Author: Aaron Davidson <aaron@databricks.com> Closes apache#527 from aarondav/stop and squashes the following commits: 8d1446a [Aaron Davidson] Call correct stop().
Fix PySpark hang when input files are deleted (SPARK-1025) This pull request addresses [SPARK-1025](https://spark-project.atlassian.net/browse/SPARK-1025), an issue where PySpark could hang if its input files were deleted. (cherry picked from commit c40619d) Signed-off-by: Patrick Wendell <pwendell@gmail.com>
…#504) This one is really hard to deal with. Since internally we have used `yyyy-MM-dd HH:mm:ss.S` as a default SimpleDateFormat there's no way to keep STRICT parsing and not accidentally cause a failure. This will require rewriting data with any timestamps that have csv
…apache#504)" (apache#505) Reverts palantir#504 This pr is not necessary. After more debugging it looks like it's not possible to replicate `yyyy-MM-dd HH:mm:ss.S` SDF format in java.time.
Add a pipeline to trigger acceptance tests against OpenStack Stein release when comment 'recheck stable/stein' in pull request. Related: theopenlab/openlab#231
mvn test fails (intermittently) due to thread leak - since scalatest runs all tests in same vm.