alamb commented on code in PR #8620:
URL: https://github.com/apache/arrow-datafusion/pull/8620#discussion_r1437844313
##########
.github/workflows/rust.yml:
##########
@@ -99,6 +99,11 @@ jobs:
rust-version: stable
- name: Run tests (excluding doctests)
run: cargo test --lib --tests --bins --features avro,json,backtrace
+ env:
+ # do not produce debug symbols to keep memory usage down
+ RUSTFLAGS: "-C debuginfo=0"
+ RUST_BACKTRACE: "1"
+ RUST_MIN_STACK: "2384500"
Review Comment:
I think it would be good to add context to why the `RUST_MIN_STACK` is set
to help us in the future remember
```suggestion
# avoid thread 'tpcds_physical_q54' has overflowed its stack
RUST_MIN_STACK: "2384500"
```
(and the same comment applies to the other places in this file)
--
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]