Skip to content

Commit 4f3a999

Browse files
committed
Disable metric reporter for consumer
1 parent 047f56d commit 4f3a999

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/kafka/manager/actor/cluster/KafkaStateActor.scala

+1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ case class KafkaManagedOffsetCache(clusterContext: ClusterContext
257257
props.put(KEY_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArrayDeserializer")
258258
props.put(VALUE_DESERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.ByteArrayDeserializer")
259259
props.put(AUTO_OFFSET_RESET_CONFIG, "latest")
260+
props.put(METRIC_REPORTER_CLASSES_CONFIG, "")
260261
consumerProperties.foreach {
261262
cp => props.putAll(cp.asMap)
262263
}

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name := """cmak"""
66

77
/* For packaging purposes, -SNAPSHOT MUST contain a digit */
8-
version := "3.0.0.3"
8+
version := "3.0.0.4"
99

1010
scalaVersion := "2.12.10"
1111

0 commit comments

Comments
 (0)