HSE is a fast embeddable key-value store designed for SSDs and persistent memory. HSE optimizes performance and endurance by orchestrating data placement across DRAM and multiple classes of solid-state storage.
HSE is ideal for powering Databases, Software-Defined Storage (SDS), High-Performance Computing (HPC), Internet of Things (IoT), and Machine Learning (ML).
Key Features:
- Rich set of key-value operators
- Full transactions with snapshot-isolation spanning multiple independent key-value collections
- Cursors for iterating over snapshot views
- Data model for optimizing mixed use-case workloads in a single data store
- Key and value compression
- Flexible durability controls
- Configurable data orchestration schemes
- Native C library that can be embedded in any application
Benefits:
- Scales to terabytes of data and hundreds of billions of keys per store
- Efficiently handles thousands of concurrent operations
- Dramatically improves throughput, latency, write-amplification, and read-amplification versus common alternatives for many workloads
- Optionally combines multiple classes of solid-state storage to optimize performance and endurance
The HSE project documentation contains all the information you need to get started with HSE.
Follow the steps below to build and install HSE.
You may need to install additional packages to build or run HSE for your
particular Linux distribution and environment.
See INSTALL.md
for examples of the packages required for several common Linux distributions.
We use Poetry to manage Python dependencies. Install Poetry as per the docs.
Clone the hse
repo and checkout
the latest release tag. This tag must be for HSE version 2.0 or higher.
For example
git clone https://github.com/hse-project/hse.git
cd hse
git checkout <release tag>
Install Python dependencies using Poetry.
poetry install
Build and install using Meson and Ninja from within the Poetry shell.
poetry shell
meson setup build
meson compile -C build
meson install -C build
The default install directory is /opt/hse
. This can be overridden by
configuring the build with either -Dprefix=$prefix
or --prefix=$prefix
.
After building and installing HSE you can exit the Poetry shell.
exit
Information on running test suites and contributing to HSE is located in the
CONTRIBUTING.md
file.
We integrated HSE with several common applications to demonstrate its capabilities.