Metadata-Version: 2.0
Name: bplustree
Version: 0.0.2
Summary: On-disk B+tree for Python 3
Home-page: https://github.com/NicolasLM/bplustree
Author: Nicolas Le Manchet
Author-email: nicolas@lemanchet.fr
License: MIT
Description-Content-Type: UNKNOWN
Keywords: bplustree B+tree Btree database index
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: rwlock
Requires-Dist: cachetools
Provides-Extra: tests
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: pytest-cov; extra == 'tests'
Requires-Dist: python-coveralls; extra == 'tests'
Requires-Dist: pycodestyle; extra == 'tests'

Bplustree
=========

.. image:: https://travis-ci.org/NicolasLM/bplustree.svg?branch=master
    :target: https://travis-ci.org/NicolasLM/bplustree
.. image:: https://coveralls.io/repos/github/NicolasLM/bplustree/badge.svg?branch=master
    :target: https://coveralls.io/github/NicolasLM/bplustree?branch=master

An on-disk B+tree for Python 3.

It feels like a dict, but stored on disk. When to use it?

- When the data to store does not fit in memory
- When the data needs to be persisted
- When keeping the keys in order is important

Quickstart
----------

Install Bplustree with pip::

   pip install bplustree

Create a B+tree index stored on a file and use it with:

.. code:: python

    >>> from bplustree import BPlusTree
    >>> tree = BPlusTree('/tmp/bplustree.db', order=50)
    >>> tree[1] = b'foo'
    >>> tree[2] = b'bar'
    >>> tree[1]
    b'foo'
    >>> tree.get(3)
    >>> tree.close()

Keys and values
---------------

Keys must have a natural order and must be serializable to bytes. Some default
serializers for the most common types are provided. For example to index UUIDs:

.. code:: python

    >>> import uuid
    >>> from bplustree import BPlusTree, UUIDSerializer
    >>> tree = BPlusTree('/tmp/bplustree.db', serializer=UUIDSerializer(), key_size=16)
    >>> tree.insert(uuid.uuid1(), b'foo')
    >>> list(tree.keys())
    [UUID('48f2553c-de23-4d20-95bf-6972a89f3bc0')]

Values on the other hand are always bytes. Like keys, the limit on their length
can be set with ``value_size=128`` when building the tree.

Iterating
---------

Since keys are kept in order, it is very efficient to retrieve elements in
order:

.. code:: python

    >>> for i in tree:
    ...     print(i)
    ...
    1
    2
    >>> for key, value in tree.items():
    ...     print(key, value)
    ...
    1 b'foo'
    2 b'bar'

It is also possible to iterate over a subset of the tree by giving a Python
slice:

.. code:: python

    >>> for key, value in tree.items(slice(start=0, stop=10):
    ...     print(key, value)
    ...
    1 b'foo'
    2 b'bar'

Both methods use a generator so they don't require loading the whole content
in memory, but copying a slice of the tree into a dict is also possible:

.. code:: python

    >>> tree[0:10]
    {1: b'foo', 2: b'bar'}


Concurrency
-----------

The tree is thread-safe, it follows the multiple readers/single writer pattern.

It is safe to:

- Share an instance of a ``BPlusTree`` between multiple threads

It is NOT safe to:

- Share an instance of a ``BPlusTree`` between multiple processes
- Create multiple instances of ``BPlusTree`` pointing to the same file

Durability
----------

A write-ahead log (WAL) is used to ensure that the data is safe. All changes
made to the tree are appended to the WAL and only merged into the tree in an
operation called a checkpoint, usually when the tree is closed. This approach
is heavily inspired by other databases like SQLite.

If tree doesn't get closed properly (power outage, process killed...) the WAL
file is merged the next time the tree is opened.

Performances
------------

Like any database, there are many knobs to finely tune the engine and get the
best performance out of it:

- ``order``, or branching factor, defines how many entries each node will hold
- ``page_size`` is the amount of bytes allocated to a node and the length of
  read and write operations. It is best to keep it close to the block size of
  the disk
- ``cache_size`` to keep frequently used nodes at hand. Big caches prevent the
  expensive operation of creating Python objects from raw pages but use more
  memory

Some advices to efficiently use the tree:

- Let the tree iterate for you instead of using ``tree.get()`` in a loop
- Insert elements in ascending order if possible, prefer UUID v1 to UUID v4
- Use ``tree.checkpoint()`` from time to time if you insert a lot, this will
  prevent the WAL from growing unbounded
- Use small keys and values
- Store the file and WAL on a fast disk

License
-------

MIT
Copyright (c) 2017 Nicolas Le Manchet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

