Skip to main content

Serializable map of integers to bytes with near zero parsing.

Project description

PyPI version

mapbuffer

Serializable map of integers to bytes with near zero parsing.

from mapbuffer import MapBuffer

data = { 2848: b'abc', 12939: b'123' }
mb = MapBuffer(data)

with open("data.mb", "wb") as f:
    f.write(mb.tobytes())

with open("data.mb", "rb") as f:
    binary = f.read()

mb = MapBuffer(binary)
print(mb[2848]) # fast: almost zero parsing required

>>> b'abc'

# assume data are a set of gzipped utf8 encoded strings
mb = MapBuffer(binary, 
    compress="gzip",
    frombytesfn=lambda x: x.decode("utf8")
)
print(mb[2848])
>>> "abc" # bytes were automatically decoded

Installation

pip install mapbuffer

Motivation

MapBuffer is designed to allow you to store dictionaries mapping integers to binary buffers in a serialized format and then read that back in and use it without requiring an expensive parse of the entire dictionary. Instead, if you have a dictionary containing thousands of keys, but only need a few items from it you can extract them rapidly.

This serialization format was designed to solve a performance problem with our pipeline for merging skeleton fragments from a large dense image segmentation. The 3D image was carved up into a grid and each gridpoint generated potentially thousands of skeletons which were written into a single pickle file. Since an individual segmentation could cross many gridpoints, fusion across many files is required, but each file contains many irrelevant skeleton fragments for a given operation. In one measurement, pickle.loads was taking 68% of the processing time for an operation that was taking two weeks to run on hundreds of cores.

Therefore, this method was developed to skip parsing the dictionaries and rapidly extract skeleton fragments.

Design

The MapBuffer object is designed to translate dictionaries into a serialized byte buffer and extract objects directly from it by consulting an index. The index consists of a series of key-value pairs where the values are indices into the byte stream where each object's data stream starts.

This means that the format is best regarded as immutable once written. It can be easily converted into a standard dictionary at will. The main purpose is for reading just a few objects out of a larger stream of data.

Benchmark

The following benchmark was derived from running perf.py.

Format

The byte string format consists of a 16 byte header, an index, and a series of (possibily individually compressed) serialized objects.

HEADER|INDEX|DATA_REGION

Header

b'mapbufr' (7b)|FORMAT_VERSION (uint8)|COMPRESSION_TYPE (4b)|INDEX_SIZE (uint32)

Valid compression types: b'none', b'gzip', b'00br', b'zstd', b'lzma'

Example: b'mapbufr\x00gzip\x00\x00\x04\x00' meaning version 0 format, gzip compressed, 1024 keys.

Index

<uint64*>[ label, offset, label, offset, label, offset, ... ]

The index is an array of label and offset pairs (both uint64) that tell you where in the byte stream to start reading. The read length can be determined by referencing the next offset which are guaranteed to be in ascending order. The labels however, are written in Eyztinger order to enable cache-aware binary search.

The index can be consulted by conducting an Eytzinger binary search over the labels to find the correct offset.

Data Region

The data objects are serialized to bytes and compressed individually if the header indicates they should be. They are then concatenated in the same order the index specifies.

Versus Flexbuffers

The concept here was inspired by Flatbuffers.Flexbuffers, however the Python implementation (not the C++ implementation) there was a little slow as of this writing. We also add a few differences:

  1. Eytzinger ordering of labels to potentially achieve even higher read speeds
  2. Structure optimized for network range reads.
  3. Integer keys only.
  4. Compression is built in to the structure.
  5. Interface has a lot of syntatic sugar to simulate dictionaries.

Link: https://google.github.io/flatbuffers/flexbuffers.html

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

mapbuffer-0.3.2.tar.gz (167.9 kB view hashes)

Uploaded Source

Built Distributions

mapbuffer-0.3.2-cp39-cp39-win_amd64.whl (16.6 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

mapbuffer-0.3.2-cp39-cp39-manylinux2014_x86_64.whl (24.6 kB view hashes)

Uploaded CPython 3.9

mapbuffer-0.3.2-cp39-cp39-manylinux1_x86_64.whl (24.6 kB view hashes)

Uploaded CPython 3.9

mapbuffer-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (13.6 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mapbuffer-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl (13.3 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

mapbuffer-0.3.2-cp38-cp38-win_amd64.whl (16.6 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

mapbuffer-0.3.2-cp38-cp38-manylinux2014_x86_64.whl (24.8 kB view hashes)

Uploaded CPython 3.8

mapbuffer-0.3.2-cp38-cp38-manylinux2010_x86_64.whl (24.8 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

mapbuffer-0.3.2-cp38-cp38-manylinux1_x86_64.whl (24.8 kB view hashes)

Uploaded CPython 3.8

mapbuffer-0.3.2-cp38-cp38-macosx_11_0_arm64.whl (13.7 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mapbuffer-0.3.2-cp38-cp38-macosx_10_9_x86_64.whl (13.3 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

mapbuffer-0.3.2-cp37-cp37m-win_amd64.whl (16.6 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

mapbuffer-0.3.2-cp37-cp37m-manylinux2014_x86_64.whl (25.8 kB view hashes)

Uploaded CPython 3.7m

mapbuffer-0.3.2-cp37-cp37m-manylinux2010_x86_64.whl (25.8 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

mapbuffer-0.3.2-cp37-cp37m-manylinux1_x86_64.whl (25.8 kB view hashes)

Uploaded CPython 3.7m

mapbuffer-0.3.2-cp37-cp37m-macosx_10_9_x86_64.whl (13.3 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

mapbuffer-0.3.2-cp36-cp36m-win_amd64.whl (16.6 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

mapbuffer-0.3.2-cp36-cp36m-manylinux2014_x86_64.whl (24.9 kB view hashes)

Uploaded CPython 3.6m

mapbuffer-0.3.2-cp36-cp36m-manylinux2010_x86_64.whl (24.9 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

mapbuffer-0.3.2-cp36-cp36m-manylinux1_x86_64.whl (24.9 kB view hashes)

Uploaded CPython 3.6m

mapbuffer-0.3.2-cp36-cp36m-macosx_10_9_x86_64.whl (13.3 kB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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