Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.7.0
-
None
Description
When reading a series of files in nested directories, Drill currently adds columns representing the directory structure that was traversed to reach the file currently being read. These columns are stored as varchar under tha names dir0, dir1, ... As these are just regular columns, Drill allows arbitrary queries against this data, in terms of aggregates, filter, sort, etc. To allow optimizing reads, basic partition pruning has already been added to prune in the case of an expression like dir0 = "2015" or a simple in list, which is converted during planning to a series of ORs of equals expressions. If users want to query the directory information dynamically, and not include specific directory names in the query, this will prompt a full table scan and filter operation on the dir columns. This enhancement is to allow more complex queries to be run against directory metadata, and only scanning the matching directories.
Attachments
Attachments
Issue Links
- depends upon
-
DRILL-2143 Remove RecordBatch from setup method of DrillFunc interface
- Closed
-
DRILL-2060 Support constant folding in expressions in Filter
- Resolved