skip to Main Content

Unable to install confluent-kafka: "fatal error: librdkafka/rdkafka.h: No such file or directory" – Docker

I am using the confluent-kafka Python client in my project. I'm trying to create a Docker image with this client. I am facing the following error:- #11 8.015 [pipenv.exceptions.InstallError]: In file included from /tmp/pip-install-so_whhii/confluent-kafka_9d9553bf46cf489bb25fcb2ac7698747/src/confluent_kafka/src/Admin.c:17: #11 8.015 [pipenv.exceptions.InstallError]: /tmp/pip-install-so_whhii/confluent-kafka_9d9553bf46cf489bb25fcb2ac7698747/src/confluent_kafka/src/confluent_kafka.h:23:10: fatal error:…

VIEW QUESTION

The Kafka topic is here, a Java consumer program finds it, but lists none of its content, while a kafka-console-consumer is able to – Debian

It's my first Kafka program. From a kafka_2.13-3.1.0 instance, I created a Kafka topic poids_garmin_brut and filled it with this csv: kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic poids_garmin_brut kafka-console-producer.sh --broker-list localhost:9092 --topic poids_garmin_brut < "Poids(1).csv" DurĂ©e,Poids,Variation,IMC,Masse grasse,Masse…

VIEW QUESTION

Could not successfully bind to port 2181 – Docker

I'm following https://github.com/PacktPublishing/Apache-Kafka-Series---Kafka-Connect-Hands-on-Learning and I've below docker-compose file and using Mac. version: '2' services: # this is our kafka cluster. kafka-cluster: image: landoop/fast-data-dev:cp3.3.0 environment: ADV_HOST: localhost # Change to 192.168.99.100 if using Docker Toolbox RUNTESTS: 0 # Disable Running tests…

VIEW QUESTION

Determine actual Kafka version that is being used inside confluentinc/cp-kafka:6.2.2 image – Docker

I want to determine the exact version of Kafka inside confluentinc/cp-kafka:6.2.2 image. On this site, https://docs.confluent.io/platform/current/installation/versions-interoperability.html#cp-and-apache-ak-compatibility I have read that inside image with tag 6.2.x kafka version 2.8.x is being used but I want to determine the exact version of…

VIEW QUESTION
Back To Top
Search