This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 589c8309ab Fix 'Too many open files' on fuzz test. (#12961)
589c8309ab is described below
commit 589c8309abfe5bfd128ebde137c5c14eb96dd2f2
Author: Daniel Hegberg <[email protected]>
AuthorDate: Wed Oct 16 11:16:02 2024 -0700
Fix 'Too many open files' on fuzz test. (#12961)
---
datafusion/core/tests/fuzz_cases/sort_fuzz.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/core/tests/fuzz_cases/sort_fuzz.rs
b/datafusion/core/tests/fuzz_cases/sort_fuzz.rs
index fae4731569..4ba06ef1d2 100644
--- a/datafusion/core/tests/fuzz_cases/sort_fuzz.rs
+++ b/datafusion/core/tests/fuzz_cases/sort_fuzz.rs
@@ -37,8 +37,8 @@ use test_utils::{batches_to_vec, partitions_to_sorted_vec};
const KB: usize = 1 << 10;
#[tokio::test]
#[cfg_attr(tarpaulin, ignore)]
-async fn test_sort_1k_mem() {
- for (batch_size, should_spill) in [(5, false), (20000, true), (1000000,
true)] {
+async fn test_sort_10k_mem() {
+ for (batch_size, should_spill) in [(5, false), (20000, true), (500000,
true)] {
SortTest::new()
.with_int32_batches(batch_size)
.with_pool_size(10 * KB)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]