Paolo Patierno
Paolo Patierno
With the current interaction with Cruise Control, the user has to create a `KafkaRebalance` custom resource for getting an optimization proposal and after reviewing it, he has to manually approve...
The current provided Kafka Exporter dashboard has its main fields based on a specific exporter metric, `kafka_consumergroup_current_offset`, which is not exposed by the exporter itself until there is no real...
The OpenTracing project was archived by CNCF and the new tracing project in the landscape is now [OpenTelemetry](https://opentelemetry.io/). We should add the support for OpenTelemetry on Kafka Connect, Mirror Maker...
Apache Kafka provides the `connections.max.reauth.ms` [1] configuration parameter which can be set at broker level so applied on all listeners or even on a specific listener only. Currently, Strimzi doesn't...
It seems that creating a `KafkaClusterOperations` needs a long line for passing all the operations to the constructor. At same time, when adding a new operation requires quite a lot...
The `KafkaAssemblyOperator` is currently using a `Date` supplier to provide a `Date` instance where it's needed and allowing more easily the corresponding testing. It's mostly used to check maintenance window...
With the current implementation in the `HttpClientUtils` class, a new `HttpClient` instance is created and closed every time. https://github.com/strimzi/strimzi-kafka-operator/blob/main/cluster-operator/src/main/java/io/strimzi/operator/cluster/operator/resource/HttpClientUtils.java#L27 This is mostly used in the Kafka Connect and Cruise Control...
When the number of Kafka replicas is decreased in the Kafka CR the StatefulSet will shutdown the highest numbered brokers. Currently, there is no check to see if these brokers...
Hi, it seems that Sarama doesn't support [KIP-368](https://cwiki.apache.org/confluence/display/KAFKA/KIP-368%3A+Allow+SASL+Connections+to+Periodically+Re-Authenticate) which is about re-authenticating when on the broker the `connections.max.reauth.ms` is set as timeout. Right now Sarama is able to handle the...
The current version of fabric8 Kubernetes client is using okhttp3 library which is affected by bug on hostname verification when connecting to the Kubernetes server API in IPV6 based cluster....