You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/user-guide/configs.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The following configuration settings are available:
92
92
| datafusion.execution.parquet.coerce_int96 | NULL | (reading) If true, parquet reader will read columns of physical type int96 as originating from a different resolution than nanosecond. This is useful for reading data from systems like Spark which stores microsecond resolution timestamps in an int96 allowing it to write values with a larger date range than 64-bit timestamps with nanosecond resolution. |
93
93
| datafusion.execution.parquet.bloom_filter_on_read | true | (reading) Use any available bloom filters when reading parquet files |
94
94
| datafusion.execution.parquet.max_predicate_cache_size | NULL | (reading) The maximum predicate cache size, in bytes. When `pushdown_filters` is enabled, sets the maximum memory used to cache the results of predicate evaluation between filter evaluation and output generation. Decreasing this value will reduce memory usage, but may increase IO and CPU usage. None means use the default parquet reader setting. 0 means no caching. |
95
-
| datafusion.execution.parquet.filter_effectiveness_threshold | 0.8 | (reading) Minimum filter effectiveness threshold for adaptive filter pushdown. Only filters that filter out at least this fraction of rows will be promoted to row filters during adaptive filter pushdown. A value of 1.0 means only filters that filter out all rows will be promoted. A value of 0.0 means all filters will be promoted. Because there can be a high I/O cost to pushing down ineffective filters, recommended values are in the range [0.8, 0.95], depending on random I/0 costs. |
95
+
| datafusion.execution.parquet.filter_effectiveness_threshold | 0.8 | (reading) Minimum filter effectiveness threshold for adaptive filter pushdown. Only filters that filter out at least this fraction of rows will be promoted to row filters during adaptive filter pushdown. A value of 1.0 means only filters that filter out all rows will be promoted. A value of 0.0 means all filters will be promoted. Because there can be a high I/O cost to pushing down ineffective filters, recommended values are in the range [0.8, 0.95], depending on random I/0 costs. |
96
96
| datafusion.execution.parquet.data_pagesize_limit | 1048576 | (writing) Sets best effort maximum size of data page in bytes |
0 commit comments