Uh oh!
There was an error while loading. Please reload this page.
[Hot Fix][Streaming] Fix WriteAheadLogBackedBlockRDDSuite - #3701
Conversation
scwf
commented
Dec 15, 2014
link to #3687 |
SparkQA
commented
Dec 15, 2014
Test build #24458 has started for PR 3701 at commit
|
srowen
commented
Dec 15, 2014
This is for SPARK-4826 right? can you explain the fix? is it that reserved characters like |
scwf
commented
Dec 15, 2014
Yes, it is. I have not noticed that PR. Based on my test, this failure is caused by |
SparkQA
commented
Dec 15, 2014
Test build #24458 has finished for PR 3701 at commit
|
AmplabJenkins
commented
Dec 15, 2014
Test PASSed. |
JoshRosen
commented
Dec 15, 2014
I've opened a new PR with what I think is is a more direct approach to fixing this issue: #3704. Please take a look and let me know what you think. |
This PR should fix SPARK-4826, an issue where a bug in how we generate temp. file names was causing spurious test failures in the write ahead log suites. Closes#3695. Closes#3701. Author: Josh Rosen <joshrosen@databricks.com> Closes#3704 from JoshRosen/SPARK-4826 and squashes the following commits: f2307f5 [Josh Rosen] Use Spark Utils class for directory creation/deletion a693ddb [Josh Rosen] remove unused Random import b275e41 [Josh Rosen] Move creation of temp. dir to beforeEach/afterEach. 9362919 [Josh Rosen] [SPARK-4826] Fix bug in generation of temp file names. in WAL suites. 86c1944 [Josh Rosen] Revert "HOTFIX: Disabling failing block manager test" (cherry picked from commit f6b8591) Signed-off-by: Josh Rosen <joshrosen@databricks.com>
WriteAheadLogBackedBlockRDDSuitefailed due to the same random file name(https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/24456/consoleFull)Using another way to produce random file name(http://alvinalexander.com/scala/creating-random-strings-in-scala).