Error: Topic XXXX not present in metadata after 60000 ms #5498
Replies: 2 comments 6 replies
-
I do not think this error is sent from broker. This error says that the topic which the producer is trying to use is not present in the metadata it requested / received from the cluster. I'm not sure it is easy to answer why do you get it. Could be some connectivity issue? Does the topic it complains about actually exist? Or is it just being created? Etc. |
Beta Was this translation helpful? Give feedback.
-
I also have the exception |
Beta Was this translation helpful? Give feedback.
-
hello everyone, am having a problem that occurs randomly at the time when a producer tries to generate messages to any topic, this is the error that the producer receives and I do not see errors in Kafka's logs:
Error: Topic XXXX not present in metadata after 60000 ms
This can be given in any topic and at any time, there is no time pattern and the connection to kafka is stable, also the configuration in kafka to automatically create a topic is enabled auto.create.topics.enable: "true"
I leave the configuration of the producer that is being used to create messages:
retries=2700000
retry.backoff.ms=1000
batch.size=131072
buffer.memory=66554432
bootstrap.servers=Ipserver:9094
compression.type=snappy
acks=all
linger.ms=100
request.timeout.ms=60000
enable.idempotence=true
delivery.timeout.ms=180300
metadata.max.idle.ms=180000
I
cluster.zip
have a cluster of 3 nodes in azure AKS and attach the cluster.yaml in case you need to see the config of it
Beta Was this translation helpful? Give feedback.
All reactions