ChronDB
Chronological key/value Database storing based on database-shaped git
(core) architecture and Lucene for indexing.
Features
We are:
Immutable and atomic data
ACID transactions
Schemaless
Chronological
RESTfull server: communication via HTTP protocol
Redis protocol: use the Redis driver to communicate with chrondb
SQL compliance: in query within document
Understand how and when changes were made. chrondb stores all history, and lets you query against any point in time.
Git structure is a powerful solution for storing "data" (files) in chronological order, chrondb uses git core as a data structure to structure the data timeline, making it possible to return to any necessary point and bringing all git functions for a database:
diff
notes
restore
branch
checkout
revert
merge
log
blame
archive
Term alignment, from database to git
The goal is to speak the same language as the database world
database: git repository (local or remotely)
scheme: git branch
table: directory added on git repository
field struct: json (document) - will be persisted in a file and indexed in lucene
Running
ChronDB can be run using the Clojure CLI with various options to customize its behavior.
Basic Usage
Command Line Options
ChronDB supports the following command line options:
First non-flag argument: HTTP port (default: 3000)
Second non-flag argument: Redis port (default: 6379)
--disable-redis
: Disable the Redis protocol server--disable-rest
: Disable the REST API server--disable-sql
: Disable the SQL server
Examples
PostgreSQL
Using the Functional Interface
You can also run ChronDB using the -X
option:
Configuration
ChronDB uses an EDN configuration file to define its settings. To get started, copy the config.example.edn
file to config.edn
:
Configuration File Structure
The configuration file is divided into three main sections:
1. Git Configuration (:git)
2. Storage Configuration (:storage)
3. Logging Configuration (:logging)
Log Levels
:debug
- Detailed information for development/debugging:info
- General operation information:warn
- Warnings that don't affect functionality:error
- Errors that may affect functionality
Usage Example
Development
To run the example with default configuration:
To run tests:
Installation
Add the following dependency to your deps.edn
:
Quick Start
Requirements
Java 11 or later
Git 2.25.0 or later
Documentation
For more detailed documentation, see:
For generated API documentation, run:
Contributing
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Last updated
Was this helpful?