Skip to content

Instantly share code, notes, and snippets.

@lmppalone
lmppalone / main.go
Created May 6, 2024 10:08
Process Queue
package main
import (
"fmt"
"sync"
"time"
)
type Queue struct {
c chan struct{}
@lmppalone
lmppalone / README.md
Last active April 2, 2024 11:49
Kafka Notes

Apache Kafka

Open Source distributed event streaming platform.

Working of Kafka

Kafka is a distributed system of servers and clients.

Servers: Kafka is run as a cluster of one or more servers. Some servers act as a storage for events called as brokers and some act as connectors to connect kafka with other systems.