Awesome
<p align="center"> <img alt="Sandglass Logo" src="https://raw.githubusercontent.com/celrenheit/gifs/master/sandglass/brand%2Blogo-sm.png" /> </p> <p align="center"> Sandglass is a distributed, horizontally scalable, persistent, time ordered message queue. It was developed to support asynchronous tasks and message scheduling which makes it suitable for usage as a task queue. </p> <p align="center"> <a href="https://github.com/celrenheit/sandglass/releases/latest"> <img alt="Release" src="https://img.shields.io/github/release/celrenheit/sandglass.svg?style=flat-square"> </a> <a href="https://travis-ci.org/celrenheit/sandglass"> <img alt="Build Status" src="https://img.shields.io/travis/celrenheit/sandglass.svg?style=flat-square"> </a> <a href="LICENSE"> <img alt="License" src="https://img.shields.io/badge/license-apache-blue.svg?style=flat-square"> </a> </p> <!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->Table of contents
- Features
- Installation
- Getting started
- Documentation
- Motivation
- Clients
- Architecture
- Contributing
- License
Features
- Horizontal scalability
- Highly available
- Persistent storage
- Time ordered
- Multiple consumers per group for a partition
- Produce message to be consumed in the future
- Acknowledge/NotAcknowledge each message individualy
- Automatic redelivery and commit offset tracking
- Language agnostic
EXPERIMENTAL: This is a prototype of a side project. This should not be used in production in its current form as things may change quickly without notice.
Installation
On MacOS using Homebrew:
brew install celrenheit/taps/sandglass
For other platforms, you can grab binaries here.
Getting started
NOTE: All data will be stored in /tmp/node1. If you wish to change this, copy
demo/node1.yaml
and modify it accordingly.
First, let's launch sandglass server:
sandglass --config https://raw.githubusercontent.com/celrenheit/sandglass/master/demo/node1.yaml --offset_replication_factor 1
In a second terminal window, create a emails topic:
sandctl topics create emails --num_partitions 3 --replication_factor 1
...produce 10,000 messages:
sandctl produce emails '{"dest" : "hi@example.com"}' -n 10000
...and consume from the emails topic:
sandctl consume emails
(or if you wish to watch you can use sandctl consume -f emails
to see messages coming live)
We are using a single node cluster, this is not recommended for production.
Add a second node to the cluster:
sandglass --config https://raw.githubusercontent.com/celrenheit/sandglass/master/demo/node2.yaml
and repeat the same steps described above for another topic and increasing the replication factor to 2.
Motivation
As previously asked (#4), the purpose of this project might not seem clear. In short, there is two goals.
The first is to be able to track each message individually (i.e. not using a single commit offset) to make suitable for asynchronous tasks.
The second is the ability to schedule messages to be consumed in the future. This make it suitable for retries.
Documentation
Documentation is a work in progress and still lacking.
- API docs
- Overview - TODO
- Clients development guides - TODO
- Documentation the different ways of starting a cluster
Clients
Go
Installation
go get -u github.com/celrenheit/sandglass-client/go/sg
Documentation
The documentation is available on godoc.
Usage
Producer
// Let's first create a client by providing adresses of nodes in the sandglass cluster
client, err := sg.NewClient(
sg.WithAddresses(":7170"),
)
if err != nil {
panic(err)
}
defer client.Close()
// Now we produce a new message
// Notice the empty string "" in the 3th argument, meaning let sandglass choose a random partition
err := client.Produce(context.Background(), "emails", "", &sgproto.Message{
Value: []byte("Hello, Sandglass!"),
})
if err != nil {
panic(err)
}
In order to produce message in the future, you need to specify a custom offset:
inOneHour := time.Now().Add(1 * time.Hour)
gen := sandflake.NewFixedTimeGenerator(inOneHour)
msg := &sgproto.Message{
Offset: gen.Next(),
Value: []byte("Hello"),
}
err := client.ProduceMessage(context.Background(), "emails", "", msg)
if err != nil {
return err
}
This will produce a message that will be available for consumption in 1h.
Consumer
- High-level
// Let's first create a client by providing adresses of nodes in the sandglass cluster
client, err := sg.NewClient(
sg.WithAddresses(":7170"),
)
if err != nil {
panic(err)
}
defer client.Close()
mux := sg.NewMux()
mux.SubscribeFunc("emails", func(msg *sgproto.Message) error {
// handle message
log.Printf("received: %s\n", string(msg.Value))
return nil
})
m := &sg.MuxManager{
Client: c,
Mux: mux,
ReFetchSleepDuration: dur,
}
err = m.Start()
if err != nil {
log.Fatal(err)
}
- Low level
// Let's first create a client by providing adresses of nodes in the sandglass cluster
client, err := sg.NewClient(
sg.WithAddresses(":7170"),
)
if err != nil {
panic(err)
}
defer client.Close()
// Listing partitions in order to choose one to consume from
partitions, err := client.ListPartitions(context.Background(), topic)
if err != nil {
panic(err)
}
// we are choosing only one partition for demo purposes
partition := partitions[0]
// Create a new consumer using consumer group emails-sender and consumer name consumer1
consumer := client.NewConsumer(topic, partition, "emails-sender", "consumer1")
// and consume messages
msgCh, err := consumer.Consume(context.Background())
if err != nil {
panic(err)
}
for msg := range msgCh {
// do an amazing amount of work
log.Printf("received: %s\n", string(msg.Value))
// when we are done, we Acknowledge the message
// but we can also NotAcknowledge to trigger a redelivery of the message
if err := consumer.Acknowledge(context.Background(), msg); err!=nil {
panic(err)
}
}
Java, Python, Node.js, Ruby
Interested in having client for one the following languages ?
Support is planned but there is no specific schedule. So, if you are interested to quickly have a client in your language, help is welcome!
Check the raw generated code available on https://github.com/celrenheit/sandglass-grpc and feel free to submit your through a pull request to https://github.com/celrenheit/sandglass-client.
Architecture
General
+-----------------+
| |
+--------------------------+ +------> Consumer |
| | | | |
| Sandglass Cluster | | +-----------------+
| | |
| +-----+ Round robin consumption
+-----------------+ | +------------------+ | |
| | | | | | | +-----------------+
| Producer +-------> | | | | | |
| | | | Broker 1 | | +------> Consumer |
+-----------------+ | | | | | |
| | | | +-----------------+
| +------------------+ |
+-----------------+ | |
| | | +------------------+ |
| Producer +-------> | | | +-----------------+
| | | | | | | |
+-----------------+ | | Broker 2 | +-----+------> Consumer |
| | | | | | |
| | | | | +-----------------+
+-----------------+ | +------------------+ | |
| | | | | Failover consumption
| Producer +-------> +------------------+ | | (NOT DONE YET)
| | | | | | |
+-----------------+ | | | | | +-----------------+
| | Broker 3 | | | | |
| | | | +------+ Consumer |
| | | | | |
| +------------------+ | +-----------------+
| |
| |
+--------------------------+
Topic
There is two kinds of topics:
-
Timer:
- Fixed number of partitions (set up-front, could change)
- Time ordered using sandflake IDs
- Can produce messages in the future
-
KV:
- Fixed number of partitions (set up-front, cannot change)
- Behaves like a distributed key value store
A topic has a number of partitions. Data is written into a single partition. Either the destination partition is specified by the producer. Otherwise, we fallback to choosing the destination partition using a consistent hashing algorithm.
Each produced message to a partition writes a message to a Write Ahead Log (WAL) and to the View Log (VL). The WAL is used for the replication logic, it is sorted in the order each message was produced. The View Log is used for message consumption, it is mainly sorted by time (please refer to sandflake ids for the exact composition) for a Timer topics and by keys for KV topics.
A message is composed of the following fields:
index <- position in the WAL
offset <- position in the view log for timer topics
key and clusteringKey <- position in the view log for key for kv topics (key is used for partitioning)
value <- your payload
Offset Tracking
Sandglass is responsible for maintaining two offsets for each consumer group:
- Commited: the offset below which all messages have been ACKed
- Consumed: the last consumed message
When consuming sandglass starts from the last commited until the last consumed message to check the redelivery of messages. And from the last consumed offset until the last produced message to deliver the new messages. These two actions are done in parallel.
Technologies used
- Leader Election: hashicorp/raft
- Persitance: RocksDB or Badger
- Communication: GRPC
- Gossip: Serf
- and many more
Contributing
Want to contribute to Sandglass ? Awesome! Feel free to submit an issue or a pull request.
Here are some ways you can help:
- Report bugs
- Your language is not supported ? Feel free to build a client. Trust me, it should not take you long :)
- Improve code/documentation
- Propose new features
- and more...
License
This project is licensed under the Apache License 2.0 available here.