Install Librdkafka
Install the Apache Kafka C/C++ client library (librdkafka) to assist in configuring Fastcapa.
The Fastcapa probe has been tested with Librdkafka 0.9.4.
Install the Apache Kafka C/C++ client library (librdkafka) to assist in configuring Fastcapa.
export RDK_PREFIX=/usr/local
/usr/local/lib
; note that lib
is appended to the
prefix.wget https://github.com/edenhill/librdkafka/archive/v0.9.4.tar.gz -O - | tar -xz
cd librdkafka-0.9.4/
./configure --prefix=$RDK_PREFIX
make
make install
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$RDK_PREFIX/lib