alamb commented on code in PR #9402: URL: https://github.com/apache/arrow-datafusion/pull/9402#discussion_r1508128146
########## docs/source/contributor-guide/index.md: ########## @@ -157,6 +157,8 @@ DataFusion is written in Rust and it uses a standard rust toolkit: - `cargo test` to test - etc. +Note that running `cargo test` requires signficant memory resources, due to cargo running many tests in parallel by default. If you run into issues with slow tests or system lock ups, you can signficantly reduce the memory required by instead running `cargo test -- --test-threads=1`. For more information see [this issue](https://github.com/apache/arrow-datafusion/issues/5347). Review Comment: ```suggestion Note that running `cargo test` requires significant memory resources, due to cargo running many tests in parallel by default. If you run into issues with slow tests or system lock ups, you can significantly reduce the memory required by instead running `cargo test -- --test-threads=1`. For more information see [this issue](https://github.com/apache/arrow-datafusion/issues/5347). ``` -- 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]
