Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.7.0
-
None
-
Reviewed
Description
The index building patch (Hive-417) is checked into trunk, this JIRA issue tracks supporting indexes in Hive compiler & execution engine for SELECT queries.
This is in ref. to John's comment at
on creating separate JIRA issue for tracking index usage in optimizer & query execution.
The aim of this effort is to use indexes to accelerate query execution (for certain class of queries). E.g.
- Filters and range scans (already being worked on by He Yongqiang as part of
HIVE-417?) - Joins (index based joins)
- Group By, Order By and other misc cases
The proposal is multi-step:
1. Building index based operators, compiler and execution engine changes
2. Optimizer enhancements (e.g. cost-based optimizer to compare and choose between index scans, full table scans etc.)
This JIRA initially focuses on the first step. This JIRA is expected to hold the information about index based plans & operator implementations for above mentioned cases.