Inside configure-connectors.sh I have a config for 2 test connectors: datagen and azure-blob-storage-source.
The config is based on the demo.
As you can see I have already specified security options for consumer, producer, admin and worker. And yet I'm still not able to create the topics.
The Admin is not configured properly it seems. I see several TimeoutExceptions in the logs:
$ kubectl logs confluent-platform-cp-kafka-connect-59b64446d6-9rcvj -c cp-kafka-connect-server | grep -i timeoutexception
org.apache.kafka.common.errors.TimeoutException: Call(callName=fetchMetadata, deadlineMs=1607519025420) timed out at 1607519025421 after 1 attempt(s)
Caused by: org.apache.kafka.common.errors.TimeoutException: Timed out waiting for a node assignment.
org.apache.kafka.common.errors.TimeoutException: Call(callName=fetchMetadata, deadlineMs=1607519055421) timed out at 1607519055422 after 1 attempt(s)
Caused by: org.apache.kafka.common.errors.TimeoutException: Timed out waiting for a node assignment.
org.apache.kafka.common.errors.TimeoutException: Call(callName=fetchMetadata, deadlineMs=1607519085422) timed out at 9223372036854775807 after 1 attempt(s)
Caused by: org.apache.kafka.common.errors.TimeoutException: The AdminClient thread has exited.
Caused by: org.apache.kafka.common.errors.TimeoutException: Call(callName=createTopics, deadlineMs=1607519055420) timed out at 1607519055421 after 1 attempt(s)
Caused by: org.apache.kafka.common.errors.TimeoutException: Timed out waiting for a node assignment.
There's also:
org.apache.kafka.connect.errors.ConnectException: Timed out while checking for or creating topic(s) '_confluent-command'.
Datagen also writes a lot of:
WARN [Producer clientId=connector-producer-datagen-users-0] Error while fetching metadata with correlation id 4045 : {navbi.connect.datagen-users=UNKNOWN_TOPIC_OR_PARTITION} (org.apache.kafka.clients.NetworkClient)
I hope I don't need yet another prefix for it to work.
What else is needed so that Kafka Connect can create the topics? Is there something obvious missing in my config?
I can see some suspicious values in AdminClientConfig logs:
Hi,
We are trying to set-up Kafka Connect via the chart in our cluster. My current value file looks as follows:
Inside
configure-connectors.sh
I have a config for 2 test connectors: datagen and azure-blob-storage-source. The config is based on the demo.As you can see I have already specified security options for consumer, producer, admin and worker. And yet I'm still not able to create the topics. The Admin is not configured properly it seems. I see several TimeoutExceptions in the logs:
There's also:
org.apache.kafka.connect.errors.ConnectException: Timed out while checking for or creating topic(s) '_confluent-command'.
Datagen also writes a lot of:
WARN [Producer clientId=connector-producer-datagen-users-0] Error while fetching metadata with correlation id 4045 : {navbi.connect.datagen-users=UNKNOWN_TOPIC_OR_PARTITION} (org.apache.kafka.clients.NetworkClient)
I hope I don't need yet another prefix for it to work.
What else is needed so that Kafka Connect can create the topics? Is there something obvious missing in my config?
I can see some suspicious values in AdminClientConfig logs:
...while I do not use GSSAPI. SO, it seems AdminClient is still misconfigured.
P.S. We have our production workloads runnin in the same cluster and with the same ACLs and they work fine.