Skip to content

Simple index selection model using constraint programming presented at PGCon 2023

License

Notifications You must be signed in to change notification settings

pganalyze/pgcon2023

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Constraint Programming Model for Index Selection in Postgres (PGCon 2023)

This repository contains everything necessary to run the constraint programming model for index selection presented in the PGCon 2023 talk Automating Index Selection Using Constraint Programming.

Creating indexes on a table in order to meet some requirements (performance, resource budget, etc) is typically done by hand. This model can be used as part of automation that suggests a selection of good indexes to meet arbitrary user requirements. These requirements are expressed in terms of goals and rules.

We (pganalyze) are sharing this model in an effort to further the discussion about automating Postgres index selection within the broader Postgres community. A more sophisticated variant of this model is available with the pganalyze Indexing Engine, which you can utilize as part of the Index Advisor available in pganalyze.

⭐️ Note: To run this model end-to-end in a development environment, we recommend taking a look at pganalyze_lint, which takes care of passing the right inputs to the model based on your local query workload.

Getting Started

Python 3.6+ and the OR-Tools package are needed. The official installation instructions can be found here, but in short:

$ python3 -m pip install --upgrade --user ortools

Running the Index Selection Model

You can immediately run the model on the example data. From the main directory:

$ python3 src/main.py -d examples/data_example.json

This will find the indexes that minimize the combined costs of the scans, using as few indexes as needed. The output of this command is explained here. To use custom settings and a time limit:

$ python3 src/main.py -d examples/data_example.json -s examples/settings_example.json -t 10

For details on the various options:

$ python3 src/main.py -h

Data

The model needs data in JSON format as input. Example data files are provided in the examples directory. The script src/datagen.py allows the creation of custom data files. First, modify the values of the constants in the source code of the script to the desired values. Then, the command

$ python3 datagen.py data.json

will create a data file named data.json with the desired values.

Settings (Goals and Rules)

The model may also be provided with a settings file in JSON format, containing goals and rules. This file should contain one goal at a minimum. An example settings file is provided in the examples directory.

Goals

Goals are the main components that guide the model towards a solution. A combinations of up to four goals can be chosen.

Maximal Coverage: Maximize the number of scans that are covered by indexes. A scan is considered covered by an index if that index provides the scan with a cost that is strictly better than the sequential read cost.

Minimal Cost: Minimize the combined cost of all the scans.

Minimal Indexes: Minimize the number of indexes that are selected.

Minimal IWO: Minimize the combined index write overhead (IWO) of the existing and possible indexes that are selected.

Rules

Two rules can be enforced by the model.

Maximum Number of Possible Indexes: Do not select more than X possible indexes.

Maximum IWO: The combined IWO of the selected indexes (existing and possible) may not be higher than X.

Default Settings

If no settings are selected by the user, the model will fall back to the default, which is to minimize the combined costs of the scans, using the fewest indexes:

{
    "Goals": [
        {
            "Name": "Minimal Cost",
            "Strictness": 1.0
        },
        {
            "Name": "Minimal Indexes"
        }
    ]
}

Ordering the Goals and Strictness

When optimizing for multiple goals, these goals must be ordered by preference. The ordering of goals by preference does not need to be absolute, and can instead be made more flexible by specifying a strictness parameter for the goals.

Each goal can optionally be specified with a strictness between 0.0 (0%) and 1.0 (100%). The strictness of a goal is defaulted to 1.0 if the parameter is left unspecified. When optimizing a goal, the resulting value indicates how well the goal has met its stated objective. The strictness of a goal indicates how close subsequent goals should stick to the value found by the optimization of that goal.

Example of the Process

Suppose that the settings are as follows:

{
    "Goals": [
        {
            "Name": "Minimal Cost",
            "Strictness": 0.9
        },
        {
            "Name": "Minimal IWO"
        }
    ],
    "Rules":
    {
        "Maximum Number of Possible Indexes": 4
    }
}

In other words: The combined costs of the scans should be within a 10% margin of the best possible costs. Use as little IWO to achieve this. Up to 4 possible indexes may be used for that purpose.

The solving process will be as follows:

1. Find the lowest combined costs of the scans that can be achieved by using no more than 4 indexes.
2. Find a combination of up to 4 possible indexes that can offer combined scan costs no worse than 110% of what was found in (1), that use a little IWO as possible.

Model Output

A sample output of the model with some comments:

{
    "Goals": [                               // List of goals in order
        {
            "Minimal Cost": 212.2            // First goal and its associated value
        },
        {
            "Minimal Indexes": 1             // Second goal and its associated value
        }
    ],
    "Scans": [                               // List of all scans
        {
            "Scan ID": "Scan A",             // Scan name
            "Cost": 42.2,                    // Best cost for this scan in the solution
            "Best Covered By": 3             // Which index offers this cost to the scan
        },
        {
            "Scan ID": "Scan B",
            "Cost": 150.7,
            "Best Covered By": null          // This scan is not covered by any index
        },
        {
            "Scan ID": "Scan C",
            "Cost": 19.3,
            "Best Covered By": 4
        }
    ],
    "Indexes": {
        "Existing Indexes": [                // List of all existing indexes
            {
                "Index OID": 4,              // Index name
                "Selected": true             // Is this index selected in the solution?
            },
        ],
        "Possible Indexes": [                // List of all possible indexes
            {
                "Index OID": 1,
                "Selected": false
            },
            {
                "Index OID": 2,
                "Selected": false
            },
            {
                "Index OID": 3,
                "Selected": true
            }
        ]
    },
    "Statistics": {                          // List of statistics
        "Coverage": {                        // Coverage information
            "Total": 2,                      // Number of scans convered by indexes
            "Existing": 1,                   // Number of scans best convered by existing indexes
            "Possible": 1,                   // Number of scans best convered by possible indexes
            "Uncovered": 1                   // Number of scans not covered by any index
        },
        "Cost": {                            // Cost information
            "Total": 212.2,                  // Total costs of all the scans
            "Maximum": 150.7                 // Highest cost found among the scans
        },
        "Indexes Used": {                    // Index information
            "Total": 2,                      // Number of indexes present in the solution
            "Existing": 1,                   // Number of existing indexes present in the solution
            "Possible": 1                    // Number of possible indexes present in the solution
        },
        "Index Write Overhead": {            // IWO information
            "Total": 0.81,                   // Combined IWO of all the indexes present in the solution
            "Existing": 0.49,                // Combined IWO of all the existing indexes present in the solution
            "Possible": 0.32                 // Combined IWO of all the possible indexes present in the solution
        }
    }
}

License

This repository is licensed under the 3-clause BSD license, see LICENSE file for details.

Copyright (c) 2023, Duboce Labs, Inc. (pganalyze)

About

Simple index selection model using constraint programming presented at PGCon 2023

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages