alamb commented on PR #6708: URL: https://github.com/apache/arrow-datafusion/pull/6708#issuecomment-1601236492
> When I run command cargo test in Terminal, it got error with message : > `message: \"Too many open files\"` That looks like you either have to increase your ulimit to increase the number of open files, or perhaps you can [reduce the parallelism of the tests](https://doc.rust-lang.org/book/ch11-02-running-tests.html#running-tests-in-parallel-or-consecutively): ```shell $ cargo test -- --test-threads=1 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
