Questions tagged [bitnami-kafka]
12 questions
5
votes
2 answers
Apache Kafka in kraft mode fails frequently
We have created a 3 node kafka-3.3.1 cluster in kraft mode. This is based on bitnami-kafka image. Basic configuration for all nodes are (port number is different for each and other changes as required)
KAFKA_ENABLE_KRAFT: 'yes'
…

donnie
- 2,981
- 2
- 16
- 24
1
vote
1 answer
Access "bitnami/kafka" docker container from everywhere
docker-compose.yml
version: "3"
services:
kafka:
image: 'bitnami/kafka:latest'
ports:
- '9092:9092'
environment:
- KAFKA_ENABLE_KRAFT=yes
- KAFKA_CFG_BROKER_ID=1
- KAFKA_CFG_PROCESS_ROLES=broker,controller
…

kev
- 8,928
- 14
- 61
- 103
1
vote
1 answer
Kafka 3.4 with Kraft without Zookeeper with 3 brokers
I need 1 cluster kafka with 3 borkers with kraft.
I try with Below docker config:
Config for 1st broker:
version: "3"
services:
kafka-1:
image: "bitnami/kafka:3.4.0"
hostname: kafka-1
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
-…

user3783064
- 23
- 4
1
vote
0 answers
Kafka confgiuration with ssl with bitnami image
Hello everyone while trying to set up kafka with ssl certs with bitnami image i m getting following error No available authentication scheme for configuration A client SSLEngine created with the provided settings can't connect to a server SSLEngine…

Divyanshu Sen
- 71
- 9
0
votes
0 answers
Bitnami Kafka helm chart has authentication error while trying to run producer inside of the client pod
I am using the Bitnami kafka helm chart and I am following the commands to create a client to run producer and consumer on it. My helm version is v3.12.3. I get this authentication error when I try to run producer console to create a simple test…

Paria
- 1
- 2
0
votes
0 answers
Kubernetes install kafka and kafka don`t connect the zookeeper
I am installing kafka in my computer. The Linux cluster I set up is on my Apple computer with an M1 chip. I have 4 yaml files about this.
zookeeper-svc.yaml
apiVersion: v1
kind: Service
metadata:
name: zoo1
labels:
app: zookeeper-1
spec:
…

Andrew
- 1
0
votes
2 answers
set kafka & zookeeper volume sizes using helm bitnami kafka charts
I have setup helm chart values for bitnami kafka & zookeper values
kafka:
persistence:
enabled: true
accessModes: ["ReadWriteOnce"]
size: 50M
mountPath: /bitnami/kafka
storageClass: default
existingClaim: ""
zookeeper:
…

Deniss M.
- 3,617
- 17
- 52
- 100
0
votes
1 answer
Bitnami Kafka docker container not starting on Ubuntu
This is the docker-compose.yml file I have prepared to start the bitnami/zookeeper and the bitnami/kafka containers.
version: "3.4"
services:
zookeeper:
image: bitnami/zookeeper
restart: always
ports:
- "2181:2181"
volumes:
…

lone wolf
- 85
- 8
0
votes
1 answer
Kafka get stuck in adding replicas
I have testing cluster with 3 Kafka instances in KRaft mode. Each instance is Broker and Controller. I have inter communication secured with SSL certificate.
After cluster start, each instances know about each. When I create new topic with replicas,…

Adavan
- 63
- 2
- 6
0
votes
0 answers
Bitnami Kafka helm chart SSL name verification fails with DNS and loadbalancer
I am running a Kafka instance on Kubernetes (AKS) using the Bitnami helm chart, it is exposed through a loadbalancer service. I have a registered hostname and a DNS rule in Azure that points to the loadbalancer service.
The Kafka instance has TLS…

SilverTear
- 695
- 7
- 18
0
votes
0 answers
No serviceName defined in either JAAS or Kafka config in KRaft Mode Kafka
I am trying to use SASL_SSL for external clients, connecting to controller as an authentication mechanism, but its erring out.
docker-compose.yml
version: "2"
services:
kafka:
image: bitnami/kafka:latest
ports:
…

cod
- 11
- 3
-3
votes
1 answer
How to connect to docker kafka container from Kafkaesque tool?
I am trying to be able to play around with some topics on my local machine.
For this I want to use Kafkaesque https://kafka.esque.at/
My spring boot application has the following configurations:
I found out a docker image that I added in the…

cUser
- 392
- 8
- 25