Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shettyh/raft-sqlite
Raft Backend Implementation using Sqlite
https://github.com/shettyh/raft-sqlite
raft sqlite
Last synced: about 2 months ago
JSON representation
Raft Backend Implementation using Sqlite
- Host: GitHub
- URL: https://github.com/shettyh/raft-sqlite
- Owner: shettyh
- License: apache-2.0
- Created: 2020-02-08T11:48:08.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T04:55:39.000Z (almost 5 years ago)
- Last Synced: 2024-08-01T06:20:52.628Z (5 months ago)
- Topics: raft, sqlite
- Language: Go
- Homepage:
- Size: 32.2 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-decentralized-database - raft-sqlite - Raft backend using SQLite. (Relational Databases / Raft)
README
# raft-sqlite : Raft backend using Sqlite
![Master](https://github.com/shettyh/raft-sqlite/workflows/Master/badge.svg)
This repository provides the raftsqlite package. The package exports the SQLStore which is an implementation of both a LogStore and StableStore.
It is meant to be used as a backend for the `raft` [package
here](https://github.com/hashicorp/raft).This implementation uses Sqlite. This implementation is inspired by [raft-boltdb](https://github.com/hashicorp/raft-boltdb) and [Github Orchestrator](https://github.com/github/orchestrator)