title | backlink_href | backlink_title |
---|---|---|
pganalyze Indexing Engine for Postgres |
/docs |
Documentation |
The pganalyze Indexing Engine automatically analyzes your Postgres query workload, as well as the schema information and schema statistics, to determine the right set of "good enough" indexes that enable high query performance whilst keeping Index Write Overhead low.
The Indexing Engine runs in the background (in the pganalyze app, separate from the database), and presents results using the Index Advisor.
When the Postgres query planner decides how to execute a query, it considers a number of factors to determine if existing indexes can help the query complete more efficiently. The Indexing Engine builds on this core Postgres code and extends it to determine what indexes could be useful even if they do not exist.
By evaluating many different possible plans, the Indexing Engine can find index recommendations to help you optimize your schema for your specific queries. Since pganalyze already monitors information about your schema (like table and index definitions and sizes), we can use this to analyze any of your queries, without requiring specific EXPLAIN plan samples.
The Indexing Engine model used for recommendations is built on:
- Scans, extracted from the full query workload (collected by means of pg_stat_statements)
- I/O estimates through the use of costing logic aligning with the Postgres cost model (similar cost to the one shown in an EXPLAIN plan)
- Prioritizing indexes for frequent queries over infrequent queries
- Optimizing for reducing the amount of index pages fetched by prioritizing conditions with higher index selectivity (high selectivity = match a small number of rows)
The Indexing Engine consists of multiple components, and runs in two phases:
-
Phase 1: Query Analysis
-
Phase 2: Scan Cost Estimation through Hypothetical Indexes
-
Phase 3: Index Selection with the Constraint Programming Model
In addition you may find it useful to understand how we calculate Index Write Overhead.
For details on the Indexing Engine's current limitations, see the Limitations page.
To learn more about how recommendations are presented in the pganalyze app, you can view the Index Advisor documentation.
The Indexing Engine currently recommends the following index types:
- B-tree: Single-column, Multi-Column, Partial Indexes
- GIST: Single-column, Partial Indexes
We plan to add support for more index types (such as GIN, Hash, BRIN and multi-column GIST), as well as expression and covering indexes in the future.
In the current release the Indexing Engine provides missing index recommendations, as well as unused index recommendations.
Early access: We are also inviting customers to test out index consolidation recommendations (in preview), which use the Constraint Programming Model to recommend changes to reduce Index Write Overhead. If you're interested in joining the preview, contact us.
No. The Indexing Engine is fully built into pganalyze, and as long as you integrate your database with pganalyze (i.e., send query statistics and schema data to pganalyze) no further configuration is necessary.
pganalyze integrates with Postgres running in your own VM, Postgres as a Service running on all leading cloud providers, as well as Postgres-compatible offerings such as Amazon Aurora.
The pganalyze Indexing Engine powers the pganalyze Index Advisor - simply sign up for a pganalyze account, integrate your production system into pganalyze, and you will automatically receive recommendations in your pganalyze account powered by the pganalyze Indexing Engine.
We are also working on making an API available that allows customizing how you use the pganalyze Indexing Engine recommendations in your workflows.
No. The Indexing Engine is powered by a purpose-built optimization algorithm based on the Postgres planner (see architecture overview above), and is executed in a deterministic way. If you provide the same inputs (queries and schema) the same version of the Indexing Engine will always produce the same outputs (recommendations).
Whilst there have been attempts to use machine learning for index selection algorithms, in practice it has been shown (see e.g. "An Experimental Evaluation of Index Selection Algorithms") that they take significantly longer to run, without providing better recommendations.
As part of its optimization algorithm, the pganalyze Indexing Engine is able to test possible indexes a lot quicker, due to its unique What If? analysis logic, as well as it's Constraint Programming Model.
In the current release the Indexing Engine results require a human review by a database operator. Specifically, when index recommendations are presented through the pganalyze Index Advisor, we expect you to perform a benchmark on a production copy, and if results are suitable, to deploy the index to production with your existing workflows.
In future releases we plan to offer more workflow integrations, for example by automatically testing suggested indexes on a database copy, and, if suitable for your use case, applying them to your production database in a (semi-)automated manner.