The Apache Kafka C/C++ library
Перейти к файлу
Magnus Edenhill f18e273d20 Travis: Disable integration tests (since they're flaky on CI) when doing release builds 2021-04-19 17:49:39 +02:00
.github
debian Install CHANGELOG.md as part of documentation files 2020-09-22 16:17:16 +02:00
examples Adding OpenSSL engine support in LibrdKafka for SSL connections (@adinigam, @ajbarb, #3315) 2021-04-08 19:56:48 +02:00
mklove Bump to OpenSSL 1.1.1j and use Alpine:3.12 image to make sure latest OpenSSL is used 2021-03-10 16:53:51 +01:00
packaging Remove CMAKE_FIND_LIBRARY_SUFFIXES from packaging/mingw-w64/configure-build-msys2-mingw-static.sh 2021-04-07 16:54:13 +02:00
src Sticky assignor: fix balancing and reassignment issues due to incorrect count comparison (#3306) 2021-04-19 17:49:39 +02:00
src-cpp CMake: Only use Libs, not Libs.private for rdkafka-static.pc and rdkafka++-static.pc 2021-04-16 16:49:28 +02:00
tests Speed up quick test mode for 0030 and 0103 and add even quicker smoke test target 2021-04-16 16:32:55 +02:00
win32 Clean consume_batch..() buffer after rebalancing for batch queue (@jliunyu, #3269) 2021-04-13 17:01:20 +02:00
.appveyor.yml Bump OpenSSL to v1.1.1h 2020-11-05 10:09:32 +01:00
.dir-locals.el Added etags/ctags TAGS makefile target and emacs .dir-locals.el pick-up 2020-05-27 16:59:46 +02:00
.doozer.json Depend on Python3 instead of EOL Python2 (#2829) 2020-04-29 11:18:44 +02:00
.gdbmacros
.gitignore Added etags/ctags TAGS makefile target and emacs .dir-locals.el pick-up 2020-05-27 16:59:46 +02:00
.travis.yml Travis: Disable integration tests (since they're flaky on CI) when doing release builds 2021-04-19 17:49:39 +02:00
CHANGELOG.md Sticky assignor: fix balancing and reassignment issues due to incorrect count comparison (#3306) 2021-04-19 17:49:39 +02:00
CMakeLists.txt Build static librdkafka_windows.a with travis and mingw (@neptoess, #3130) 2021-04-07 08:30:24 +02:00
CODE_OF_CONDUCT.md
CONFIGURATION.md Deprecate and hide unused metadata.request.timeout.ms (#3346) 2021-04-14 14:59:23 +02:00
CONTRIBUTING.md Added changelog 2020-04-30 09:01:31 +02:00
Doxyfile Doxygen formatting fixes 2020-04-16 16:33:53 +02:00
INTRODUCTION.md KIP-360 requires AK 2.5, not 2.4 2021-04-16 16:32:55 +02:00
LICENSE Install LICENSE file (and restore LICENSE install in rpm spec) 2020-03-31 08:00:16 +02:00
LICENSE.crc32c
LICENSE.fnv1a
LICENSE.hdrhistogram
LICENSE.lz4
LICENSE.murmur2
LICENSE.pycrc
LICENSE.queue
LICENSE.regexp
LICENSE.snappy
LICENSE.tinycthread
LICENSE.wingetopt
LICENSES.txt Install LICENSE file (and restore LICENSE install in rpm spec) 2020-03-31 08:00:16 +02:00
Makefile Build: avoid interactive 'mv' prompt 2021-03-25 09:31:18 +01:00
README.md update php bindings 2021-04-13 16:23:38 +02:00
README.win32
STATISTICS.md Stats: Let consumer_lag be committed offset and add consumer_lag_stored 2021-03-25 13:59:31 +01:00
configure Added --disable-option-checking (autoconf compat no-op) 2020-07-02 07:08:37 +02:00
configure.self Add FreeBSD variant of pthread_setname_np (@snar, #3199) 2021-03-25 09:22:16 +01:00
dev-conf.sh dev-conf.sh: add gprof mode 2020-09-09 08:01:00 +02:00
lds-gen.py Depend on Python3 instead of EOL Python2 (#2829) 2020-04-29 11:18:44 +02:00
mainpage.doxy

README.md

librdkafka - the Apache Kafka C/C++ client library

Copyright (c) 2012-2020, Magnus Edenhill.

https://github.com/edenhill/librdkafka

librdkafka is a C library implementation of the Apache Kafka protocol, providing Producer, Consumer and Admin clients. It was designed with message delivery reliability and high performance in mind, current figures exceed 1 million msgs/second for the producer and 3 million msgs/second for the consumer.

librdkafka is licensed under the 2-clause BSD license.

KAFKA is a registered trademark of The Apache Software Foundation and has been licensed for use by librdkafka. librdkafka has no affiliation with and is not endorsed by The Apache Software Foundation.

Features

  • Full Exactly-Once-Semantics (EOS) support
  • High-level producer, including Idempotent and Transactional producers
  • High-level balanced KafkaConsumer (requires broker >= 0.9)
  • Simple (legacy) consumer
  • Admin client
  • Compression: snappy, gzip, lz4, zstd
  • SSL support
  • SASL (GSSAPI/Kerberos/SSPI, PLAIN, SCRAM, OAUTHBEARER) support
  • Full list of supported KIPs
  • Broker version support: >=0.8 (see Broker version compatibility)
  • Guaranteed API stability for C & C++ APIs (ABI safety guaranteed for C)
  • Statistics metrics
  • Debian package: librdkafka1 and librdkafka-dev in Debian and Ubuntu
  • RPM package: librdkafka and librdkafka-devel
  • Gentoo package: dev-libs/librdkafka
  • Portable: runs on Linux, MacOS X, Windows, Solaris, FreeBSD, AIX, ...

Documentation

NOTE: The master branch is actively developed, use latest release for production use.

Installation

Installing prebuilt packages

On Mac OSX, install librdkafka with homebrew:

$ brew install librdkafka

On Debian and Ubuntu, install librdkafka from the Confluent APT repositories, see instructions here and then install librdkafka:

$ apt install librdkafka-dev

On RedHat, CentOS, Fedora, install librdkafka from the Confluent YUM repositories, instructions here and then install librdkafka:

$ yum install librdkafka-devel

On Windows, reference librdkafka.redist NuGet package in your Visual Studio project.

For other platforms, follow the source building instructions below.

Installing librdkafka using vcpkg

You can download and install librdkafka using the vcpkg dependency manager:

# Install vcpkg if not already installed
$ git clone https://github.com/Microsoft/vcpkg.git
$ cd vcpkg
$ ./bootstrap-vcpkg.sh
$ ./vcpkg integrate install

# Install librdkafka
$ vcpkg install librdkafka

The librdkafka package in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please create an issue or pull request on the vcpkg repository.

Build from source

Requirements

The GNU toolchain
GNU make
pthreads
zlib-dev (optional, for gzip compression support)
libssl-dev (optional, for SSL and SASL SCRAM support)
libsasl2-dev (optional, for SASL GSSAPI support)
libzstd-dev (optional, for ZStd compression support)

NOTE: Static linking of ZStd (requires zstd >= 1.2.1) in the producer enables encoding the original size in the compression frame header, which will speed up the consumer. Use STATIC_LIB_libzstd=/path/to/libzstd.a ./configure --enable-static to enable static ZStd linking. MacOSX example: STATIC_LIB_libzstd=$(brew ls -v zstd | grep libzstd.a$) ./configure --enable-static

Building

  ./configure
  # Or, to automatically install dependencies using the system's package manager:
  # ./configure --install-deps
  # Or, build dependencies from source:
  # ./configure --install-deps --source-deps-only

  make
  sudo make install

NOTE: See README.win32 for instructions how to build on Windows with Microsoft Visual Studio.

NOTE: See CMake instructions for experimental CMake build (unsupported).

Usage in code

  1. Refer to the examples directory for code using:
  • Producers: basic producers, idempotent producers, transactional producers.
  • Consumers: basic consumers, reading batches of messages.
  • Performance and latency testing tools.
  1. Refer to the examples GitHub repo for code connecting to a cloud streaming data service based on Apache Kafka

  2. Link your program with -lrdkafka (C) or -lrdkafka++ (C++).

Commercial support

Commercial support is available from Confluent Inc

Community support

Only the last official release is supported for community members.

File bug reports, feature requests and questions using GitHub Issues

Questions and discussions are also welcome on the Confluent Community slack #clients channel.

Language bindings

See Powered by librdkafka for an incomplete list of librdkafka users.