dbgroup-at-ucsc / dbtune

This research project aims to develop tools in order to make index tuning easier and more effective.
http://users.soe.ucsc.edu/~alkis/tuning/
Other
5 stars 3 forks source link

Remove Redundant Plans Given a Set of Candidate Indexes #322

Open tqtrung opened 11 years ago

tqtrung commented 11 years ago

Some ideas: (1) A plan p_i can be labeled as redundant and removed if the cost under the best case (using the candidate indexes) is less than the cost under the worst case (using the candidate indexes) of some other plan p_j.

Note that if some slots of p_j require sorted order, then the worst case cost of p_j must be INF.

(2) Compute distance between plans,

(3) Sampling-based methods: (Need to think more carefully).