What problem does it solve?
This Skill helps optimize GenDB query performance by guiding the selection, design, and implementation of appropriate storage structures and indexes, reducing query execution time and resource consumption.
Core Features & Use Cases
- Index Type Selection: Provides guidance on choosing the best index (Hash, Zone Map, Bloom Filter) based on query patterns and column characteristics.
- Index Implementation Details: Offers specific implementation guidelines for Zone Maps, Hash Indexes, and Bloom Filters, including format, skip logic, and construction strategies.
- Use Case: When planning a query that involves range filters on a column, this Skill advises on using Zone Maps for efficient block skipping, or a Sorted Index if the column is not naturally clustered.
Quick Start
Use the indexing skill to understand how to implement zone maps for range filters.