When should I rebuild the indexes in my relational database (e.g. SQL Server)?
Is there a case for rebuilding indexes on a regular basis?
|
When should I rebuild the indexes in my relational database (e.g. SQL Server)? Is there a case for rebuilding indexes on a regular basis? |
||||
|
|
|
At the risk of being way too general in my answer, I will say that you should run an index maintenance process regularly. However, your index maintenance process should only rebuild/reorganize the indexes that specifically require it. This presents the question: when does an index require to be rebuilt or reorganized? Rolando touched on this nicely. Again, I risk being extremely broad. An index requires maintenance when the fragmentation level adversely affects performance. This level of fragmentation could vary based on the size and composition of the index. Speaking for SQL Server, I tend to choose a index size and index fragmentation level at which point I begin performing index maintenance. If an index contains less than 100 pages, I will perform no maintenance. If an index is between 10% and 30% fragmented, I will REORGANIZE the index and UPDATE the statistics. If an index is over 30% fragmented, I will REBUILD the index (no UPDATE STATISTICS necessary, as this is taken care of by the REBUILD). This answer is really just a long way to say: Yes, you should do routine index maintenance, but only on the indexes that need it. Hope this helps, Matt |
|||||||||
|
You should rebuild indexes when they become highly fragmented by special events. For example, you perform a large, bulk load of data into an indexed table.
So what if your indexes are becoming fragmented on a regular basis due to regular activity? Should you schedule regular rebuilds? How often should they run? Tom Kyte, in this classic Ask Tom thread, recommends:
The logic here is sound, but it is biased against a read-heavy load profile. A "fat" index (i.e. one with lots of gaps) does indeed keep a good amount of room for new and moved rows, thus reducing page splits and keeping your writes speedy. However, when you read from that fat index you'll have to read more pages to get the same data because you're now sifting through more empty space. This slows your reads down. So, in read-heavy databases you want to regularly rebuild or reorganize your indexes. (How often and under what conditions? Matt M already has a concrete answer to this question.) In databases that experience roughly equivalent read and write activity, or in databases that are write-heavy, you are likely harming your database's performance by rebuilding indexes regularly. |
|||||||
|
|
Most people rebuild them on a regular basis so that they never get to fragmented. When you need to rebuild them is based on how quickly they get fragmented. Some indexes will need to be rebuilt often, others basically never. Check out the script the SQLFool put together that handles a lot of figuring this stuff out for you. |
|||
|
|
There will be fragmentation within a table and its indexes when the table experiences a high volume of INSERTs, UPDATEs, and DELETEs. Given that indexes are based on BTREEs, there will be a lot of half full BTREE pages. Since balanced binary trees (worst case BTREE) usually requires node rotation 45% of the time to maintain a discreet height, I would expect BTREEs to have the shuffling of index entries and thus some fragmentation. Having BTREE pages as full as possible reduces disk I/O (latency). Another important factor in deciding to rebuild indexes is the Index Statistics. They are needed for generating EXPLAIN plans through the Query Optimizer. Depending on the RDBMS, those indexes are either computed on-the-fly or stored in repositories as some form of histogram. Oracle features histograms to suggest querying patterns for EXPLAIN PLAN generation (I am not an Oracle DBA, so Oracle Gurus Like Gauis and Leigh Riffel PLEASE CHIME IN YOUR OWN ANSWER on Oracle Histograms). MySQL's InnoDB storage engine computes index stats on-the-fly via diving into the index pages. On the flipside of MySQL, the MyISAM storage engine has static statistics that can get old pretty fast in a heavy CRUD environment. Doing ANALYZE TABLE recomputes index stats but disk fragmentation within the index can slightly nullify the benefits of computing statistics. In summary, you should periodically rebuild indexes and recomute fresh index statistics. |
|||||||
|