CATEGORII DOCUMENTE |
Asp | Autocad | C | Dot net | Excel | Fox pro | Html | Java |
Linux | Mathcad | Photoshop | Php | Sql | Visual studio | Windows | Xml |
Tutorial - Using Explain
Now we've discovered the world of indexes and seen their obvious advantages, we need to look at when PostgreSQL uses those indexes
to speed up queries and when it can't. We will look at the explain command and it's variations. This will let us see how
PostgreSQL uses indexes and how it calculates whether an index is worth using.
The explain command is used to see which query plan PostgreSQL uses to return the results of a query. A query plan could either
be to use an index, perform a sequential scan or a combination of these in complicated situations.
The explain command is used with an sql query to return an analysis of the query plan that PostgreSQL will use in the real
situation. This doesn't necessarily mean only select statements; inserts and updates use plans to execute their respective
statements. However, almost every situation in a real database relates to a select query so we will concentrate on those.
First of all, let's look at the syntax of the command:
indextest=# h EXPLAIN
Command: EXPLAIN
Description: show the execution plan of a statement
Syntax:
EXPLAIN [ ANALYZE ] [ VERBOSE ] query
Let's have a look at some examples. We will use the indextest database that was created and explored in the tutorials on
indexes
indextest=# EXPLAIN SELECT * FROM indextest;
QUERY PLAN
Seq Scan on indextest (cost=0.00..86765.00 rows=5000000 width=25)
(1 row)
This looks complicated, but it's not. Let's have a look at each area.
Seq Scan means PostgreSQL has to do a sequential or full table scan to return the results. This makes sense - we're not returning
a small result from the table, we're returning everything so every row needs to be looked at.
The cost=0.00..86765.00 message has two parts.
The first part (0.00) is the estimated time before a result can be output. If you add an order by to a query, this is the value
that will change as we will see.
The second value is the cost to retrieve the rows or records we want. This doesn't take limiting results into account.
These costs are a measure of how many disk page fetches it will take to retrieve the data. A disk page fetch is when PostgreSQL
looks at the data on disk, so in this case it will have to look at the disk approximately 86,765 times - this sounds like an
awful lot but in reality it's not that much - remember it's examining 5 million rows too.
The rows=5000000 value is the estimated number of rows that will be output by this query.
The last value (width=25) is the average width of each row of data in bytes, or the total number of bytes each result contains.
Let's change our query and have another look at the explain output:
indextest=# EXPLAIN SELECT * FROM indextest WHERE id < 1000000;
QUERY PLAN
Index Scan using unique_id_index on indextest (cost=0.00..22269.57 rows=966338 width=25)
Index Cond: (id < 1000000)
(2 rows)
The results are totally different.
This time, PostgreSQL will use the index (Index Scan) and it's going to use the unique_id_index on the table.
The cost of ordering the results is still 0.
The number of times PostgreSQL will look at the disk is approximately 22,269.57 times - significantly less than the 86,000
previously seen.
This query will return around 966,338 rows and each row contains 25 bytes of data.
Why isn't PostgreSQL returning 999,999 rows, it says there are only going to be 966,338 rows? These numbers are only estimates of the actual results PostgreSQL will find and use. The vacuum analyse command that was run on the table updated internal statistics that PostgreSQL uses to work out values for the planner. When PostgreSQL works out what sort of query plan to use and therefore the displayed figures for explain commands, it chooses a random set of data from this cache to work out whether an index is used, or if the whole table needs to be looked at.
Politica de confidentialitate | Termeni si conditii de utilizare |
Vizualizari: 823
Importanta:
Termeni si conditii de utilizare | Contact
© SCRIGROUP 2024 . All rights reserved