A persistent key-value storage engine based on LSM-tree architecture.
Project description
Simple Python Storage Engine
Light weight key value storage engine optimized for write heavy workloads.
What and How?
Simple LSM-tree based implementation of a key value store in python. Implemented this after reading chapter 3 of Designing Data Intensive Applications where the author talks about different data structures powering our database, one such data structure was the LSMtree. This projects implements a:
- Write Ahead Log (For atomicity and durability)
- In memory memtable (Where writes initially go to)
- SSTables (sorted string tables) where items are sorted based on keys.
The memtable is implemented using the SortedDict library of python. This ensures that the traversal through the memtable will give the items sorted by keys. This is important to flush the memtable in sorted order to the SSTable.
The SStables are ordered by levels (L0 -> L1 -> ... ). There is a preset number of SSTables allowed within a level, after which the merging and compaction process gets applied and combines those SSTables into one and moves it to the next level.
The merging and compaction process is a simple k-way merge using a minheap, similar to the leetcode qn (merging k sorted arrays).
This project supports basic key-value operations like GET, PUT, DELETE, EXISTS, CREATE. A simple CLI based interface is implemented where users can interact with the kv store.
The writes are first pushed to the Sorted Container in the memtable (which is in memory). Once the memtable reaches a threshold size, it is flushed into a persistent SSTable, every write is recorded in the WAL as it comes, for atomicity and crash recovery.
The reading process is a bit more complicated. LSMTrees are more optimized for write workloads. When the SSTable gets created, there is an index file also created which stores keys in gaps of 10 (eg: 1st item, 10th item, 20th item etc..). This was implemented for range queries. A read request is first sent to the index file to find which range it lies in and then moves to the different SSTables. Reading is not a very easy process in LSMTrees as compared to B-Trees, which are optimized for read workloads.
How to install?
pip install lsm_storage_engine_key_value_store
How to use?
As of current release, 0.3.0, dated 4th Aug, 2025. The package can be used both as a CLI tool and as a library.
Usage as Library:
Released as a part of v0.3.0
from lsm_storage_engine import StorageManager
storage = StorageManager(base_data_path=DATA_DIRECTORY)
try:
# Create and use a collection
storage.create_collection("products")
storage.use_collection("products")
# Get the active collection object
products_store = storage.get_active_collection()
# Put and get data
products_store.put("prod:456", "{'name': 'Super Widget', 'price': 99.99}")
product = products_store.get("prod:456")
print(f"Retrieved: {product}")
except CollectionExistsError as e:
print(f"Error: {e}")
finally:
# Close all file handles gracefully
storage.close_all()
Usage as CLI:
Released initially, still supported
run the command
lsm-cli
This will print the cli help with all the functions, follow the instructions as per the cli help.
General rules:
- Create collection
- Use the created collection, if collection already exists, skip step 1 and use the existing collection
- Currently supports functions like PUT,GET,DELETE,EXISTS
- Ctrl + C or EXIT to terminate the program.
Update history:
6th Aug 2025, version 0.4.1: Update Notes: Cleaned up debug and other print statements and logs for public release
21 Aug 2025, version 0.4.2: Added a close command to close the active collection and use a new one, if by accident user opens some collection they didnt mean to.
2 Oct 2025, version 1.0.0: Lay off merging and compaction to background worker thread so that incoming write requests to the single thread are not blocked. Provides leveled compaction. The fundamental change is moving from a Simple, Synchronous, Write-Optimized model to a Hybrid, Asynchronous, Read-Optimized model. The main issue with the previous model is that, in a write heavy process, the single threaded model would get blocked instantly because the main thread had to perform the compaction, which will increase latency, therefore defeating the point. Another problem was read amplification, where to search for a key will lead to searching in the memtable, then 4 different L0 SStables.
New system->
-
The _flush_memtable() now only writes the new SSTable and then sends a task signal ("FLUSH_COMPLETE") to a separate, permanent thread (_compaction_worker_run). This gives the asynchronous abilities
-
Essentially, we are ensuring that in a certain level Li, the sstables are strictly non overlapping, so to search for a key, we can do less number of I/O operations because we can see the key ranges of each sstable (stored in the new .meta file) and we can use that info to find the file where our key is stored. For merging, we find one sstable from level Li and then use the key range information from .meta file to find which sstables from level Li+1 and then overlap only those sstables where there is an overlap and dont worry about the other sstables.
Contribution
Contributions, issues and feature requests are welcome!
LICENSE
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lsm_storage_engine_key_value_store-1.1.0.tar.gz.
File metadata
- Download URL: lsm_storage_engine_key_value_store-1.1.0.tar.gz
- Upload date:
- Size: 21.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af4960c2e81ec3876f1ad0d950855a1309aad0fb711412d7405f5a49ab4a824b
|
|
| MD5 |
8e9d2a68f9091186f2ea66f6fc5ecbff
|
|
| BLAKE2b-256 |
384131548ef0a474740bccc38a9579d8323aa6f1e7d5cdd1ac8f03dde77b8b65
|
File details
Details for the file lsm_storage_engine_key_value_store-1.1.0-py3-none-any.whl.
File metadata
- Download URL: lsm_storage_engine_key_value_store-1.1.0-py3-none-any.whl
- Upload date:
- Size: 22.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e3324a6a3579bb49f8b4c6f24c00ba57f18a96cf90de11a5d68090bd9d79f44
|
|
| MD5 |
17facec5aed3798eb42f793eeaaf10aa
|
|
| BLAKE2b-256 |
8bdea1ba1aea13215f44e0bf42456f3f418ff84835e13c8d21d3ac396cd97940
|