kafka-1 log: $ kubectl logs kafka-1 -n kafka | more Error connecting to node kafka-0.kafka-headless.kafka.svc.cluster.local:9093 (id: 0 rack: null) (org.apache.kafka.clients. NetworkClient) java.net.UnknownHostException: kafka-0.kafka-headless.kafka.svc.cluster.local: Name or service not...
[2020-05-15 16:23:36,996] ERROR [Producer clientId=console-producer] Connection to node -1 (my-cluster-kafka-bootstrap.kafka-operator1.svc.cluster.local/10.12.4.238:9093) failed authentication d ue to: SSL handshake failed (org.apache.kafka.clients.NetworkClient) [2020-05-15 16:23:37,62...
ERROR rdkafka::client: librdkafka: Global error: BrokerTransportFailure (Local: Broker transport failure): ssl://xxxxxxxxxxx:9093/bootstrap: Disconnected: verify that security.protocol is correctly configured, broker might require SASL authentication (after 105ms in state UP, 4 identical error(s)...
If you have a kafka gateway installed on that node, you can set the DEBUG level in the kafka service, otherwise, modify the /etc/kafka/conf/tools-log4j.properties to set the log level to DEBUG, and then run your producer or consumer.Some "retryable" errors when security is...
When I bring up kafka-console-producer, the same happens. I am pointing both to the same node which is both a Kafka broker and a Zookeeper node, with port 9092 for the produer, and port 2181 for the consumer. If I type something into the console for the prod...
We are having issues with AdminClient, Producer and Consumer connecting to kafka using ssl/9093. This has been a recent development. For certificate handling, we do not do anything special. The strimzi kafka-cluster-ca-cert secret is loaded into the pods truststore and is maintained as part ...
Which chart: kafka Description: I've installed the chart in Azure AKS according to the instructions. Exposed public IP address for the bootstrap server and every broker. I'm able to connect using kafka-client to brokers, but unable to co...
-targets:["localhost:9091"]labels:instance:pushgateway#Node Exporter-job_name:"node exporter"static_configs: -targets:["localhost:9100"]#Kafka Exporter-job_name:"kafka exporter"static_configs: -targets:["localhost:9308"] the granfan service which is docker deploymed is normal , i remain the ...
When setting the Kafka exporter sasl mechanism to "plain", I get following error. name: kafka-exporter image: docker.io/bitnami/kafka-exporter:1.4.2-debian-10-r158 command: - kafka_exporter args: - '--kafka.server=kafka-0.kafka-headless.kafka.svc.cluster.local:9092' - '--kafka.server=...
try (var client = KafkaAdminClient.create(properties)) { // LINE BELOW FAILS var nodes = client.describeCluster() .nodes() .get(); nodes.forEach(n -> LOGGER.info("Found node: {}", n.id())); LOGGER.info("Creating topic '{}'", TEST_TOPIC); ...