Skip to content

Commit 8e45765

Browse files
committed
Increase default limit to 10 mb
1 parent cbd9b1e commit 8e45765

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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 = 1024 * 1024; // 1MiB
74+
pub const DEFAULT_FILE_STATISTICS_MEMORY_LIMIT: usize = 10 * 1024 * 1024; // 10MiB
7575

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

0 commit comments

Comments
 (0)