Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
48 views

I am setting up a 3-node Apache Kafka cluster using KRaft mode (3.9.0) with SCRAM-SHA-256 for inter-broker communication on the SASL_PLAINTEXT listener. The cluster is unable to form a quorum due to ...
Danyal Danish's user avatar
0 votes
0 answers
152 views

We are manually trying out Zookeeper to Kafka KRaft migration in our K8s environment. For that the initial step is to deploy Kraft controller in migration mode. We used configmaps to provide the ...
BloodFury's user avatar
0 votes
0 answers
50 views

Trying to start Kafka in Kraft mode with image: apache/kafka:3.9.0 with next podman compose of config first node: kafka-1: hostname: kafka-1 container_name: kafka-1 image: apache/kafka:3....
django's user avatar
  • 1
0 votes
0 answers
47 views

I'm running Kafka with KRaft in docker-compose with the following configuration: services: kafka: image: apache/kafka:4.0.0 container_name: kafka restart: always ports: - "...
Mr Pepelulka's user avatar
1 vote
1 answer
150 views

Can a Kafka Controller Cluster support multiple Kafka setups like ZooKeeper does (with chroot paths)?" Existing setup: In existing setup we are using single zookeeper setup for multiple kafka ...
Manabolu Sisindri's user avatar
0 votes
0 answers
148 views

I’m in the middle of migrating from Zookeeper to KRaft in my Kafka cluster running on Kubernetes. Following the official Zookeeper to KRaft migration guide, I provisioned the KRaft controller quorum, ...
Sathwik Matsa's user avatar
0 votes
0 answers
120 views

I already have a functioning Kafka KRaft cluster with mTLS. Now I'm trying to setup a cluster with SASL_SSL but I get the following error on the broker listener: INFO [SocketServer listenerType=BROKER,...
eazy-b's user avatar
  • 11
2 votes
0 answers
807 views

I'm using docker desktop running Kubernetes. I'm setting up my environment using the next configuration: apiVersion: networking.k8s.io/v1 kind: NetworkPolicy metadata: name: kafka-network spec: ...
Ernesto Limon's user avatar
0 votes
1 answer
559 views

Kafka authentication with scram 512 and KRAFT mode doesn't work. My docker compose looks like this. services: kafka-1: image: confluentinc/cp-kafka:7.7.1 ports: - '9092:9092' ...
Casper T's user avatar
1 vote
1 answer
426 views

I'm trying to create a cluster with KRaft which has 3 brokers and 3 controllers. But each time one broker is going down while the previous downed one is getting up. This is my docker configs: version: ...
Furkan YIlmaZ's user avatar
1 vote
1 answer
91 views

I want to connect to kraft controller on port 9093 (non broker). And I can't to connect code example: #!/usr/bin/env python3 from confluent_kafka.admin import AdminClient import json import os ...
Andrei Le's user avatar
0 votes
1 answer
231 views

I'm facing an issue with Kafka running in KRaft mode (without Zookeeper) on a Windows environment, and I keep getting an AccessDeniedException in the logs when Kafka attempts to delete specific ...
nishant chauhan's user avatar
-1 votes
1 answer
150 views

I am trying to start a Kafka(version 3.7.1) in kraft mode from an Podman image. I am able to create image without any issues. However when i am trying to run Kafka from the custom script(run.sh) which ...
akt's user avatar
  • 81
0 votes
1 answer
730 views

When attempting to deploy multiple Kafka brokers using Docker Compose with KRaft consensus protocol, the setup fails to initialize correctly. Each Kafka broker is configured to use KRaft (...
Mateus Levi's user avatar
1 vote
0 answers
539 views

Currently I am running cluster of 3 Kafka machines. Two of those are hosted in same data center and last one is in different. At the end of post I will include node property file and jvm params. ...
Rafał Wójcik's user avatar
0 votes
0 answers
188 views

i'm Having a lot of issues to make this work, here is my files server1.properties ############################# Server Basics ############################# process.roles=broker,controller node.id=1 ...
Aroque R's user avatar
1 vote
1 answer
387 views

We have had a small KRaft cluster running successfully for over a year. Current cluster consists of 6 hosts: 3 broker,controller (nodes 1,2,3) 3 broker (nodes 4,5,6) We want to transition nodes 4 &...
Jon Phelps's user avatar
0 votes
1 answer
2k views

Please forgive the wall of text and bear with me as I am new to Apache Kafka. I chose to adopt Kraft as I see zookeeper is being deprecated even if guides for it are more available. I've read/watched ...
Scott C's user avatar
  • 63
4 votes
0 answers
2k views

create a scram user using kafka-configs: /bin/kafka-configs --bootstrap-server broker:9092 --alter --add-config 'SCRAM-SHA-256=[password="password"]' --entity-type users --entity-name "...
powerfana's user avatar
1 vote
0 answers
627 views

I'm trying to setup a cluster locally. Mostly so I can learn a Cluster's behavior before sending to production. I'm running everything bare metal For context: My cluster consists of 3 controllers and ...
Caio Favero's user avatar
  • 2,328
1 vote
1 answer
1k views

according to documentation ( from https://developer.confluent.io/learn/kraft/ _ "If you want to try it yourself, follow the Kafka Local Quickstart. This quick start runs in KRaft combined mode, ...
Judy's user avatar
  • 1,927
0 votes
1 answer
721 views

I'm trying to start Kafka-KRaft server, and I'm getting this error: ~/kafka_2.13-3.5.0$ bin/kafka-server-start.sh config/kraft/server.properties [2023-09-05 01:28:23,226] INFO Registered kafka:type=...
Chay's user avatar
  • 1
0 votes
0 answers
114 views

I have configuration 5 nodes, 4 broker+controller and 1 controller. Create topic with replication factor 5, and it is created, and describe show that topic partition have 5 replicas. /opt/kafka/latest/...
Андрій Висоцький's user avatar
0 votes
1 answer
2k views

I'm trying to get a Kafka cluster with Kraft off the ground. Plan to use it in production, and the Kafka documentation recommends not running a node in the "broker,controller" mode in ...
Aditya's user avatar
  • 41
0 votes
1 answer
864 views

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 ...
Adavan's user avatar
  • 63