Skip to content

Apache Kafka C library

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.pycrc
Notifications You must be signed in to change notification settings

bmilekic/librdkafka

This branch is 4429 commits behind confluentinc/librdkafka:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

90dafa4 · Nov 1, 2012

History

6 Commits
Nov 1, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012
Sep 19, 2012

Repository files navigation

librdkafka - Apache Kafka C client library

Copyright (c) 2012, Magnus Edenhill, et.al.

https://github.com/edenhill/librdkafka

librdkafka is a C implementation of the Apache Kafka protocol, containing both Producer and Consumer support. It currently supports Apache Kafka version 0.7.* (and possibly earlier).

ZooKeeper integration is planned but currently not available.

librdkafka is licensed under the 2-clause BSD license.

Usage

Requirements

The GNU toolchain
pthreads
zlib

Instructions

Building

  make all
  make install
  # or to install in another location than /usr/local:
  PREFIX=/my/prefix make install

Usage in code

See examples/rdkafka_example.c for full examples of both producer and consumer sides.

  #include <librdkafka/rdkafka.h>

  ..

  rd_kafka_t *rk;

  rk = rd_kafka_new_consumer(broker, topic, partition, 0, &conf)

  while (run) {      
      rko = rd_kafka_consume(rk, RD_POLL_INFINITE);
      if (rko->rko_err)
        ..errhandling..
      else if (rko->rko_len)
        handle_message(rko->rko_payload, rko->rko_len);
  }

  rd_kafka_destroy(rk);

Link your program with -lrdkafka -lz -lpthread -lrt.

Documentation

The API is documented in rdkafka.h

Examples

See the examples/sub-directory.

About

Apache Kafka C library

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
LICENSE.pycrc

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.0%
  • Objective-C 2.0%