Skip to main content

EBooklet

EBooklet is a Python key-value database that syncs with S3 (AWS or any S3-compatible service). It builds on the Booklet package, providing a MutableMapping (dict-like) interface backed by local files and remote S3 storage.

  • S3 sync — push/pull changes between a local database and an S3 bucket
  • Dict-like API — standard MutableMapping plus dbm-style methods
  • Grouped storage — hash keys into N groups stored as single S3 objects, with automatic byte-range reads
  • Concurrency — thread-safe writes (thread locks), multiprocessing-safe (file locks), and S3 object locking for remote writes
  • Push progress (0.10.1) — opt into per-group progress records (exact totals, rate, ETA) via logging.getLogger('ebooklet.push').setLevel(logging.INFO); see the ops guide's "Monitoring a push"

Keys must be strings (S3 object name requirement). Values can use any serializer supported by Booklet.

Changes between releases are tracked in CHANGELOG.md.

Installation

pip install ebooklet

Booklet vs EBooklet

Booklet is a single-file key/value database used as the foundation for EBooklet. Booklet manages local data, while EBooklet manages the interaction between local and remote data. It is best to familiarize yourself with Booklet before using EBooklet.

EBooklet is designed so you can primarily work with Booklet locally, then push to S3 later via EBooklet. If you're actively collaborating with others, open the data using EBooklet to prevent conflicts.

Unlike Booklet which uses fast threading and OS-level file locks, EBooklet uses S3 object locking when opened for writing. This ensures only one process has write access to a remote database at a time, but is slower than local file locks.

Quick Start

Connection setup

Create an S3Connection with your credentials and bucket info:

import ebooklet

remote_conn = ebooklet.S3Connection(
    access_key_id='my_key_id',
    access_key='my_secret_key',
    db_key='big_data.blt',
    bucket='my-bucket',
    endpoint_url='https://s3.us-west-001.backblazeb2.com',  # optional, for non-AWS
    db_url='https://my-bucket.org/big_data.blt',            # optional, public URL
)

Use an https db_url for anything public — readers fetch the database over that URL, and a plain-http one is served unencrypted (a UserWarning is emitted). http is fine for local testing (e.g. MinIO); silence the warning with warnings.filterwarnings. The same consideration applies to a plain-http endpoint_url, which additionally carries signed requests.

Read-only shortcut

If you only need to read and have a public URL, pass it directly — no S3Connection needed:

db = ebooklet.open_ebooklet('https://my-bucket.org/big_data.blt', '/tmp/big_data.blt', flag='r')

Open, read, write

with ebooklet.open_ebooklet(remote_conn, '/tmp/big_data.blt', flag='c', value_serializer='pickle') as db:
    db['key1'] = ['one', 2, 'three', 4]
    value = db['key1']

Be careful with flags — using 'n' will delete the remote database in addition to the local one.

Grouped Storage

By default, each key/value pair is stored as a separate S3 object. When num_groups is set, keys are hashed into N groups, each stored as a single S3 object containing all key/value pairs for that bucket. If the provided num_groups is not prime, it is automatically rounded up to the nearest prime for optimal hash distribution.

db = ebooklet.open_ebooklet(remote_conn, '/tmp/big_data.blt', flag='n',
                            value_serializer='pickle', num_groups=64)
# num_groups is adjusted to 67 (nearest prime >= 64)
  • Keys are assigned to groups via blake2b hash mod num_groups
  • Single-key reads use S3 byte-range GET requests to fetch only the needed bytes
  • Multi-key reads from the same group use a single merged byte-range GET
  • On push, entire affected groups are re-packed and uploaded
  • For databases already pushed to the remote, num_groups is read from S3 metadata (user-provided value is ignored)
  • For a database created locally but not yet pushed, the creation-time choice is not recorded anywhere — re-pass the same num_groups when reopening before the first push (reopening without it emits a UserWarning, and the first push would fall back to per-key storage)

Use grouped storage when you have many small values — it reduces the number of S3 objects and can improve read performance through byte-range requests.

Syncing with S3

The changes() method returns a Change object for inspecting and pushing differences between local and remote:

with ebooklet.open_ebooklet(remote_conn, '/tmp/big_data.blt', 'w') as db:
    db['key1'] = 'new value'

    changes = db.changes()

    for change in changes.iter_changes():
        print(change)

    changes.push()     # upload local changes to S3

Use changes.discard() to remove local changes without pushing, or pass specific keys to discard selectively:

    changes.discard()          # discard all local changes
    changes.discard(['key1'])  # discard only key1

Other Methods

Method Description
delete_remote() Delete the entire remote database
copy_remote(remote_conn) Copy the remote to another S3 location. Efficient S3-to-S3 copy when credentials match, otherwise downloads then uploads
load_items(keys=None) Download keys/values to the local file without returning them. Pass None to load everything
get_items(keys) Load then return an iterator of (key, value) pairs
map(func, keys=None, n_workers=None) Apply a function to items in parallel using multiprocessing. func(key, value) should return (new_key, new_value) or None to skip

Remote Connection Groups

Remote connection groups organize and store collections of S3Connection objects. All data from an S3Connection is stored except the access_key and access_key_id. Useful for grouping related or versioned databases together.

They work like a normal EBooklet except they use add instead of set, keys are database UUIDs, and values are dicts of S3Connection parameters plus metadata.

The entry schema (version 1, documented on RemoteConnGroup.add) is frozen: consumers can rely on its fields indefinitely, and any future change will come as a new entry_version alongside it. Entries never contain credentials.

The remote connection must already exist to be added to a group.

remote_conn_rcg = ebooklet.S3Connection(
    access_key_id_rcg, access_key_rcg, db_key_rcg, bucket_rcg,
    endpoint_url=endpoint_url_rcg,
)

with ebooklet.open_rcg(remote_conn_rcg, '/tmp/rcg.blt', 'n') as rcg:
    rcg.add(remote_conn)

    changes = rcg.changes()
    changes.push()

Data Formats and Stability

What EBooklet stores in a remote (storage format 2, since 0.10). For a database at S3 key D:

Object Key Contents
db object D Body: the format-2 payload (below). S3 metadata: timestamp, uuid, type, init_bytes, format_version, and num_groups (grouped mode)
group generations D/<gid>.<gen13> Immutable group objects: gid is the decimal group id, gen13 a 13-hex generation token minted per push. Never overwritten — a repack creates a NEW generation and the commit un-references the old one before it is deleted
per-key values D/<key> Per-key mode only (overwritten in place; each PUT is object-atomic, but there is no cross-key snapshot isolation — grouped mode is the recommended layout)
lock tickets D.lock.<id>-<seq> Transient S3 lock objects for the active writer

db-object payload — everything that must change together rides ONE object, whose single PUT is the push's atomic commit point:

magic b'ebooklet-db\x00' (12) | payload_version >H (2) | reserved (2)
| manifest_len >Q (8) | meta_len >Q (8) | index_len >Q (8)
| manifest: JSON {group_id: generation}      (empty in per-key mode)
| meta:     JSON {"timestamp": µs, "data": ...}   (length 0 = no metadata)
| index:    the serialized remote-index booklet
  • format_version stamps the remote storage format; the current version is 2. Opening a remote with a NEWER stamp refuses with UnsupportedFormatError (upgrade ebooklet). Opening a format-1 remote also refuses — 0.10 has no legacy read path. Upgrade recipe: push pending changes with 0.9.x, upgrade, then re-push each remote once with flag='n' (re-pass num_groups; it is not inherited), and re-add RemoteConnGroup members after the member remotes are upgraded.
  • User metadata is embedded in the payload's meta section (no separate _metadata object): it commits atomically with the data.
  • Remote-index entry (15 bytes per key): timestamp (7 bytes) + offset (4) + length (4). In per-key mode, offset and length are always 0. In grouped mode they locate the member's value inside its group's live generation (via the manifest) — length is the value's byte length and may be 0 for an empty value.
  • Group object layout: [entry_count: >I] then per entry [key_len: >H][key][timestamp: 7 bytes][value_len: >I][value]. Self-describing: recovery paths trust the embedded keys/timestamps over the index. A group's packed size is capped at 4 GiB (GroupTooLargeError at pack time — use a larger num_groups for bigger databases).
  • RCG entry schema v1: frozen (see Remote Connection Groups above).

Integrity checkingebooklet.fsck(remote_conn) reports orphans (objects nothing references: abandoned generations from crashed pushes, failed GC leftovers), referenced-but-missing objects, and torn teardowns; fsck(conn, delete_orphans=True) sweeps aged orphans under the write lock (orphans are invisible to readers, so this is housekeeping, not repair).

Local state — pending (unpushed) writes and deletions are journaled inside the local booklet file and survive sessions: reads always see your own unpushed changes, deletions cannot resurrect, and the next push() applies everything pending. force_lock=True on open breaks only lock tickets older than 2 hours (a live writer is protected; it would otherwise abort at its next push's lock re-verification).

Recovery recipes — partial-failure retry, force_push after a failed commit, lock triage, RemoteIntegrityError triage, offline mode, and the format upgrade recipe live in the operations guide: docs/ops.md.

Open Flags

Flag Meaning
'r' Open existing database for reading only (default)
'w' Open existing database for reading and writing
'c' Open database for reading and writing, creating it if it doesn't exist
'n' Always create a new, empty database, open for reading and writing

Download files

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

Source Distribution

ebooklet-0.10.2.tar.gz (64.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ebooklet-0.10.2-py3-none-any.whl (67.5 kB view details)

Uploaded Python 3

File details

Details for the file ebooklet-0.10.2.tar.gz.

File metadata

  • Download URL: ebooklet-0.10.2.tar.gz
  • Upload date:
  • Size: 64.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.7

File hashes

Hashes for ebooklet-0.10.2.tar.gz
Algorithm Hash digest
SHA256 0ea4d6de736644fe2d3a5a3f40ea3df240c4d9a3a327bd1efb1088261d935814
MD5 59542c83189c4a5fe7290d4ee04839f5
BLAKE2b-256 c791f496ad845e119dfbf6f78f651ffb2cde7453157a9b6095fdb2532ca73666

See more details on using hashes here.

File details

Details for the file ebooklet-0.10.2-py3-none-any.whl.

File metadata

  • Download URL: ebooklet-0.10.2-py3-none-any.whl
  • Upload date:
  • Size: 67.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.7

File hashes

Hashes for ebooklet-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 105df0bbf93a42fb1fb6bed46efe4fc8e2061e407140871338aeac13f17e04d6
MD5 960035779afb7c660817fc7c7a36081e
BLAKE2b-256 53d680102d21d18c8c37b3b3488fca19a5c18fe7fc2ba52b415ccbd813300949

See more details on using hashes here.

Release history Release notifications | RSS feed

0.10.4

2 files

0.10.3

2 files

This release

0.10.2 This release

2 files

0.10.1

2 files

0.10.0

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.3

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.11

2 files

0.5.10

2 files

0.5.9

2 files

0.5.8

2 files

0.5.7

2 files

0.5.6

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.2.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page