Skip to content

Commit 365cb2f

Browse files
committed
Increase default limit to 20 mb
1 parent 3b7ae1f commit 365cb2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/execution/src/cache/file_statistics_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ struct DefaultFileStatisticsCacheState {
7171
memory_used: usize,
7272
}
7373

74-
pub const DEFAULT_FILE_STATISTICS_MEMORY_LIMIT: usize = 10 * 1024 * 1024; // 10MiB
74+
pub const DEFAULT_FILE_STATISTICS_MEMORY_LIMIT: usize = 20 * 1024 * 1024; // 10MiB
7575

7676
impl Default for DefaultFileStatisticsCacheState {
7777
fn default() -> Self {

0 commit comments

Comments
 (0)