clj-kafka/README.md

64 lines
2.2 KiB
Markdown
Raw Normal View History

2012-01-22 23:01:36 +00:00
# clj-kafka
Clojure library for [Kafka](http://incubator.apache.org/kafka/).
2012-01-22 23:01:36 +00:00
Current build status: [![Build Status](https://travis-ci.org/pingles/clj-kafka.png)](https://travis-ci.org/pingles/clj-kafka)
Development is against the 0.8 release of Kafka. The protocols for 0.7 and 0.8 are incompatible so this will only work when connecting to a 0.8 cluster. Earlier releases of clj-kafka support the earlier 0.7 release if you need it.
2013-05-15 08:27:57 +00:00
## Installing
Add the following to your [Leiningen](http://github.com/technomancy/leiningen) `project.clj`:
![clj-kafka version](https://clojars.org/clj-kafka/latest-version.svg)
2012-01-22 23:01:36 +00:00
## Usage
### Producer
Discovery of Kafka brokers from Zookeeper:
```clj
2013-06-12 21:40:56 +00:00
(brokers {"zookeeper.connect" "127.0.0.1:2181"})
;; ({:host "localhost", :jmx_port -1, :port 9999, :version 1})
```
2012-01-22 23:01:36 +00:00
2012-01-22 23:24:41 +00:00
```clj
(use 'clj-kafka.producer)
(def p (producer {"metadata.broker.list" "localhost:9999"
"serializer.class" "kafka.serializer.DefaultEncoder"
"partitioner.class" "kafka.producer.DefaultPartitioner"}))
2012-01-22 23:01:36 +00:00
(send-message p (message "test" (.getBytes "this is my message")))
2012-01-22 23:24:41 +00:00
```
2012-01-22 23:01:36 +00:00
### Zookeeper Consumer
The Zookeeper consumer uses broker information contained within Zookeeper to consume messages. This consumer also allows the client to automatically commit consumed offsets so they're not retrieved again.
```clj
(use 'clj-kafka.consumer.zk)
(use 'clj-kafka.core)
(def config {"zookeeper.connect" "localhost:2182"
"group.id" "clj-kafka.consumer"
"auto.offset.reset" "smallest"
"auto.commit.enable" "false"})
(with-resource [c (consumer config)]
shutdown
(take 2 (messages c "test")))
```
2012-01-22 23:01:36 +00:00
## License
2013-06-06 16:09:27 +00:00
Copyright © 2013 Paul Ingles
2012-01-22 23:01:36 +00:00
Distributed under the Eclipse Public License, the same as Clojure.
2014-04-30 09:01:42 +00:00
## Thanks
YourKit is kindly supporting this open source project with its full-featured Java Profiler. YourKit, LLC is the creator of innovative and intelligent tools for profiling Java and .NET applications. Take a look at YourKit's leading software products:
[YourKit Java Profiler](http://www.yourkit.com/java/profiler/index.jsp) and
[YourKit .NET Profiler](http://www.yourkit.com/.net/profiler/index.jsp).