https://github.com/labteral/stopover
A simple and robust message broker built on top of RocksDB
https://github.com/labteral/stopover
message-broker message-driven message-handler message-queue
Last synced: 6 months ago
JSON representation
A simple and robust message broker built on top of RocksDB
- Host: GitHub
- URL: https://github.com/labteral/stopover
- Owner: labteral
- License: apache-2.0
- Created: 2020-05-13T09:00:18.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-08-16T07:15:13.000Z (almost 2 years ago)
- Last Synced: 2024-12-02T11:45:41.700Z (7 months ago)
- Topics: message-broker, message-driven, message-handler, message-queue
- Language: Python
- Homepage:
- Size: 103 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
Stopover - A simple and robust message broker built on top of RocksDB
# Initialize the data dir
```bash
mkdir -p ./data/streams
touch ./data/streams/.active
```# Start the server
## docker-compose
```bash
docker-compose up -d
```
## Python
```bash
python3 -m stopover_server
```