Lignum is a distributed message queue, implementing something like Kafka in go using Consul for leader election via session lock.
I set out myself to learn distributed system, while doing so started with distributed lock using consul and expanded the project to build logger and eventually decided to build something like Kafka. So here I am now.
Distributed message queue inspired by Kafka, which can be used to
- Send messages to topic.
- Consume messages from topic.
- Message is replicated to all nodes, meaning any node can be used to read message from the topic, compared to Kafka where topic has leader and replicated to few set of nodes in a cluster.
- Persist messages on disk.
- Support both HTTP and GRPC API's.
- Lignum can operate in cluster mode without needing any special setup.
- Cluster management is facilitated by consul.
- Each node will connect to consul to get the leader, if no leader found one of the node will be elected as leader.
- All other node will register itself as follower to the leader.
- Message sent to leader, will be replicated to follower node.
- It has two modes of replication, a) WAL replication b) Live replication
- If the leader goes down, any one of the follower gets elected as a leader.
Currently lignum implements two modes of replication strategy, 1. WAL replication, 2. Live replication. By default WAL replication is chosen.
- WAL replication
Log file gets created for each topic when the message spills over buffer size. Lignum creates WAL file(.qwal
) for each topic.
When the message count reaches the buffer size, this file gets flushed to disk as log
file.
Lignum frequently watches for these log file creation and sends over to follower. This is not really WAL file replication but strategy is similar to what we know in other distributed systems.
All followers get synced up periodically with the leader, providing eventual/delayed consistency.
- Live replication
When the follower already registered with node, we don't need to worry about syncing the messages if the topic created after, we can just forward the messages received in the leader as is to follower. In this messages gets sent to registered follower immediately. In this way lignum can provide strong consistency.
-
Topic
Each message belongs to its own topic, so that way you can use lignum to send messages from multiple services/use case and consume the same later from the topic
-
Message
The actual message data which we want to write to given topic
Consul service
You can run consul in docker with the following command
docker-compose up
make test
update the config.yml and run, make sure consul service is running and consul
config are updated.
make run
For development, lignum can log message as simple readable text on the console, set the environment variable ENV to development
export ENV="development"
To set the log level, use
export LOG_LEVEL="error"
To create a cluster on single host, change the server port for each instance. Lignum will listen on the specified port for incoming traffics
Refer configuration document
Endpoint /api/message
Method POST
Request {
"topic" : "beautiful_topic_name",
"message": "message from oracle"
}
Example curl
curl --request POST \
--url http://localhost:8080/api/message \
--header 'Content-Type: application/json' \
--data '{
"topic": "test",
"message":"this is a test message"
}'
For this server will respond with the following
{
"status": "message commited",
"data": "this is a test message"
}
NOTE: Lignum doesn't have API to create new topic as of now, it will create a topic if doesn't exist.
Endpoint /api/message
Method GET
Request {
"topic": "beautiful_topic_name",
"from": 0,
"to": 100
}
where
topic: topic you wish to consume message from
from : message offset you are reading from,
to : message offset upto the given `to` value. (excluding)
Example curl
curl --request GET \
--url http://localhost:8080/api/message \
--header 'Content-Type: application/json' \
--data '{
"topic": "test",
"from": 0,
"to": 3
}'
The above message will return 3 messages if presents, if the message is less than what to
offset specified, it will return all messages in topic.
{
"messages": [
{
"Id": 0,
"Data": "this is a test message"
},
{
"Id": 1,
"Data": "this is a test message 2"
},
{
"Id": 2,
"Data": "this is a test message 3"
}
],
"count": 3
}
To use gRPC, checkout the proto files here
NOTE: Lignum doesn't store any data about the consumer, so it wont track the last message consumed as done by Kafka.
Lignum stores the messages to disk as log files, batched with the messageBufferSize as specified with config "initial-size-per-topic".
It creates a WAL file and when the number of message reaches set limit with buffer size, it will flushed to log file and new WAL file is created with the different offset for message. Every message is sent to lignum will be written to queuing WAL file (.qwal) which gets promoted to WAL file.
- Try it out and feel free to raise a issue, create a PR.
- Any feedback/proposals are welcome.
- Or reach out to me over a linkedin to know more.
For TODO's and progress on the project refer laundrylist or lignum project