3 releases

0.0.3 Mar 22, 2021
0.0.2 Mar 11, 2021
0.0.1 Mar 11, 2021

#1878 in Asynchronous

24 downloads per month

MIT license

15KB
158 lines

JackRabbit

crates.io

The service that should always be running.

Purpose

The purpose of this service is to be a real-time persistant message queue that is multi-producer and single consumer using Rust, MessagePack, RocksDB, and secure websockets.

This service is built to have multiple clients add messages while the main system processes the messages and a failover system is connected. The failover system is not getting messages and was connected second (the conneciton order matters).

This is useful for when you have one monolithic websocket system as an API and it needs to be updated (taken offline) - you can have the failover do the work while updating the main system.

Then you take down the failover and the main system becomes the main system again.

See the tests (directory) file for more information on how to build a working client.

As JackRabbit is based on MessagePack so over 50 languages are supported.

This service is very lightweight as it uses almost no memory and CPU.

The current version does not delete any messages as it may in the future support replay.

JackRabbit requires an SSL cert and LetsEncrypt is recommended and also requires a DNS A record as rustls does not support IPs.

Install

cargo install jackrabbit

  • the port needs to be passed in as a flag - default 443

  • the db (path) where you want the embedded rocksdb to be saved - default tmp

  • the chain_cert (path) where the chain certificate is located - default certs/chain.pem

  • the private_key (path) where the private key (certificate) is located - default certs/private_key.pem

  • example: jackrabbit --save-path="tmp" --port="443" --cert="certs/chain.pem" --cert-path="certs/private_key.pem"

  • example: jackrabbit (using defaults)

Service

There is an example systemctl service for Ubuntu called jackrabbit.service in the code

Dependencies

~38–53MB
~1M SLoC