Giter VIP home page Giter VIP logo

fairyMQ is an open-source UDP based message queue software written in GO. fairyMQ is in-memory, secure, extremely fast and super simple.

Features

⭐ High throughput and low latency with reliable light weight UDP based protocol

⭐ Transmission secure with asymmetric cryptography

⭐ Snapshots to disk

⭐ Recovery latest snapshot from disk

⭐ Messages marked with consumer(s) whom acknowledged

⭐ Message Expiry (delete expired messages from queue)

⭐ Multiple Queues

⭐ Searching messages by key (Keys are not unique)

⭐ Message data has no limit and are a buffer of bytes enqueued by a client

Setup


fairyMQ expects a keypair per queue. When sending messages to fairy the messages must be encrypted with the queues public key. fairy will try all available keys to decrypt a message before failing. Upon successful encryption fairy knows which queue to access.

./fairymq --generate-queue-key-pair example

Native Clients


Native Consumers


How to use


To start download or build fairyMQ.

Once downloaded or built you can start fairyMQ but mind you fairy requires an initial keypair so we can generate that with flag --generate-queue-key-pair=YOURQUEUENAME

./fairyMQ &

Above runs fairy.

To generate a new queue keypair

./fairyMQ --generate-queue-key-pair=YOURQUEUENAME

Above will allow enqueues with a public key into an in-memory queue. There can be multiple.

Distribution

If you want to sync multiple nodes data you can use:

--join-address

Above is the IP address and memberlist port of a peer in a cluster we would like to join

Is the frequency in-which nodes synchronize

--push-pull-interval

Port used to communicate with other nodes

memberlist-port

fairyMQ is a distributed message queue meaning we can start 1 or many external nodes. These nodes sync all queues.

Building


Building VERSION to be replaced with V for example v1.0.1 or use bundle.sh to build all platform binaries

Darwin / MacOS


env GOOS=darwin GOARCH=amd64 go build -o bin/macos-darwin/amd64/fairymq && tar -czf bin/macos-darwin/amd64/fairymq-VERSION-amd64.tar.gz -C bin/macos-darwin/amd64/ $(ls  bin/macos-darwin/amd64/)
env GOOS=darwin GOARCH=arm64 go build -o bin/macos-darwin/arm64/fairymq && tar -czf bin/macos-darwin/arm64/fairymq-VERSION-arm64.tar.gz -C bin/macos-darwin/arm64/ $(ls  bin/macos-darwin/arm64/)

Linux


env GOOS=linux GOARCH=386 go build -o bin/linux/386/fairymq && tar -czf bin/linux/386/fairymq-VERSION-386.tar.gz -C bin/linux/386/ $(ls  bin/linux/386/)
env GOOS=linux GOARCH=amd64 go build -o bin/linux/amd64/fairymq && tar -czf bin/linux/amd64/fairymq-VERSION-amd64.tar.gz -C bin/linux/amd64/ $(ls  bin/linux/amd64/)
env GOOS=linux GOARCH=arm go build -o bin/linux/arm/fairymq && tar -czf bin/linux/arm/fairymq-VERSION-arm.tar.gz -C bin/linux/arm/ $(ls  bin/linux/arm/)
env GOOS=linux GOARCH=arm64 go build -o bin/linux/arm64/fairymq && tar -czf bin/linux/arm64/fairymq-VERSION-arm64.tar.gz -C bin/linux/arm64/ $(ls  bin/linux/arm64/)

FreeBSD


env GOOS=freebsd GOARCH=arm go build -o bin/freebsd/arm/fairymq && tar -czf bin/freebsd/arm/fairymq-VERSION-arm.tar.gz -C bin/freebsd/arm/ $(ls  bin/freebsd/arm/)
env GOOS=freebsd GOARCH=amd64 go build -o bin/freebsd/amd64/fairymq && tar -czf bin/freebsd/amd64/fairymq-VERSION-amd64.tar.gz -C bin/freebsd/amd64/ $(ls  bin/freebsd/amd64/)
env GOOS=freebsd GOARCH=386 go build -o bin/freebsd/386/fairymq && tar -czf bin/freebsd/386/fairymq-VERSION-386.tar.gz -C bin/freebsd/386/ $(ls  bin/freebsd/386/)

Windows


env GOOS=windows GOARCH=amd64 go build -o bin/windows/amd64/fairymq.exe && zip -r -j bin/windows/amd64/fairymq-VERSION-x64.zip bin/windows/amd64/fairymq.exe
env GOOS=windows GOARCH=arm64 go build -o bin/windows/arm64/fairymq.exe && zip -r -j bin/windows/arm64/fairymq-VERSION-x64.zip bin/windows/arm64/fairymq.exe
env GOOS=windows GOARCH=386 go build -o bin/windows/386/fairymq.exe && zip -r -j bin/windows/386/fairymq-VERSION-x86.zip bin/windows/386/fairymq.exe

Protocol & Language


  • fairyMQ port is 5991

  • fairyMQ consumer port is 5992 by default but can be changed.

New message

ENQUEUE\r\n
timestamp\r\n
..bytes

With key

ENQUEUE somerandomkey\r\n
timestamp\r\n
..bytes

First message in queue

FIRST IN

Last message in queue

LAST IN

Length of queue

LENGTH

Remove last message

POP

Remove first message

SHIFT

Remove/Clear queue

CLEAR

New Consumer

NEW CONSUMER 0.0.0.0:5992

HOST:PORT

Remove Consumer

REM CONSUMER 0.0.0.0:5992

HOST:PORT

List Consumers

LIST CONSUMERS

EXPIRE MESSAGES

Set true

EXP MSGS 1

Set false

EXP MSGS 0

EXPIRE MESSAGES SECONDS

Setting to 4 hours in seconds

EXP MSGS SEC 14400

GET MESSAGES WITH CERTAIN KEY

MSGS WITH KEY banana

Returns bytes with each item split with \r\r

i.e

[12 32 45 232]\r\r
[2 3 77 232]\r\r
[12 32]\r\n

fairyMQ's Projects

fairymq icon fairymq

fairyMQ is a distributed high throughput in-memory yet persisted open-source messaging and streaming system(message queue).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.