Everipedia Logo
Everipedia is now IQ.wiki - Join the IQ Brainlist and our Discord for early access to editing on the new platform and to participate in the beta testing.
B+ tree

B+ tree

A B+ tree is an N-ary tree with a variable but often large number of children per node. A B+ tree consists of a root, internal nodes and leaves.[1] The root may be either a leaf or a node with two or more children.[2]

A B+ tree can be viewed as a B-tree in which each node contains only keys (not key–value pairs), and to which an additional level is added at the bottom with linked leaves.

The primary value of a B+ tree is in storing data for efficient retrieval in a block-oriented storage context — in particular, filesystems. This is primarily because unlike binary search trees, B+ trees have very high fanout (number of pointers to child nodes in a node,[1] typically on the order of 100 or more), which reduces the number of I/O operations required to find an element in the tree.

The ReiserFS, NSS, XFS, JFS, ReFS, and BFS filesystems all use this type of tree for metadata indexing; BFS also uses B+ trees for storing directories. NTFS uses B+ trees for directory and security-related metadata indexing. EXT4 uses extent trees (a modified B+ tree data structure) for file extent indexing.[3] Relational database management systems such as IBM DB2,[4] Informix,[4] Microsoft SQL Server,[4] Oracle 8,[4] Sybase ASE,[4] and SQLite[5] support this type of tree for table indices. Key–value database management systems such as CouchDB[6] and Tokyo Cabinet[7] support this type of tree for data access.

Overview

The order, or branching factor,bof a B+ tree measures the capacity of nodes (i.e., the number of children nodes) for internal nodes in the tree. The actual number of children for a node, referred to here asm, is constrained for internal nodes so that. The root is an exception: it is allowed to have as few as two children.[1] For example, if theorderof a B+ tree is 7, eachinternal node(except for the root) may have between 4 and 7 children; the root may have between 2 and 7. Leaf nodes have no children, but are constrained so that the number of keys must be at leastand at most. In the situation where a B+ tree is nearly empty, it only contains one node, which is a leaf node. (The root is also the single leaf, in this case.) This node is permitted to have as little as one key if necessary and at most.
Node TypeChildren TypeMin Number of ChildrenMax Number of ChildrenExampleExample
Root Node (when it is the only node in the tree)Records11–61–99
Root NodeInternal Nodes or Leaf Nodes2b2–72–100
Internal NodeInternal Nodes or Leaf Nodesb4–750–100
Leaf NodeRecords4–750–100

Algorithms

The root of a B+ Tree represents the whole range of values in the tree, where every internal node is a subinterval.

We are looking for a valuekin the B+ Tree. Starting from the root, we are looking for the leaf which may contain the valuek. At each node, we figure out which internal pointer we should follow. An internal B+ Tree node has at mostchildren, where every one of them represents a different sub-interval. We select the corresponding node by searching on the key values of the node.

This pseudocode assumes that no duplicates are allowed.

Prefix key compression

  • It is important to increase fan-out, as this allows to direct searches to the leaf level more efficiently.

  • Index Entries are only to 'direct traffic', thus we can compress them.

Insertion

  • Perform a search to determine what bucket the new record should go into.

  • If the bucket is not full (at most entries after the insertion), add the record.

  • Otherwise, before inserting the new record split the bucket. original node has ⎡(L+1)/2⎤ items new node has ⎣(L+1)/2⎦ items Move ⎡(L+1)/2⎤-th key to the parent, and insert the new node to the parent. Repeat until a parent is found that need not split.

  • If the root splits, treat it as if it has an empty parent and split as outline above.

B-trees grow at the root and not at the leaves.[1]

Bulk-loading

Given a collection of data records, we want to create a B+ tree index on some key field. One approach is to insert each record into an empty tree. However, it is quite expensive, because each entry requires us to start from the root and go down to the appropriate leaf page. An efficient alternative is to use bulk-loading.

  • The first step is to sort the data entries according to a search key in ascending order.

  • We allocate an empty page to serve as the root, and insert a pointer to the first page of entries into it.

  • When the root is full, we split the root, and create a new root page.

  • Keep inserting entries to the right most index page just above the leaf level, until all entries are indexed.

Note :

  • when the right-most index page above the leaf level fills up, it is split;

  • this action may, in turn, cause a split of the right-most index page on step closer to the root;

  • splits only occur on the right-most path from the root to the leaf level.[8]

Characteristics

For a b-order B+ tree with h levels of index:

  • The maximum number of records stored is

  • The minimum number of records stored is

  • The minimum number of keys is

  • The maximum number of keys is

  • The space required to store the tree is

  • Inserting a record requires operations

  • Finding a record requires operations

  • Removing a (previously located) record requires operations

  • Performing a range query with k elements occurring within the range requires operations

Implementation

The leaves (the bottom-most index blocks) of the B+ tree are often linked to one another in a linked list; this makes range queries or an (ordered) iteration through the blocks simpler and more efficient (though the aforementioned upper bound can be achieved even without this addition). This does not substantially increase space consumption or maintenance on the tree. This illustrates one of the significant advantages of a B+tree over a B-tree; in a B-tree, since not all keys are present in the leaves, such an ordered linked list cannot be constructed. A B+tree is thus particularly useful as a database system index, where the data typically resides on disk, as it allows the B+tree to actually provide an efficient structure for housing the data itself (this is described in[4] [] as index structure "Alternative 1").

If a storage system has a block size of B bytes, and the keys to be stored have a size of k, arguably the most efficient B+ tree is one where. Although theoretically the one-off is unnecessary, in practice there is often a little extra space taken up by the index blocks (for example, the linked list references in the leaf blocks). Having an index block which is slightly larger than the storage system's actual block represents a significant performance decrease; therefore erring on the side of caution is preferable.

If nodes of the B+ tree are organized as arrays of elements, then it may take a considerable time to insert or delete an element as half of the array will need to be shifted on average. To overcome this problem, elements inside a node can be organized in a binary tree or a B+ tree instead of an array.

B+ trees can also be used for data stored in RAM. In this case a reasonable choice for block size would be the size of processor's cache line.

Space efficiency of B+ trees can be improved by using some compression techniques. One possibility is to usedelta encodingto compress keys stored into each block. For internal blocks, space saving can be achieved by either compressing keys or pointers. For string keys, space can be saved by using the following technique: Normally the i-th entry of an internal block contains the first key of block. Instead of storing the full key, we could store the shortest prefix of the first key of blockthat is strictly greater (in lexicographic order) than last key of block i. There is also a simple way to compress pointers: if we suppose that some consecutive blocksare stored contiguously, then it will suffice to store only a pointer to the first block and the count of consecutive blocks.

All the above compression techniques have some drawbacks. First, a full block must be decompressed to extract a single element. One technique to overcome this problem is to divide each block into sub-blocks and compress them separately. In this case searching or inserting an element will only need to decompress or compress a sub-block instead of a full block. Another drawback of compression techniques is that the number of stored elements may vary considerably from a block to another depending on how well the elements are compressed inside each block.

History

The B tree was first described in the paper Organization and Maintenance of Large Ordered Indices. Acta Informatica 1: 173–189 (1972) by Rudolf Bayer and Edward M. McCreight. There is no single paper introducing the B+ tree concept. Instead, the notion of maintaining all data in leaf nodes is repeatedly brought up as an interesting variant. An early survey of B trees also covering B+ trees is Douglas Comer.[9] Comer notes that the B+ tree was used in IBM's VSAM data access software and he refers to an IBM published article from 1973.

See also

  • Binary search tree

  • B-tree

  • Divide and conquer algorithm

References

[1]
Citation Linkopenlibrary.orgNavathe, Ramez Elmasri, Shamkant B. (2010). Fundamentals of database systems (6th ed.). Upper Saddle River, N.J.: Pearson Education. pp. 652–660. ISBN 9780136086208.
Sep 30, 2019, 6:47 AM
[2]
Citation Linkwww.seanster.comhttp://www.seanster.com/BplusTree/BplusTree.html
Sep 30, 2019, 6:47 AM
[3]
Citation Linkwww.nobius.orgGiampaolo, Dominic (1999). Practical File System Design with the Be File System (PDF). Morgan Kaufmann. ISBN 1-55860-497-9.
Sep 30, 2019, 6:47 AM
[4]
Citation Linkopenlibrary.orgRamakrishnan Raghu, Gehrke Johannes – Database Management Systems, McGraw-Hill Higher Education (2000), 2nd edition (en) page 267
Sep 30, 2019, 6:47 AM
[5]
Citation Linksqlite.orgSQLite Version 3 Overview
Sep 30, 2019, 6:47 AM
[6]
Citation Linkguide.couchdb.orgCouchDB Guide (see note after 3rd paragraph)
Sep 30, 2019, 6:47 AM
[7]
Citation Linkweb.archive.orgTokyo Cabinet reference Archived September 12, 2009, at the Wayback Machine
Sep 30, 2019, 6:47 AM
[8]
Citation Linkweb.cs.ucdavis.edu"ECS 165B: Database System Implementation Lecture 6" (PDF). UC Davis CS department. April 9, 2010. pp. 21–23.
Sep 30, 2019, 6:47 AM
[9]
Citation Linkdoi.acm.org"The Ubiquitous B-Tree", ACM Computing Surveys 11(2): 121–137 (1979).
Sep 30, 2019, 6:47 AM
[10]
Citation Linkpypi.python.orgB+ tree in Python, used to implement a list
Sep 30, 2019, 6:47 AM
[11]
Citation Linkweb.archive.orgDr. Monge's B+ Tree index notes
Sep 30, 2019, 6:47 AM
[12]
Citation Linkblogs.ubc.caEvaluating the performance of CSB+-trees on Mutithreaded Architectures
Sep 30, 2019, 6:47 AM
[13]
Citation Linkwww.cs.wisc.eduEffect of node size on the performance of cache conscious B+-trees
Sep 30, 2019, 6:47 AM
[14]
Citation Linkweb.archive.orgFractal Prefetching B+-trees
Sep 30, 2019, 6:47 AM
[15]
Citation Linkleo.saclay.inria.frTowards pB+-trees in the field: implementations Choices and performance
Sep 30, 2019, 6:47 AM
[16]
Citation Linkoa.doria.fiCache-Conscious Index Structures for Main-Memory Databases
Sep 30, 2019, 6:47 AM
[17]
Citation Linksupertech.csail.mit.eduCache Oblivious B(+)-trees
Sep 30, 2019, 6:47 AM
[18]
Citation Linkbooks.couchdb.orgThe Power of B-Trees: CouchDB B+ Tree Implementation
Sep 30, 2019, 6:47 AM
[19]
Citation Linkwww.cs.usfca.eduB+ Tree Visualization
Sep 30, 2019, 6:47 AM
[20]
Citation Linkwww.cs.helsinki.fiB +-trees by Kerttu Pollari-Malmi
Sep 30, 2019, 6:47 AM