skip to Main Content

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

500 Internal Server Error Error while creating AdminClient for Cluster Default – Docker

I get an error when I try to view topics and consumers using UI for apache kafka docker command i use: docker run -p 8080:8080 -e KAFKA_CLUSTERS_0_ZOOKEEPER=2181:2181 -e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=127.0.0.1:9092 -d provectuslabs/kafka-ui:latest or docker-compose.yml file services: kafka-ui: container_name: kafka-ui image: provectuslabs/kafka-ui:latest…

VIEW QUESTION

How to use the Kafka exporter Docker image?

I'm trying to use the Kafka Exporter packaged by Bitnami, https://github.com/bitnami/bitnami-docker-kafka-exporter, together with the Bitnami image for Kafka, https://github.com/bitnami/bitnami-docker-kafka. I'm trying to run the following docker-compose.yml: version: '2' networks: app-tier: driver: bridge services: zookeeper: image: 'bitnami/zookeeper:latest' environment: - 'ALLOW_ANONYMOUS_LOGIN=yes' networks:…

VIEW QUESTION
Back To Top
Search