Skip to main content

Simple append-only database with rich record formats and compression

Project description

AmoreDB

Simple append-only database for Python with rich record formats and compression.

For impatients

pip install amoredb

Example 1

import asyncio
from amoredb import AmoreDB

async def main():
    async with AmoreDB('test', 'w') as db:
        await db.append(b'foo')
        await db.append(b'bar')
        await db.append(b'baz')
        async for record in db:
            print(record)

asyncio.run(main())

Result:

b'foo'
b'bar'
b'baz'

Example 2

import asyncio
from amoredb.json import JsonAmoreDB

async def main():
    async with JsonAmoreDB('test.json', 'w') as db:
        await db.append({'foo': 'bar'})
        await db.append({'bar': 'foo'})
        async for record in db:
            print(record)

asyncio.run(main())

Result:

{'foo': 'bar'}
{'bar': 'foo'}

Record formats

The basic format for database records is bytes object. Subclasses may support other formats, as demonstrated above in the Example 2. AmoreDB provides support for the following formats:

Records are converted to the binary data by mixins and AmoreDB provides predefined classes, such, for example, as

class JsonAmoreDB(JsonMixin, AmoreDB):
    pass

Record compression

Similar to record format conversion, compression is implemented by mix-ins. AmoreDB provides a few for the following formats:

There are no predefined classes for compression, it's up to end users to define ones for their needs. For example,

from amoredb import AmoreDB
from amoredb.json import JsonMixin
from amoredb.gzip import GzipMixin

class MyDB(JsonMixin, GzipMixin, AmoreDB):
    pass

async with MyDB('test.json.gz', 'w') as db:
    await db.append({'foo': 'bar'})
    await db.append({'bar': 'foo'})
    async for record in db:
        print(record)

Record transformation pipeline

Records in AmoreDB are processed by the following methods:

    def record_to_raw_data(self, record_data):
        # do custom conversion here
        # ...
        # call base method
        return super().record_to_raw_data(record_data)

    def record_from_raw_data(self, record_data):
        # do custom conversion here
        # ...
        # call base method
        return super().record_from_raw_data(record_data)

Mix-ins override these methods and to make pipeline working, mix-ins should be defined in the right order. As we have seen above,

class MyDB(JsonMixin, GzipMixin, AmoreDB):
    pass

GzipMixin is placed in between, because compression takes place after converting record from JSON to binary data and before writing this data to file. Same for opposite direction.

Database structure

The database consists of data file and index file. Optional metadata file in JSON format may contain the structure of database class.

Index file contains positions of records except the first one which is always zero. The first element in index file is the offset of the next record. Thus, the number of items in the index file equals to the number of records.

Record id is implicit, it is the index of the record. Thus, to get a record by id, read its offset from the index file and then read the record from data file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

amoredb-0.0.2.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

amoredb-0.0.2-py3-none-any.whl (13.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page