-
Notifications
You must be signed in to change notification settings - Fork 11
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
Maven package command fills hard drive with temporary test files #277
Comments
Where are these tmp files created, I have OS X El Capitan and have never seen this. How long does your mvn package take to run? |
I just updated to master and ran |
This seems like a memory issue, spark is persisting to disk because it's On Thu, Jun 23, 2016 at 7:37 AM, Christopher Waldon <
|
I am seeing the same thing. I killed mvn package after 10 minutes and it On Thu, Jun 23, 2016 at 8:01 AM, Brian Burns [email protected]
|
I just pulled the latest master and did
I get a clean build and run of the test cases
|
It works fine on my mac pro with 32G ram. On my mac book with 16G it hangs. Both machines are on maven 3.3.9. |
I'm running
on a Macbook Pro Retina from Early 2013 with 16GB of RAM and a 2.8GHz i7. |
I have the same specs as @whereswaldon so it is not memory I would bet it is mvn I am running Apache Maven 3.3.3 both @bpburns and @whereswaldon are running 3.3.9 |
On OS X El Capitan, running
mvn package
runs the nashorn tests by default. These tests create millions of temporary files that slowly consume the host computer's hard drive. The first time that I did this, it create 440GB of temporary files. I assumed that I had done something wrong and tried again today, but I cut it short after about 50GB of temporary files. They are deleted when the system reboots, but it's still a problem if a user can't run the test suite.I don't know what the files are for, but I'm guessing that they're created as part of the testing process. If that's the case, can they be deleted in the teardown phase of each test? (If this is wildly off-base because I don't know anything about the test framework, please forgive me)
The text was updated successfully, but these errors were encountered: