Liking cljdoc? Tell your friends :D

clj-kafka.admin

Administration operations.

Administration operations.
raw docstring

change-topic-configclj

(change-topic-config zk topic config)
source

create-topicclj

(create-topic zk topic)
(create-topic zk
              topic
              {:keys [partitions replication-factor config]
               :or {partitions 1 replication-factor 1 config nil}})
source

delete-topicclj

(delete-topic zk topic)
source

topic-configclj

(topic-config zk topic)
source

topic-exists?clj

(topic-exists? zk topic)
source

zk-clientclj

(zk-client servers)
(zk-client servers
           {:keys [session-timeout-ms connection-timeout-ms]
            :as opts
            :or {session-timeout-ms 10000 connection-timeout-ms 10000}})

Create a ZkClient for use with the functions in this namespace. Servers is a Zookeeper connection string.

Create a `ZkClient` for use with the functions in this namespace.
Servers is a Zookeeper connection string.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close