-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-1527] change rootDir*.getName to rootDir*.getAbsolutePath #436
Conversation
directories are deleted when the test is finished.
Can one of the admins verify this patch? |
As discussed with @srowen on JIRA, I think maybe we should review that relative paths and absolute paths are used appropriately. |
JIRA issue: SPARK-1527 can one of the admin please verify this patch ?! Thanks. Niraj |
Jenkins, test this please. |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Rename VertexID -> VertexId in GraphX
@pwendell On the subject of SPARK-1623, this PR / JIRA can also go in, in my opinion. It's a related small good fix to a potential test problem. Then I think both are done. |
Seems like a good (and pretty minor) change. I'll pull this in, thanks. |
JIRA issue: [SPARK-1527](https://issues.apache.org/jira/browse/SPARK-1527) getName() only gets the last component of the file path. When deleting test-generated directories, we should pass the generated directory's absolute path to DiskBlockManager. Author: Ye Xianjin <[email protected]> This patch had conflicts when merged, resolved by Committer: Patrick Wendell <[email protected]> Closes #436 from advancedxy/SPARK-1527 and squashes the following commits: 4678bab [Ye Xianjin] change rootDir*.getname to rootDir*.getAbsolutePath so the temporary directories are deleted when the test is finished. (cherry picked from commit 753b04d) Signed-off-by: Patrick Wendell <[email protected]>
JIRA issue: [SPARK-1527](https://issues.apache.org/jira/browse/SPARK-1527) getName() only gets the last component of the file path. When deleting test-generated directories, we should pass the generated directory's absolute path to DiskBlockManager. Author: Ye Xianjin <[email protected]> This patch had conflicts when merged, resolved by Committer: Patrick Wendell <[email protected]> Closes apache#436 from advancedxy/SPARK-1527 and squashes the following commits: 4678bab [Ye Xianjin] change rootDir*.getname to rootDir*.getAbsolutePath so the temporary directories are deleted when the test is finished.
Rename VertexID -> VertexId in GraphX (cherry picked from commit 3d9e66d) Signed-off-by: Reynold Xin <[email protected]>
Fix devstack trove deployment failling
JIRA issue: SPARK-1527
getName() only gets the last component of the file path. When deleting test-generated directories,
we should pass the generated directory's absolute path to DiskBlockManager.