Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ververica/forst
A Persistent Key-Value Store designed for Streaming processing
https://github.com/ververica/forst
Last synced: about 2 months ago
JSON representation
A Persistent Key-Value Store designed for Streaming processing
- Host: GitHub
- URL: https://github.com/ververica/forst
- Owner: ververica
- License: apache-2.0
- Created: 2024-02-02T08:57:53.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T06:58:27.000Z (3 months ago)
- Last Synced: 2024-10-25T02:19:45.295Z (3 months ago)
- Language: C++
- Homepage:
- Size: 89.7 MB
- Stars: 6
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS
Awesome Lists containing this project
README
## ForSt: A Persistent Key-Value Store designed for Streaming processing
ForSt is developed and maintained by Flink community and hosted by ververica.
It is built on top of [RocksDB](https://github.com/facebook/rocksdb) by facebook.This code is a library that forms the core building block for a fast
key-value server, especially suited for storing data on flash drives.
It has a Log-Structured-Merge-Database (LSM) design with flexible tradeoffs
between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF)
and Space-Amplification-Factor (SAF). It has multi-threaded compactions,
making it especially suitable for storing multiple terabytes of data in a
single database.See the [github wiki](https://github.com/facebook/rocksdb/wiki) for more explanation.
The public interface is in `include/`. Callers should not include or
rely on the details of any other header files in this package. Those
internal APIs may be changed without warning.Questions and discussions are welcome on the [Discussion](https://github.com/ververica/ForSt/discussions).
## License
ForSt is licensed under Apache 2.0 License.