Abstract:
A Client/Server Database System with improved methods for providing access to highly-concurrent data, such as of B-Tree data structures, is described. When the system receives a request to insert a key value into a B-Tree at page that does not have sufficient room, the system must split at the tree at the leaf level. This is done by allocating a new page, and moving some of the key values from the old page to the new page. The split itself propagates upward. To do the split itself, the system obtains address locks for the two pages, and marks both as undergoing âsplitâ (i. e. , a split operation)âthe system sets a Boolean flag or âsplit bitâ to âtrue. â When the split is propagated up, a âside entryâ is added to the old page to point to the newly allocated page. The old page, however, may not have sufficient room for storing this new entry (e. g. , when it is already full).