SupportsPushDownFilters
SupportsPushDownFilters
is the contract for DataSourceReaders that support push down filters to the data source (and hence reduce the size of the data to be read).
1 2 3 4 5 6 7 8 9 10 |
package org.apache.spark.sql.sources.v2.reader; interface SupportsPushDownFilters extends DataSourceReader { Filter[] pushFilters(Filter[] filters); Filter[] pushedFilters(); } |
Note
|
In other words, using the contract is as treading on thin ice. |
Method | Description |
---|---|
Used when…FIXME |
|
Used when…FIXME |