Skip to content

DBAzine.com

Sections
Personal tools
You are here: Home » Oracle » Oracle Articles Archive » Unbalanced Indexes?
Seeking new owner for this high-traffic DBAzine.com site.
Tap into the potential of this DBA community to expand your business! Interested? Contact us today.
Who Are You?
I am a:
Mainframe True Believer
Distributed Fast-tracker

[ Results | Polls ]
Votes : 3549
 

Unbalanced Indexes?

by Jonathan Lewis

There are several articles on the Internet about Oracle's implementation of indexes, and the need to rebuild indexes from time to time. Somewhere in these articles, there is almost always a short description about how indexes can become unbalanced, and the effect this can have. Unfortunately, this seems to ignore the fact that the B-tree mechanism used by Oracle is a "Balanced B-tree" index — in other words, an index that cannot become unbalanced.

What does "Balanced" Mean?

Given that Oracle uses Balanced B-trees for indexes, why is it that so many people believe that their indexes can become unbalanced?

And what is Balanced B-tree anyway?

Perhaps the answer to the second question can tell us the answer to the first.

Technically, the important feature about Balanced B-trees is that the distance between any leaf block and the root block is the same at any one point in time — the balance is top to bottom.

In the case of Oracle, this can be seen quite easily by performing a treedump, as indicated in Figure 1:

 select object_id
 from user_objects
 where object_type = 'INDEX'
 and object_name = 'T1_IDX1'
 -- and  subobject_name = . . .
 ;

 alter session set events '
 'immediate trace name treedump level N';
          

Figure 1: Steps involved in a tree dump.

First, you find the object_id of the index, or index partition, that you want to dump; then, you invoke the treedump event using the object_id as the level. If you examine the trace file generated by this tree dump, you will find lines like those shown in Figure 2:

 branch: 0x14001aa 20971946 (.. level 2)
   branch: 0x14003ef 20972527 (.. level 1)
     leaf: 0x14001ab 20971947 (..)
     leaf: 0x14001ac 20971948 (..)

Figure 2: Extract from tree dump.

This trace file holds a recursive descent of the index, showing branch blocks (of which the root block is just a special case) and leaf blocks. Note that the first block dumped (the root block) actually records a level, and every branch block below it records a level as well, but leaf blocks do not.

The level of the root block is the blevel of the index (as recorded in the view dba_indexes after an analyze index). The height of the index (as recorded in the view index_stats after a validate index call) is just the blevel + 1.

Every leaf block is exactly this many steps away from the root. The index is always balanced.

So why do many people believe that Oracle allows indexes to become unbalanced?

Mea Culpa

At this point, I have to admit guilt to repeating, only a year ago (May 2002), a well-known and completely wrong, description of block splitting. And I managed to do this despite knowing (and describing in my book (Dec 2000)) the details of the treedump.

I have an idea that the error germinated from statements appearing in an Oracle5 manual, many years ago, to the effect that Oracle indexes were balanced because "no leaf block was more than one step further from the root block than any other leaf block." Combine this (true, but not quite true enough) statement with a simplistic image of block splits and voila — an almost unbreakable legend is born.

Figures 3 and 4 portray a very common, and completely incorrect, idea of how a leaf block splits.

Figure 3: Index just before a leaf block split.

Figure 4: This is NOT how a leaf block split occurs.

A commonly held idea is that the leaf block splits to share its data between two new blocks; then, to point to these two new blocks, Oracle inserts a fresh branch block where the original leaf block used to be to hold the pointers. Thus, in this erroneous view, the index is deeper on the right than on the left. (It is often said that indexes on sequence-based columns cause the biggest problems because, the theory suggests, they cause the rightmost leaf block to keep on descending further and further from the root each time it splits).

In fact, the work done by Oracle is much more subtle, forward-looking, and efficient. The result of a complex leaf block split is shown in Figure 5.

Figure 5: How the index looks after a recursive split.

As the leaf block splits into two, Oracle tries to insert one extra pointer into the branch block that is currently pointing to that leaf.

But if the branch block is full, Oracle splits the branch block in two, shares the existing leaf pointers between these two branch blocks, and (recursively) inserting a new branch pointer into the branch block one level higher up to point to the new branch block.

Iif Oracle reaches the root block during this process, however, and the root block is also full, then the root block has to split as well. In this case, a new root block will be created to hold two branch pointers. (In fact, Oracle handles the root block split slightly differently from ordinary branch block splits to ensure that the root block can always be found in the same place in the physical segment, no matter how many times a root block split has occurred.

Note how this recursive climb up the tree means that at all times, the index remains balanced.

Why is the Myth so Strong?

Is there any reason why the legend of the unbalanced index should persist so strongly? I think the answer is yes.

Remember that the definition of the word "balanced" has a very strict meaning when we are discussing B-trees. There is, however, a completely different interpretation that could be used for this word.

How, for example, would you describe the index in figure 6, in which the root block points to six leaf blocks, but one leaf block is empty, three are nearly empty, and two are well packed. (Note: the extra lines from the root to the leaf blocks are there to highlight the uneven distribution of the index packing; in reality, there is only one pointer in the root for each leaf block.)

Figure 6: A non-technical meaning of "unbalanced."

A "human" response to seeing this pattern in an index would, indeed, be to call it "unbalanced." Clearly, the right-hand side of the index is "heavier" than the left. It is unfortunate that the informal human expression should be so apt, when the technical expression means something completely different.

Perhaps it is this conflict between technical and informal usage that has led to the confusion.

Indexes on sequence-generated columns can very easily become "unbalanced" in the informal sense — especially when they are being used to represent or process FIFO queueing mechanisms. However, even when they are (informally) unbalanced, they are still (technically) Balanced B-trees.

(Perhaps it would be a good idea to push for terms such as "skewed" or "unevenly distributed" as safer descriptions of such indexes.)

Sometimes it takes just a couple of articles or presentations where terms are used carelessly to establish a legend — in this case, one that has resulted in numerous DBAs wasting countless hours rebuilding indexes unnecessarily.

Remember, the next time you decide that Oracle is doing something daft and inefficient, perhaps the problem lies in an old misunderstanding and not in the software itself.

Warning

If you want to investigate further, there are a couple of problems with the treedump option. For most versions of Oracle, it seems to produce a single line per block in the index segment, which can be quite expensive and slow since it requires an ordered visit to every block in the index. However, in Oracle9.0, the trace file seems to do a full block dump of every block, which will be enormous and very slow.

The second problem is version-generic. If the index has been created as a consequence of a primary key or unique key constraint being defined, then the flags column in the ind$ table has bit 13 set — and this causes the treedump to crash with the error "invalid value." This doesn't cause problems for the partitions of a partitioned index, but for all other primary key and unique key indexes (including non-partitioned IOTs), it is a nuisance. It is generally a good idea to create the index, and then create the constraint — this happens to bypass the problem in all cases except for the IOT. In a crunch, you could update the ind$ table directly to clear this bit, but obviously not without approval from Oracle support.

Conclusion

When talking about Balanced B-tree indexes, the term "balanced" means top to bottom, not left to right.

Oracle really does implement a version of "Balanced B-tree indexes," so at any moment, all leaf blocks in an index are exactly the same distance from the root — a distance that can be found in the blevel column of the view user_indexes if the index has been recently analyzed, or as the height (which equals blevel + 1) in the view index_stats immediately after executing a validate index.

Resist the argument that you need to rebuild Indexes regularly because "they become unbalanced." It isn't a valid argument.

--

Jonathan Lewis is a freelance consultant with more than 17 years' experience in Oracle. He specialises in physical database design and the strategic use of the Oracle database engine, is author of Practical Oracle 8i - Building Efficient Databases published by Addison-Wesley, and is one of the best-known speakers on the UK Oracle circuit. Further details of his published papers, tutorials, and seminars can be found at www.jlcomp.demon.co.uk, which also hosts The Co-operative Oracle Users' FAQ for the Oracle-related Usenet newsgroups.


Contributors : Jonathan Lewis
Last modified 2005-02-07 02:26 PM
Transaction Management
Reduce downtime and increase repeat sales by improving end-user experience.
Free White Paper
Database Recovery
Feeling the increased demands on data protection and storage requirements?
Download Free Report!
 
 

Powered by Plone